{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiKeyIds",
"title": "ApiKeyIds",
"type": "object",
"properties": {
"ids": {
"allOf": [
{
"$ref": "#/components/schemas/ListOfString"
},
{
"description": "A list of all the ApiKey identifiers."
}
]
},
"warnings": {
"allOf": [
{
"$ref": "#/components/schemas/ListOfString"
},
{
"description": "A list of warning messages."
}
]
}
},
"description": "The identifier of an ApiKey used in a UsagePlan."
}