{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-describe-elasticsearch-domain-response-schema.json", "title": "DescribeElasticsearchDomainResponse", "description": "The result of a DescribeElasticsearchDomain request. Contains the status of the domain specified in the request.", "type": "object", "properties": { "DomainStatus": { "allOf": [ { "$ref": "#/components/schemas/ElasticsearchDomainStatus" }, { "description": "The current status of the Elasticsearch domain." } ] } }, "required": [ "DomainStatus" ] }