action solarvps_get_dns_domain { label: "View all your records for a given domain" description: "Shows all your records for a specific domain. You can try example.com below." provider: solarvps method: GET path: "/dns/{domain}" encoding: json input: { type: "object" properties: { domain: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" additionalProperties: true } }