GitHub · Schema

ghes-replication-status

ghes-replication-status from GitHub API

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
status object
nodes array
View JSON Schema on GitHub

JSON Schema

github-manage-ghes-replication-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-manage-ghes-replication-status-schema.json",
  "title": "ghes-replication-status",
  "description": "ghes-replication-status from GitHub API",
  "type": "object",
  "properties": {
    "status": {
      "$ref": "#/components/schemas/ghes-replication-status-indicator"
    },
    "nodes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "hostname": {
            "type": "string"
          },
          "status": {
            "$ref": "#/components/schemas/ghes-replication-status-indicator"
          },
          "services": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "status": {
                  "$ref": "#/components/schemas/ghes-replication-status-indicator"
                },
                "name": {
                  "type": "string"
                },
                "details": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}