{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-structure/openapi-compatible-versions-map-structure.json",
"name": "CompatibleVersionsMap",
"description": " A map from an ElasticsearchVersion to a list of compatible ElasticsearchVersion s to which the domain can be upgraded. ",
"type": "object",
"properties": {
"SourceVersion": {
"allOf": [
{
"$ref": "#/components/schemas/ElasticsearchVersionString"
},
{
"description": "The current version of Elasticsearch on which a domain is."
}
]
},
"TargetVersions": {
"$ref": "#/components/schemas/ElasticsearchVersionList"
}
}
}