Run response model
Nullable fields represent unknown values; they do not imply zero cost or a completed action.
| Field | Type | Required | Details |
|---|---|---|---|
id |
string | Yes | Format: uuid |
owner |
string | Yes | |
mode |
string | Yes | One of: sandbox, live |
createdAt |
string | Yes | Format: date-time |
idempotencyKey |
string | Yes | |
inputHash |
string | Yes | |
input |
RunInput | Yes | |
output |
RunOutput | Yes |
Full JSON schema
{ "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "owner": { "type": "string" }, "mode": { "type": "string", "enum": [ "sandbox", "live" ] }, "createdAt": { "type": "string", "format": "date-time" }, "idempotencyKey": { "type": "string" }, "inputHash": { "type": "string" }, "input": { "$ref": "#/components/schemas/RunInput" }, "output": { "$ref": "#/components/schemas/RunOutput" } }, "required": [ "id", "owner", "mode", "createdAt", "idempotencyKey", "inputHash", "input", "output" ]}