action apispot_check_domain { label: "checkDomain" description: "Check domain availability" provider: apispot method: GET path: "/domains/{domain}/check" encoding: json input: { type: "object" properties: { domain: { type: "string" } } required: ["domain"] additionalProperties: false } output: { type: "object" properties: { isAvailable: { type: "boolean" } } } }