Skip to main content
Choice card container for form controls.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "Field",
      "default": "Field",
      "type": "string"
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling"
    },
    "children": {
      "type": "array",
      "items": {
        "$ref": "Component"
      }
    },
    "title": {
      "description": "Card heading text",
      "type": "string"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "Secondary text below the title"
    },
    "disabled": {
      "default": false,
      "description": "Whether the field is dimmed and non-interactive",
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "title"
  ]
}