GitHub · JSON Structure

Github Setup Maintenance Status Structure

maintenance-status from GitHub API

Type: object Properties: 3
CodePipelinesPlatformSoftware DevelopmentSource ControlT1

maintenance-status is a JSON Structure definition published by GitHub, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status scheduled_time connection_services

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-structure/github-setup-maintenance-status-structure.json",
  "name": "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": "int32"
          }
        },
        "required": [
          "name",
          "number"
        ]
      }
    }
  }
}