diy.razorgirl.winter.job

lexicon.store View official

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

failureCount integer Optional

No description available.

Default: 0
instructions string Required

No description available.

maxLength: 50000 bytes
lastRun string datetime Optional

An RFC 3339 formatted timestamp.

name string Required

No description available.

maxLength: 128 bytes
nextRun string datetime Optional

An RFC 3339 formatted timestamp.

status string Optional

No description available.

Known values: pending, running, completed, failed
Default: pending
View raw schema
{
  "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
      }
    }
  }
}
intervalSchedule object

No description available.

Properties

seconds integer Required

No description available.

type string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "type",
    "seconds"
  ],
  "properties": {
    "type": {
      "type": "string",
      "const": "interval"
    },
    "seconds": {
      "type": "integer"
    }
  }
}
onceSchedule object

No description available.

Properties

runAt string datetime Required

An RFC 3339 formatted timestamp.

type string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "type",
    "runAt"
  ],
  "properties": {
    "type": {
      "type": "string",
      "const": "once"
    },
    "runAt": {
      "type": "string",
      "format": "datetime"
    }
  }
}

Lexicon Garden

@