{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormBlockImageConfig", "title": "FormBlockImageConfig", "type": "object", "additionalProperties": false, "required": [ "src" ], "properties": { "src": { "type": "string", "maxLength": 500 }, "position": { "$ref": "#/components/schemas/FormBlockImageConfigPositionEnum" }, "height": { "type": "number", "minimum": 1, "maximum": 500 } } }