{
"$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-domains-response-schema.json",
"title": "DescribeElasticsearchDomainsResponse",
"description": "The result of a DescribeElasticsearchDomains request. Contains the status of the specified domains or all domains owned by the account.",
"type": "object",
"properties": {
"DomainStatusList": {
"allOf": [
{
"$ref": "#/components/schemas/ElasticsearchDomainStatusList"
},
{
"description": "The status of the domains requested in the DescribeElasticsearchDomains request."
}
]
}
},
"required": [
"DomainStatusList"
]
}