{
  "$id": "https://comitiva.dev/schema/ToolApproval.json",
  "title": "ToolApproval",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1
    },
    "conversationId": {
      "type": "string",
      "minLength": 1
    },
    "agentId": {
      "type": "string",
      "minLength": 1
    },
    "toolUseId": {
      "type": "string"
    },
    "toolServerId": {
      "type": "string",
      "minLength": 1
    },
    "toolName": {
      "type": "string"
    },
    "input": {},
    "decision": {
      "type": "string",
      "enum": [
        "allow",
        "deny",
        "allow-always"
      ]
    },
    "decidedAt": {
      "type": "string",
      "format": "date-time",
      "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d(?:\\.\\d+)?(?:Z|([+-](?:[01]\\d|2[0-3]):[0-5]\\d)))$"
    }
  },
  "required": [
    "id",
    "conversationId",
    "agentId",
    "toolUseId",
    "toolServerId",
    "toolName",
    "input",
    "decision",
    "decidedAt"
  ]
}
