{ "type": "object", "required": [ "name", "status" ], "properties": { "name": { "allOf": [ { "$ref": "#/components/schemas/DomainName" }, { "description": "The name of the domain. This name is unique within the account." } ] }, "status": { "allOf": [ { "$ref": "#/components/schemas/RegistrationStatus" }, { "description": "

The status of the domain:

" } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "The description of the domain provided through RegisterDomain." } ] }, "arn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The ARN of the domain." } ] } }, "description": "Contains general information about a domain.", "$schema": "http://json-schema.org/draft-07/schema#", "title": "DomainInfo" }