{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiStage",
"title": "ApiStage",
"type": "object",
"properties": {
"apiId": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "API Id of the associated API stage in a usage plan."
}
]
},
"stage": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "API stage name of the associated API stage in a usage plan."
}
]
},
"throttle": {
"allOf": [
{
"$ref": "#/components/schemas/MapOfApiStageThrottleSettings"
},
{
"description": "Map containing method level throttling information for API stage in a usage plan."
}
]
}
},
"description": "API stage name of the associated API stage in a usage plan."
}