{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-structure/azure-container-instances-dns-configuration-structure.json", "description": "DNS configuration for the container group.", "type": "object", "properties": { "nameServers": { "description": "The DNS servers for the container group.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "The DNS options for the container group.", "type": "string" }, "searchDomains": { "description": "The DNS search domains for hostname lookup in the container group.", "type": "string" } }, "required": [ "nameServers" ], "name": "DnsConfiguration" }