Properties
| Name | Type | Description |
|---|---|---|
| connector_id | object | |
| description | string | |
| ha_mode | boolean | Site high availability mode. If set to true, the site can have two connectors and runs in high availability mode. |
| id | object | |
| location | object | |
| name | object | |
| secondary_connector_id | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/magic_site",
"title": "magic_site",
"properties": {
"connector_id": {
"$ref": "#/components/schemas/magic_connector-id"
},
"description": {
"type": "string"
},
"ha_mode": {
"description": "Site high availability mode. If set to true, the site can have two connectors and runs in high availability mode.",
"example": true,
"type": "boolean"
},
"id": {
"$ref": "#/components/schemas/magic_identifier"
},
"location": {
"$ref": "#/components/schemas/magic_site-location"
},
"name": {
"$ref": "#/components/schemas/magic_site-name"
},
"secondary_connector_id": {
"$ref": "#/components/schemas/magic_secondary-connector-id"
}
},
"type": "object"
}