{
  "type": "object",
  "properties": {
    "github_owned_allowed": {
      "type": "boolean",
      "description": "Whether GitHub-owned actions are allowed. For example, this includes the actions in the `actions` organization."
    },
    "verified_allowed": {
      "type": "boolean",
      "description": "Whether actions from GitHub Marketplace verified creators are allowed. Set to `true` to allow all actions by GitHub Marketplace verified creators."
    },
    "patterns_allowed": {
      "type": "array",
      "description": "Specifies a list of string-matching patterns to allow specific action(s) and reusable workflow(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\n\n> [!NOTE]\n> The `patterns_allowed` setting only applies to public repositories.",
      "items": {
        "type": "string"
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}