Amazon Panorama · Schema

NtpPayload

Network time protocol (NTP) server settings. Use this option to connect to local NTP servers instead of pool.ntp.org.

CamerasComputer VisionEdge MLIndustrial IoT

Properties

Name Type Description
NtpServers object
View JSON Schema on GitHub

JSON Schema

openapi-ntp-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-ntp-payload-schema.json",
  "title": "NtpPayload",
  "description": "Network time protocol (NTP) server settings. Use this option to connect to local NTP servers instead of <code>pool.ntp.org</code>.",
  "type": "object",
  "properties": {
    "NtpServers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NtpServerList"
        },
        {
          "description": "NTP servers to use, in order of preference."
        }
      ]
    }
  },
  "required": [
    "NtpServers"
  ]
}