The network configuration for a device.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-network-payload-schema.json", "title": "NetworkPayload", "description": "The network configuration for a device.", "type": "object", "properties": { "Ethernet0": { "allOf": [ { "$ref": "#/components/schemas/EthernetPayload" }, { "description": "Settings for Ethernet port 0." } ] }, "Ethernet1": { "allOf": [ { "$ref": "#/components/schemas/EthernetPayload" }, { "description": "Settings for Ethernet port 1." } ] }, "Ntp": { "allOf": [ { "$ref": "#/components/schemas/NtpPayload" }, { "description": "Network time protocol (NTP) server settings." } ] } } }