{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "description": "Action to apply to the request.",
      "enum": [
        "approve",
        "deny"
      ]
    },
    "reason": {
      "type": [
        "string",
        "null"
      ],
      "description": "Reason for approving or denying the request. Max 1024 characters.",
      "maxLength": 1024
    }
  },
  "required": [
    "action"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}