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