diy.razorgirl.winter.job

lexicon.store View official

{
  "id": "diy.razorgirl.winter.job",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "instructions",
          "schedule",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 128
          },
          "status": {
            "type": "string",
            "default": "pending",
            "knownValues": [
              "pending",
              "running",
              "completed",
              "failed"
            ]
          },
          "lastRun": {
            "type": "string",
            "format": "datetime"
          },
          "nextRun": {
            "type": "string",
            "format": "datetime"
          },
          "schedule": {
            "refs": [
              "#onceSchedule",
              "#intervalSchedule"
            ],
            "type": "union"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "failureCount": {
            "type": "integer",
            "default": 0
          },
          "instructions": {
            "type": "string",
            "maxLength": 50000
          }
        }
      }
    },
    "onceSchedule": {
      "type": "object",
      "required": [
        "type",
        "runAt"
      ],
      "properties": {
        "type": {
          "type": "string",
          "const": "once"
        },
        "runAt": {
          "type": "string",
          "format": "datetime"
        }
      }
    },
    "intervalSchedule": {
      "type": "object",
      "required": [
        "type",
        "seconds"
      ],
      "properties": {
        "type": {
          "type": "string",
          "const": "interval"
        },
        "seconds": {
          "type": "integer"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Scheduled task with natural-language instructions. Supports one-time and recurring schedules."
}

Validate Record

Validate a record against diy.razorgirl.winter.job

Validation Options
Treat any remaining unresolved references as valid

Metadata

DID
did:web:lexicon.store
CID
bafyreie2zlx3iojlq2dr3rj4hnrgcjlgbmzaz5rv75aplhkjrjcbd6px64
Indexed At
2026-03-20 15:55 UTC
AT-URI
at://did:web:lexicon.store/com.atproto.lexicon.schema/diy.razorgirl.winter.job

Lexicon Garden

@