{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldCardsConfigOption", "title": "FormFieldCardsConfigOption", "type": "object", "additionalProperties": false, "required": [ "value", "label", "image_url" ], "properties": { "value": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 }, "image_url": { "type": "string", "format": "forms-url-https" } } }