{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "approve",
        "reject",
        "issue"
      ]
    },
    "claimItemIds": {
      "maxItems": 50,
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 64
      }
    },
    "reasonId": {
      "type": "string",
      "maxLength": 16
    },
    "note": {
      "type": "string",
      "maxLength": 500
    },
    "restock": {
      "type": "boolean"
    }
  },
  "required": [
    "action"
  ],
  "additionalProperties": false
}