{
  "type": "object",
  "properties": {
    "new_owner": {
      "type": "string",
      "description": "The username or organization name the repository will be transferred to."
    },
    "new_name": {
      "type": "string",
      "description": "The new name to be given to the repository."
    },
    "team_ids": {
      "type": "array",
      "description": "ID of the team or teams to add to the repository. Teams can only be added to organization-owned repositories.",
      "items": {
        "type": "integer"
      }
    }
  },
  "required": [
    "new_owner"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}