Amazon Panorama · Schema

NetworkPayload

The network configuration for a device.

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
Ethernet0 object
Ethernet1 object
Ntp object
View JSON Schema on GitHub

JSON Schema

openapi-network-payload-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}