{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormBlockHtml", "title": "FormBlockHtml", "type": "object", "additionalProperties": false, "required": [ "id", "category", "type" ], "properties": { "id": { "type": "string", "format": "forms-custom-identifier" }, "category": { "$ref": "#/components/schemas/FormComponentCategoryBlockConst" }, "type": { "$ref": "#/components/schemas/FormBlockTypeHtmlConst" }, "config": { "$ref": "#/components/schemas/FormBlockHtmlConfig" } } }