Barndoor · JSON Structure

Barndoor Filter Category Structure

Type: object Properties: 3 Required: 2
AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

FilterCategory is a JSON Structure definition published by Barndoor, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id label options

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "FilterCategory",
  "properties": {
    "id": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "options": {
      "items": {
        "properties": {
          "value": {
            "type": "string"
          },
          "label": {
            "type": "string"
          }
        },
        "type": "object",
        "required": [
          "value",
          "label"
        ]
      },
      "type": "array"
    }
  },
  "type": "object",
  "required": [
    "id",
    "label"
  ]
}