GitHub · Schema

configuration-status

configuration-status from GitHub API

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
status string
progress array
View JSON Schema on GitHub

JSON Schema

github-setup-configuration-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-setup-configuration-status-schema.json",
  "title": "configuration-status",
  "description": "configuration-status from GitHub API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "example": "open"
    },
    "progress": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "status": {
            "type": "string"
          },
          "key": {
            "type": "string"
          }
        },
        "required": [
          "status",
          "key"
        ]
      }
    }
  }
}