Barndoor · Schema

FilterCategory

Category of filter options for the advanced filter UI.

AI AgentsAI GovernanceAgentic AIMCPPolicy EnforcementAuthenticationIdentitySecurityAuditControl Plane

Properties

Name Type Description
id string
label string
options array
View JSON Schema on GitHub

JSON Schema

barndoor-filter-category-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FilterCategory",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id"
    },
    "label": {
      "type": "string",
      "title": "Label"
    },
    "options": {
      "items": {
        "properties": {
          "value": {
            "type": "string",
            "title": "Value"
          },
          "label": {
            "type": "string",
            "title": "Label"
          }
        },
        "type": "object",
        "required": [
          "value",
          "label"
        ],
        "title": "FilterOption",
        "description": "Individual filter option."
      },
      "type": "array",
      "title": "Options"
    }
  },
  "type": "object",
  "required": [
    "id",
    "label"
  ],
  "description": "Category of filter options for the advanced filter UI."
}