Barndoor · JSON Structure

Barndoor Agent Directory Base Structure

Type: object Properties: 10 Required: 11
AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

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

Properties

id created_at updated_at name organization_id external_id public dcr post_login_success callbacks

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "AgentDirectoryBase",
  "properties": {
    "id": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "organization_id": {
      "type": "string"
    },
    "external_id": {
      "type": "string"
    },
    "public": {
      "type": "boolean"
    },
    "dcr": {
      "type": "boolean"
    },
    "post_login_success": {
      "type": "boolean"
    },
    "callbacks": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object",
  "required": [
    "id",
    "created_at",
    "updated_at",
    "name",
    "description",
    "organization_id",
    "external_id",
    "public",
    "dcr",
    "post_login_success",
    "callbacks"
  ]
}