> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Domain DNS # Type: Dns Zone Object # Link: https://dev.wix.com/docs/api-reference/account-level/domains/domain-dns/dns-zone-object.md ## Description: DNS zones hold information about the records that map a domain's URL to an IP address. ## Schema: ```json Type: Dns Zone Object | type: DnsZone Description: DNS zones hold information about the records that map a domain's URL to an IP address. - name: domainName | type: string | description: Domain name including the TLD. Both root domains and subdomains are supported. - name: records | type: Array | description: DNS records. You can only set up a single `record` object per DNS record type. If you want to specify multiple values for the same record type, you must save them in the `values` for the relevant type. Min: 2 DNS record - a DNS zone file has to have at least two required DNS records: NS and SOA records Max: 5000 DNS records - name: type | type: string | description: [DNS record type](https://en.wikipedia.org/wiki/List_of_DNS_record_types). enum: UNKNOWN, A, AAAA, NS, SOA, CNAME, MX, TXT, SPF, SRV, PTR, NAPTR - name: hostName | type: string | description: Host name. Can be a subdomain. For example, `domain.com` or `mail.domain.com`. Equal to the domain name, except for `CNAME` records. - name: ttl | type: number | description: [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. - name: values | type: Array | description: DNS record values. Wix limits DNS records to 50 values per type. External providers may support a different maximum number of DNS records for a specific type, Wix doesn't validate that you don't exceed these external limits. Max: 50 records - name: id | type: string | description: ID of the Dns Zone. Identical to the domain name including TLD. - name: dnssecEnabled | type: boolean | description: Whether [DNS Security Extensions (DNSSEC)](https://en.wikipedia.org/wiki/Domain_Name_System_Security_Extensions) are enabled. Default: `false` - name: dnssecInfo | type: DnssecInfo | description: Information about [DNSSEC](https://en.wikipedia.org/wiki/Domain_Name_System_Security_Extensions). Available only if `{"dnssecEnabled": true}`. - name: keyTag | type: number | description: Unique 16-bit identifier for a [DNSKEY](https://cloud.google.com/dns/docs/reference/rest/v1/dnsKeys) record that allows efficient DNSSEC validation in zones with multiple keys. - name: digest | type: string | description: Cryptographic hash of the [DNSKEY](https://cloud.google.com/dns/docs/reference/rest/v1/dnsKeys) record that's included in the delegation signer (DS) record and ensures secure DNSSEC validation. ```