{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayStaticKeyCreate", "title": "EventGatewayStaticKeyCreate", "description": "A symmetric key with its secret value for creation.\n", "type": "object", "properties": { "name": { "description": "The unique name of the static key.", "type": "string", "maxLength": 255, "minLength": 1, "x-unicode-pattern": "^[\\p{L}\\p{N}][\\p{L}\\p{N} _\\-\\.:/+']*[\\p{L}\\p{N}]$" }, "description": { "description": "A human-readable description of the static key.", "type": "string", "default": "", "maxLength": 512 }, "labels": { "$ref": "#/components/schemas/Labels" }, "value": { "$ref": "#/components/schemas/GatewaySecret" } }, "required": [ "name", "value" ] }