{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-limits-schema.json",
"title": "Limits",
"description": " Limits for given InstanceType and for each of it's role.
Limits contains following StorageTypes, InstanceLimits and AdditionalLimits ",
"type": "object",
"properties": {
"StorageTypes": {
"allOf": [
{
"$ref": "#/components/schemas/StorageTypeList"
},
{
"description": "StorageType represents the list of storage related types and attributes that are available for given InstanceType. "
}
]
},
"InstanceLimits": {
"$ref": "#/components/schemas/InstanceLimits"
},
"AdditionalLimits": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalLimitList"
},
{
"description": " List of additional limits that are specific to a given InstanceType and for each of it's InstanceRole . "
}
]
}
}
}