ApiSchemas
DecisionExpiredEncoded
One shape from the contract, as it appears on the wire.
Used by sessions.decide
JSON Schema
{
"type": "object",
"properties": {
"_tag": {
"type": "string",
"enum": [
"DecisionExpired"
]
},
"sessionId": {
"$ref": "#/components/schemas/SessionId"
},
"toolCallId": {
"$ref": "#/components/schemas/ToolCallId"
},
"expiredAt": {
"type": "string"
}
},
"required": [
"_tag",
"sessionId",
"toolCallId",
"expiredAt"
],
"additionalProperties": false
}