{
  "type": "object",
  "properties": {
    "body": {
      "type": "string",
      "description": "The body text of the pull request review"
    },
    "event": {
      "type": "string",
      "description": "The review action you want to perform. The review actions include: `APPROVE`, `REQUEST_CHANGES`, or `COMMENT`. When you leave this blank, the API returns _HTTP 422 (Unrecognizable entity)_ and sets the review action state to `PENDING`, which means you will need to re-submit the pull request review using a review action.",
      "enum": [
        "APPROVE",
        "REQUEST_CHANGES",
        "COMMENT"
      ]
    }
  },
  "required": [
    "event"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}