{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-panorama/refs/heads/main/json-schema/openapi-static-ip-connection-info-schema.json", "title": "StaticIpConnectionInfo", "description": "A static IP configuration.", "type": "object", "properties": { "DefaultGateway": { "allOf": [ { "$ref": "#/components/schemas/DefaultGateway" }, { "description": "The connection's default gateway." } ] }, "Dns": { "allOf": [ { "$ref": "#/components/schemas/DnsList" }, { "description": "The connection's DNS address." } ] }, "IpAddress": { "allOf": [ { "$ref": "#/components/schemas/IpAddress" }, { "description": "The connection's IP address." } ] }, "Mask": { "allOf": [ { "$ref": "#/components/schemas/Mask" }, { "description": "The connection's DNS mask." } ] } }, "required": [ "DefaultGateway", "Dns", "IpAddress", "Mask" ] }