{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateUsagePlanKeyRequest", "title": "CreateUsagePlanKeyRequest", "type": "object", "required": [ "keyId", "keyType" ], "properties": { "keyId": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The identifier of a UsagePlanKey resource for a plan customer." } ] }, "keyType": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The type of a UsagePlanKey resource for a plan customer." } ] } }, "description": "The POST request to create a usage plan key for adding an existing API key to a usage plan." }