{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-provision-device-request-schema.json", "title": "ProvisionDeviceRequest", "description": "ProvisionDeviceRequest schema from Amazon Panorama", "type": "object", "properties": { "Description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "A description for the device." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/DeviceName" }, { "description": "A name for the device." } ] }, "NetworkingConfiguration": { "allOf": [ { "$ref": "#/components/schemas/NetworkPayload" }, { "description": "A networking configuration for the device." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "Tags for the device." } ] } }, "required": [ "Name" ] }