Barndoor · Schema

Agent

AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

Properties

Name Type Description
id string
created_at string
updated_at string
organization_id string
application_directory_id string
View JSON Schema on GitHub

JSON Schema

barndoor-agent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Agent",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "title": "Id"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "title": "Created At"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "title": "Updated At"
    },
    "organization_id": {
      "type": "string",
      "format": "uuid",
      "title": "Organization Id"
    },
    "application_directory_id": {
      "type": "string",
      "format": "uuid",
      "title": "Agent Directory Id"
    }
  },
  "type": "object",
  "required": [
    "id",
    "created_at",
    "updated_at",
    "organization_id",
    "application_directory_id"
  ]
}