{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CreateApiKeyRequest", "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "enabled": { "type": "boolean" }, "generateDistinctId": { "type": "boolean" }, "value": { "type": "string" }, "stageKeys": { "type": "array", "items": { "$ref": "#/definitions/StageKey" } }, "customerId": { "type": "string" }, "tags": { "type": "object" } } }