Juniper Networks · Schema
InventoryDevice
AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| mac | string | |
| serial | string | |
| model | string | |
| type | string | |
| org_id | string | |
| site_id | string | |
| name | string | |
| connected | boolean | |
| created_time | number | |
| modified_time | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InventoryDevice",
"title": "InventoryDevice",
"type": "object",
"properties": {
"mac": {
"type": "string"
},
"serial": {
"type": "string"
},
"model": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"ap",
"switch",
"gateway"
]
},
"org_id": {
"type": "string",
"format": "uuid"
},
"site_id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"connected": {
"type": "boolean"
},
"created_time": {
"type": "number"
},
"modified_time": {
"type": "number"
}
}
}