Barndoor · Schema

Error

AI AgentsAI GovernanceAgentic AIMCPModel Context ProtocolPolicy EnforcementOAuthIdentitySecurityAuditControl Plane

Properties

Name Type Description
error string Error type identifier
message string Human-readable error message
details object Additional error details
View JSON Schema on GitHub

JSON Schema

barndoor-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Error",
  "type": "object",
  "required": [
    "error",
    "message"
  ],
  "properties": {
    "error": {
      "type": "string",
      "description": "Error type identifier",
      "example": "ServerNotFound"
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message",
      "example": "Server with ID '123' not found"
    },
    "details": {
      "type": "object",
      "description": "Additional error details",
      "additionalProperties": true
    }
  }
}