at.functions.workflow

hamburgerz.bsky.social

Documentation

A named workflow that chains AT Functions, passing outputs as inputs between steps.

main record

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 bytes
maxDurationMs integer Optional

No description available.

minimum: 100maximum: 300000
name string Required

No description available.

maxLength: 128 bytes
steps array of ref #step Required

No description available.

version string Required

No description available.

maxLength: 32 bytes
View 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."
}
step object

No description available.

Properties

description string Optional

No description available.

maxLength: 256 bytes
function string at-uri Required

AT URI of the at.functions.metadata record to invoke.

id string Required

Unique identifier for this step; used to reference its output in subsequent steps via {{$.id.field}}.

maxLength: 64 bytes
input unknown Optional

JSON object whose string values may contain {{$.input.x}} or {{$.stepId.x}} templates.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "function"
  ],
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 64,
      "description": "Unique identifier for this step; used to reference its output in subsequent steps via {{$.id.field}}."
    },
    "input": {
      "type": "unknown",
      "description": "JSON object whose string values may contain {{$.input.x}} or {{$.stepId.x}} templates."
    },
    "function": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of the at.functions.metadata record to invoke."
    },
    "description": {
      "type": "string",
      "maxLength": 256
    }
  }
}

Lexicon Garden

@