{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/magic_lan_dhcp_server", "title": "magic_lan_dhcp_server", "properties": { "dhcp_pool_end": { "$ref": "#/components/schemas/magic_ip-address" }, "dhcp_pool_start": { "$ref": "#/components/schemas/magic_ip-address" }, "dns_server": { "$ref": "#/components/schemas/magic_ip-address" }, "reservations": { "additionalProperties": { "description": "IP address associated with the MAC address", "type": "string" }, "description": "Mapping of MAC addresses to IP addresses", "example": { "00:11:22:33:44:55": "192.0.2.100", "AA:BB:CC:DD:EE:FF": "192.168.1.101" }, "type": "object" } }, "type": "object" }