action id4i_resolve_who_is_entry { label: "Resolve owner of id4n" provider: id4i method: GET path: "/whois/{id4n}" encoding: json input: { type: "object" properties: { id4n: { type: "string" } } required: ["id4n"] additionalProperties: false } output: { type: "object" properties: { aliases: { type: "object" } organization: { type: "object" description: "An organization" required: ["name", "namespace"] properties: { id: { type: "integer" format: "int64" description: "The id of the organization ( Deprecated: Use namespace instead. )" } logoURL: { type: "string" description: "URL to a logo of the organization" } name: { type: "string" description: "The name of the organization" } namespace: { type: "string" description: "The namespace of the organization" } } } organizationAddress: { type: "object" required: ["city", "countryCode", "firstname", "lastname", "postCode", "street"] properties: { city: { type: "string" } companyName: { type: "string" } countryCode: { type: "string" description: "The ISO 3166 two-letter country code" } countryName: { type: "string" description: "The country name" } firstname: { type: "string" } lastname: { type: "string" } postCode: { type: "string" } street: { type: "string" } telephone: { type: "string" description: "The telephone number e.g." } } } } } }