Skip to main content
Column definition for DataTable.
{
  "type": "object",
  "properties": {
    "key": {
      "description": "Data key to display in this column",
      "type": "string"
    },
    "header": {
      "description": "Column header text",
      "type": "string"
    },
    "sortable": {
      "default": false,
      "description": "Enable sorting for this column",
      "type": "boolean"
    }
  },
  "required": [
    "key",
    "header"
  ]
}