{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormBlockRichText", "title": "FormBlockRichText", "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/FormBlockTypeRichTextConst" }, "config": { "$ref": "#/components/schemas/FormBlockRichTextConfig" } } }