{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormHiddenField", "title": "FormHiddenField", "type": "object", "additionalProperties": false, "required": [ "key" ], "properties": { "key": { "type": "string", "format": "forms-custom-identifier" }, "value": { "type": "string", "minLength": 1, "maxLength": 500 } } }