action domainsdb_get_info_tld_zone { label: "Returns statistics for specific zone" provider: domainsdb method: GET path: "/info/tld/{zone}" encoding: json input: { type: "object" properties: { limit: { type: "integer" } page: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["type", "zone"] properties: { description: { type: "array" items: { type: "string" description: "Sub TLDs included" } } in_bundles: { type: "array" items: { type: "string" description: "Sub TLDs included" } } includes: { type: "array" items: { type: "string" description: "Sub TLDs included" } } type: { type: "string" description: "TLD type" } zone: { type: "string" description: "TLD name" } } } }