{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"decision": {
"enum": [
"allow",
"allow_session",
"deny",
"timeout"
],
"type": "string"
},
"metadata": {
"additionalProperties": true,
"type": "object"
},
"reason": {
"type": "string"
},
"requestId": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"requestId",
"threadId",
"turnId",
"decision"
],
"title": "ApprovalResolveParams",
"type": "object"
}