{ "$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 pool.ntp.org.", "type": "object", "properties": { "NtpServers": { "allOf": [ { "$ref": "#/components/schemas/NtpServerList" }, { "description": "NTP servers to use, in order of preference." } ] } }, "required": [ "NtpServers" ] }