A named workflow that chains AT Functions, passing outputs as inputs between steps.
Record Key
tid
Timestamp-based ID
Properties
description
string
Optional
No description available.
maxLength: 1024 bytesmaxDurationMs
integer
Optional
No description available.
minimum: 100maximum: 300000name
string
Required
No description available.
maxLength: 128 bytessteps
array
of
ref
#step
Required
No description available.
version
string
Required
No description available.
maxLength: 32 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"version",
"steps"
],
"properties": {
"name": {
"type": "string",
"maxLength": 128
},
"steps": {
"type": "array",
"items": {
"ref": "#step",
"type": "ref"
},
"maxItems": 16,
"minItems": 1
},
"version": {
"type": "string",
"maxLength": 32
},
"description": {
"type": "string",
"maxLength": 1024
},
"maxDurationMs": {
"type": "integer",
"maximum": 300000,
"minimum": 100
}
}
},
"description": "A named workflow that chains AT Functions, passing outputs as inputs between steps."
}