* Update devicetype.json * Update moduletype.json * Update definitions_test.py * Update device_types.py * Update devicetype.json * Update moduletype.json * Update devicetype.json * Update HWG-STE.yml * Update 701BA8PP.yml * Update WS-C2960C-12PC-L.yaml * Update snr-ups-onrt-1000-s24-element-ii.yaml * Update EP-R6.yaml * Update moduletype.json * Fixed issues * Added description limit --------- Co-authored-by: Harry <harry@cadby.co.uk>
133 lines
3.7 KiB
JSON
133 lines
3.7 KiB
JSON
{
|
|
"type": "object",
|
|
"$id": "urn:devicetype-library:device-type",
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"properties": {
|
|
"manufacturer": {
|
|
"type": "string",
|
|
"maxLength": 100
|
|
},
|
|
"model": {
|
|
"type": "string",
|
|
"maxLength": 100
|
|
},
|
|
"slug": {
|
|
"type": "string",
|
|
"maxLength": 100,
|
|
"pattern": "^[-a-z0-9_]+$"
|
|
},
|
|
"part_number": {
|
|
"type": "string",
|
|
"maxLength": 50
|
|
},
|
|
"u_height": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"multipleOf": 0.5
|
|
},
|
|
"is_full_depth": {
|
|
"type": "boolean"
|
|
},
|
|
"airflow": {
|
|
"$ref": "urn:devicetype-library:generated-schema#/definitions/airflow"
|
|
},
|
|
"weight": {
|
|
"$ref": "urn:devicetype-library:reusable#/definitions/weight"
|
|
},
|
|
"weight_unit": {
|
|
"$ref": "urn:devicetype-library:generated-schema#/definitions/weight-unit"
|
|
},
|
|
"front_image": {
|
|
"type": "boolean"
|
|
},
|
|
"rear_image": {
|
|
"type": "boolean"
|
|
},
|
|
"subdevice_role": {
|
|
"$ref": "urn:devicetype-library:generated-schema#/definitions/subdevice-role"
|
|
},
|
|
"is_powered": {
|
|
"type": "boolean"
|
|
},
|
|
"console-ports": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/console-port"
|
|
}
|
|
},
|
|
"console-server-ports": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/console-server-port"
|
|
}
|
|
},
|
|
"power-ports": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/power-port"
|
|
}
|
|
},
|
|
"power-outlets": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/power-outlet"
|
|
}
|
|
},
|
|
"interfaces": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/interface"
|
|
}
|
|
},
|
|
"front-ports": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/front-port"
|
|
}
|
|
},
|
|
"rear-ports": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/rear-port"
|
|
}
|
|
},
|
|
"module-bays": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/module-bay"
|
|
}
|
|
},
|
|
"device-bays": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/device-bay"
|
|
}
|
|
},
|
|
"inventory-items": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "urn:devicetype-library:components#/definitions/inventory-item"
|
|
}
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"maxLength": 200
|
|
},
|
|
"comments": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"allOf": [
|
|
{
|
|
"if": { "required": ["weight"] },
|
|
"then": { "required": ["weight_unit"] }
|
|
},
|
|
{
|
|
"if": { "required": ["weight_unit"] },
|
|
"then": { "required": ["weight"] }
|
|
}
|
|
],
|
|
"required": ["manufacturer", "model", "slug", "u_height","is_full_depth"],
|
|
"additionalProperties": false
|
|
}
|