{
  "type": "object",
  "properties": {
    "enforced_repositories": {
      "type": "string",
      "description": "The policy that controls how immutable releases are enforced in the organization.",
      "enum": [
        "all",
        "none",
        "selected"
      ]
    },
    "selected_repository_ids": {
      "type": "array",
      "description": "An array of repository ids for which immutable releases enforcement should be applied. You can only provide a list of repository ids when the `enforced_repositories` is set to `selected`. You can add and remove individual repositories using the [Enable a selected repository for immutable releases in an organization](https://docs.github.com/rest/orgs/orgs#enable-a-selected-repository-for-immutable-releases-in-an-organization) and [Disable a selected repository for immutable releases in an organization](https://docs.github.com/rest/orgs/orgs#disable-a-selected-repository-for-immutable-releases-in-an-organization) endpoints.",
      "items": {
        "type": "integer"
      }
    }
  },
  "required": [
    "enforced_repositories"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}