Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| label | string | |
| description | string | |
| leaf_switches | array | |
| access_switches | array | |
| generic_systems | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RackType",
"title": "RackType",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"leaf_switches": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"logical_device_id": {
"type": "string",
"format": "uuid"
},
"link_per_spine_count": {
"type": "integer"
},
"link_per_spine_speed": {
"type": "string"
}
}
}
},
"access_switches": {
"type": "array",
"items": {
"type": "object"
}
},
"generic_systems": {
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"count": {
"type": "integer"
},
"logical_device_id": {
"type": "string",
"format": "uuid"
}
}
}
}
}
}