{
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether GitHub Actions is enabled on the repository."
    },
    "allowed_actions": {
      "type": "string",
      "description": "The permissions policy that controls the actions and reusable workflows that are allowed to run.",
      "enum": [
        "all",
        "local_only",
        "selected"
      ]
    },
    "sha_pinning_required": {
      "type": "boolean",
      "description": "Whether actions must be pinned to a full-length commit SHA."
    }
  },
  "required": [
    "enabled"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}