Skip to content

ActionOutput response model

All models · Download OpenAPI

Nullable fields represent unknown values; they do not imply zero cost or a completed action.

Field Type Required Details
draft true Yes
note string Yes
result object Yes Kind-specific result; validate against the output schema in x-action-kinds.
Full JSON schema
{
"type": "object",
"properties": {
"draft": {
"type": "boolean",
"const": true
},
"note": {
"type": "string"
},
"result": {
"type": "object",
"description": "Kind-specific result; validate against the output schema in x-action-kinds."
}
},
"required": [
"draft",
"note",
"result"
],
"description": "Saved result envelope. The action kind output schema describes result, not this envelope."
}