{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldCustomConfig", "title": "FormFieldCustomConfig", "type": "object", "additionalProperties": false, "required": [ "schema", "code" ], "properties": { "schema": { "$ref": "#/components/schemas/FormFieldCustomConfigSchema" }, "code": { "type": "string", "minLength": 1 }, "css": { "type": "string", "minLength": 1 }, "params": { "$ref": "#/components/schemas/FormFieldCustomConfigParams" } } }