{
  "type": "object",
  "description": "The object used to create GitHub Pages deployment",
  "properties": {
    "artifact_id": {
      "type": "number",
      "description": "The ID of an artifact that contains the .zip or .tar of static assets to deploy. The artifact belongs to the repository. Either `artifact_id` or `artifact_url` are required."
    },
    "artifact_url": {
      "type": "string",
      "description": "The URL of an artifact that contains the .zip or .tar of static assets to deploy. The artifact belongs to the repository. Either `artifact_id` or `artifact_url` are required."
    },
    "environment": {
      "type": "string",
      "description": "The target environment for this GitHub Pages deployment.",
      "default": "github-pages"
    },
    "pages_build_version": {
      "type": "string",
      "description": "A unique string that represents the version of the build for this deployment.",
      "default": "GITHUB_SHA"
    },
    "oidc_token": {
      "type": "string",
      "description": "The OIDC token issued by GitHub Actions certifying the origin of the deployment."
    }
  },
  "required": [
    "pages_build_version",
    "oidc_token"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}