{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActionModuleSecretRequest", "title": "ActionModuleSecretRequest", "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "type": "string", "description": "The name of the secret.", "maxLength": 255, "pattern": "^[^\u0000]*$" }, "value": { "type": "string", "description": "The value of the secret.", "maxLength": 4096, "pattern": "^[^\u0000]*$" } } }