GitHub · Schema

maintenance-status

maintenance-status from GitHub API

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
status string
scheduled_time string
connection_services array
View JSON Schema on GitHub

JSON Schema

github-setup-maintenance-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-maintenance-status-schema.json",
  "title": "maintenance-status",
  "description": "maintenance-status from GitHub API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "example": "open"
    },
    "scheduled_time": {
      "type": "string",
      "example": "2026-04-17T12:00:00Z"
    },
    "connection_services": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "number": {
            "type": "integer"
          }
        },
        "required": [
          "name",
          "number"
        ]
      }
    }
  }
}