Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Reference conventions

Reference pages describe the release this site documents. A running instance remains authoritative for its function catalogue, its OpenAPI document and its reported version. This page is how to read the others: the skeleton, the tables, the markers, and what is contract.

Synopsis

Every reference page carries these sections, in this order, and omits the ones that do not apply. A section is never renamed.

SectionHolds
SynopsisThe signature, the shape, the grammar, or the full default configuration
DescriptionWhat the thing does, in present-tense declaratives, with no instruction
ParametersA table of fields, options or properties, with fixed columns
ReturnsThe result, output, response, or exit code
ErrorsEvery error the thing can raise, with the condition
ExamplesOne complete example per common use, each with a one-line title
CaveatsThe surprising behaviours, as bullets
CompatibilityWhat changed and when, inline with the version number
RelatedThe concept page that explains it and the guide that uses it

Parameters

A field table has fixed columns in a fixed order: name, type, required, default, description. A description is one sentence. Enumerated values are each listed with one line.

Value in the Required columnMeaning
yesThe field must be present
noThe field may be omitted
conditionalThe description states when it is required
one of …Exactly one of the listed fields must be present
a protocol or mode name, such as rest or hmacRequired exactly when that protocol or mode applies

A field typed JSONLogic takes an expression evaluated against the data context. A plain JSON literal is valid JSONLogic and evaluates to itself, folded once when the engine is built. Only a field that reads the message is evaluated per request. The fields that are not JSONLogic are named on the function’s page. They are target selectors such as connector, validated enums and security switches such as crypto.op and http_call.method, and the document-shaped fields listed under Connector fields.

An em dash in the Default column means there is no default, or the cell does not apply. Examples use exact wire names such as workflow_id, even where prose says “workflow ID”. A value in angle brackets, such as <trace-id>, is a placeholder you replace.

Errors

Branch on the HTTP status for the broad outcome and on error.code for program logic. The human-readable message can change and must not be parsed. Errors and response envelopes holds the complete registry.

SituationTypical status and codeCorrection
A definition has an invalid or missing field400 VALIDATION_ERRORCorrect the field path in details and validate again
The requested entity does not exist404 NOT_FOUNDCheck the id and the instance
An id, name, route or package version conflicts409 CONFLICTInspect the existing resource or create a new version
A channel or a dependency cannot serve503 SERVICE_UNAVAILABLECheck health, quarantine, connector state and backpressure

Caveats

  • Field tables and endpoint descriptions are normative. A paragraph explaining why a contract has a shape adds no client requirement; the deeper reasoning is in Design notes.
  • The CLI and the Console wrap the admin API. Where the three differ in wording, the API page is the contract.
  • The tables on Task functions, Metrics, Expression language, Errors and Server configuration are asserted against the code by the test suite. A disagreement fails the build, so those tables are the code’s own statement.

Compatibility

Unmarked material applies to Orion 1.0 and later. A **Since:** Orion x.y marker means the feature needs that release or a newer one. The per-version upgrade guides are the inventory of behaviour changes between releases; a page never restates them.

A page also carries one of two freshness stamps in its footer. Last verified names the date a person ran the page against the release it documents. Generated from names the version and date a generated page was produced from.

FeatureSinceReference
Rooted regression-test expect paths1.2Root every expect path
Nested task groups and terminal steps1.2Task groups
Complete runtime function discovery1.2Inspecting schemas at runtime

Consult the release’s configuration reference when running an older binary. A newer setting is rejected as unknown rather than ignored.

Last verified 14 September 2026