universal-ai-brain
Version:
🧠UNIVERSAL AI BRAIN 3.3 - The world's most advanced cognitive architecture with 24 specialized systems, MongoDB 8.1 $rankFusion hybrid search, latest Voyage 3.5 embeddings, and framework-agnostic design. Works with Mastra, Vercel AI, LangChain, OpenAI A
42 lines • 961 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Resource Registry",
"description": "Schema for the 'resource_registry' collection",
"type": "object",
"properties": {
"_id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
},
"resource_id": {
"type": "string"
},
"resource_type": {
"type": "string",
"enum": ["api_tool", "database", "file_storage", "webhook"]
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"status": {
"type": "string",
"enum": ["online", "offline", "degraded"]
},
"access_point": {
"type": "string"
},
"authentication_method": {
"type": "string"
},
"credential_id": {
"type": "string"
},
"metadata": {
"type": "object"
}
},
"required": ["resource_id", "resource_type", "name", "status", "access_point", "authentication_method"]
}