Barndoor · JSON Structure

Barndoor Server Summary Structure

Type: object Properties: 5 Required: 4
AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

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

Properties

id name slug provider connection_status

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "ServerSummary",
  "type": "object",
  "required": [
    "id",
    "name",
    "slug",
    "connection_status"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "slug": {
      "type": "string",
      "pattern": "^[a-z0-9-]+$"
    },
    "provider": {
      "type": "string",
      "nullable": true
    },
    "connection_status": {
      "type": "string",
      "enum": [
        "available",
        "pending",
        "connected",
        "error"
      ]
    }
  }
}