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
33 lines • 767 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Secure Credentials",
"description": "Schema for the 'secure_credentials' collection",
"type": "object",
"properties": {
"_id": {
"type": "string",
"pattern": "^[0-9a-fA-F]{24}$"
},
"credential_id": {
"type": "string"
},
"resource_id": {
"type": "string"
},
"credential_type": {
"type": "string"
},
"encrypted_credentials": {
"type": "object"
},
"last_rotated": {
"type": "string",
"format": "date-time"
},
"status": {
"type": "string",
"enum": ["active", "revoked"]
}
},
"required": ["credential_id", "resource_id", "credential_type", "encrypted_credentials", "status"]
}