No description available.
Record Key
tid
Timestamp-based ID
Properties
args
array
of
object
Optional
No description available.
body
array
of
string
Required
No description available.
constraints
array
of
string
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Required
No description available.
maxLength: 1024 bytesenabled
boolean
Optional
No description available.
Default:
truehead
string
Required
No description available.
name
string
Required
No description available.
maxLength: 128 bytespriority
integer
Optional
No description available.
Default:
0View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"description",
"head",
"body",
"createdAt"
],
"properties": {
"args": {
"type": "array",
"items": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
},
"body": {
"type": "array",
"items": {
"type": "string"
}
},
"head": {
"type": "string"
},
"name": {
"type": "string",
"maxLength": 128
},
"enabled": {
"type": "boolean",
"default": true
},
"priority": {
"type": "integer",
"default": 0
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"constraints": {
"type": "array",
"items": {
"type": "string"
}
},
"description": {
"type": "string",
"maxLength": 1024
}
}
}
}