{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConfigStoreSecret", "title": "CreateConfigStoreSecret", "type": "object", "properties": { "key": { "type": "string", "maxLength": 512, "minLength": 1, "x-speakeasy-param-force-new": true }, "value": { "type": "string", "maxLength": 5120, "minLength": 1, "writeOnly": true, "x-sensitive": true, "x-speakeasy-param-sensitive": true } }, "required": [ "key", "value" ] }