{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UsagePlanKey",
"title": "UsagePlanKey",
"type": "object",
"properties": {
"id": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The Id of a usage plan key."
}
]
},
"type": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The type of a usage plan key. Currently, the valid key type is <code>API_KEY</code>."
}
]
},
"value": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The value of a usage plan key."
}
]
},
"name": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The name of a usage plan key."
}
]
}
},
"description": "Represents a usage plan key to identify a plan customer."
}