Properties
| Name | Type | Description |
|---|---|---|
| status | object | |
| nodes | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ghes-replication-status",
"title": "ghes-replication-status",
"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"
}
}
}
}
}
}
}
}
}