{
"$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-config-response-schema.json",
"title": "DescribeElasticsearchDomainConfigResponse",
"description": "The result of a DescribeElasticsearchDomainConfig request. Contains the configuration information of the requested domain.",
"type": "object",
"properties": {
"DomainConfig": {
"allOf": [
{
"$ref": "#/components/schemas/ElasticsearchDomainConfig"
},
{
"description": "The configuration information of the domain requested in the DescribeElasticsearchDomainConfig request."
}
]
}
},
"required": [
"DomainConfig"
]
}