{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DomainRequest", "title": "DomainRequest", "type": "object", "required": [ "domain", "type" ], "properties": { "domain": { "type": "string", "description": "The domain name." }, "type": { "type": "string", "enum": [ "master", "slave" ], "description": "Whether this is a master or slave zone." }, "soa_email": { "type": "string", "format": "email", "description": "The SOA email address." }, "description": { "type": "string", "description": "A description for this domain." }, "tags": { "type": "array", "items": { "type": "string" }, "description": "Tags for this domain." } } }