{ "$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" } } }