2022-02-11 22:22:59 +01:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"manufacturer": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"model": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"slug": {
|
|
|
|
"type": "string",
|
2023-03-25 16:45:15 +01:00
|
|
|
"pattern": "^[-a-z0-9_]+$"
|
2022-02-11 22:22:59 +01:00
|
|
|
},
|
|
|
|
"part_number": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"u_height": {
|
2022-08-18 15:23:52 +02:00
|
|
|
"type": "number",
|
|
|
|
"minimum": 0,
|
|
|
|
"multipleOf": 0.5
|
2022-02-11 22:22:59 +01:00
|
|
|
},
|
|
|
|
"is_full_depth": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"airflow": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"front-to-rear",
|
|
|
|
"rear-to-front",
|
|
|
|
"left-to-right",
|
|
|
|
"right-to-left",
|
|
|
|
"side-to-rear",
|
|
|
|
"passive"
|
|
|
|
]
|
|
|
|
},
|
2023-01-19 17:40:40 +01:00
|
|
|
"weight": {
|
2023-08-02 18:38:35 +02:00
|
|
|
"$ref": "static.json#/definitions/weight"
|
2023-03-09 16:49:38 +01:00
|
|
|
},
|
|
|
|
"weight_unit": {
|
2023-08-02 18:38:35 +02:00
|
|
|
"$ref": "static.json#/definitions/weight_unit"
|
2023-01-19 17:40:40 +01:00
|
|
|
},
|
2023-03-24 21:50:47 +01:00
|
|
|
"front_image": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"rear_image": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
2022-02-11 22:22:59 +01:00
|
|
|
"subdevice_role": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
|
|
|
"parent",
|
|
|
|
"child"
|
|
|
|
]
|
|
|
|
},
|
2023-07-17 21:23:56 +02:00
|
|
|
"is_powered": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
2022-02-11 22:22:59 +01:00
|
|
|
"console-ports": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/console-port"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"console-server-ports": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/console-server-port"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"power-ports": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/power-port"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"power-outlets": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/power-outlet"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"interfaces": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/interface"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"front-ports": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/front-port"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"rear-ports": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/rear-port"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"module-bays": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/module-bay"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"device-bays": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/device-bay"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"inventory-items": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"$ref": "components.json#/definitions/inventory-item"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"comments": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["manufacturer", "model", "slug"],
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|