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:
0instructions
string
Required
No description available.
maxLength: 50000 byteslastRun
string
datetime
Optional
An RFC 3339 formatted timestamp.
name
string
Required
No description available.
maxLength: 128 bytesnextRun
string
datetime
Optional
An RFC 3339 formatted timestamp.
schedule
union
Required
No description available.
Known types:
status
string
Optional
No description available.
Known values:
pending, running, completed, failedDefault:
pendingView 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
}
}
}
}