{
  "type": "object",
  "properties": {
    "base": {
      "type": "string",
      "description": "The name of the base branch that the head will be merged into."
    },
    "head": {
      "type": "string",
      "description": "The head to merge. This can be a branch name or a commit SHA1."
    },
    "commit_message": {
      "type": "string",
      "description": "Commit message to use for the merge commit. If omitted, a default message will be used."
    }
  },
  "required": [
    "base",
    "head"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}