GitHub · Schema

ghes-config-nodes

ghes-config-nodes from GitHub API

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

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

JSON Schema

github-manage-ghes-config-nodes-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-config-nodes-schema.json",
  "title": "ghes-config-nodes",
  "description": "ghes-config-nodes from GitHub API",
  "type": "object",
  "properties": {
    "topology": {
      "$ref": "#/components/schemas/ghes-cluster-topology"
    },
    "nodes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "hostname": {
            "type": "string"
          },
          "uuid": {
            "type": "string"
          },
          "replica": {
            "type": "boolean"
          },
          "cluster_roles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ghes-cluster-roles"
            }
          }
        }
      }
    }
  }
}