{
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "description": "Action to apply to the fine-grained personal access token.",
      "const": "revoke"
    },
    "pat_ids": {
      "description": "The IDs of the fine-grained personal access tokens.",
      "type": "array",
      "items": {
        "type": "integer",
        "description": "Unique identifier of the fine-grained personal access token."
      },
      "minItems": 1,
      "maxItems": 100
    }
  },
  "required": [
    "action",
    "pat_ids"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}