The Universal Knowledge Protocol: Noun-Verb Taxonomy
Brainy is the Universal Knowledge Protocol™ powered by Triple Intelligence™
We're the world's first to unify vector, graph, and document search in one magical API. This breakthrough—Triple Intelligence—enables us to create a universal language for knowledge that all tools, augmentations, and AI models can speak.
Universal & Infinite Expressiveness
Brainy's Noun-Verb Taxonomy achieves universal coverage of all human knowledge through infinite expressiveness:
- 42 Noun Types × 127 Verb Types = 5,334 Base Combinations
- Unlimited Metadata Fields = ∞ Domain Specificity
- Multi-hop Graph Traversals = ∞ Relationship Complexity
- Result: Can Model ANY Data in ANY Industry
This isn't marketing—it's mathematically provable. Every piece of information that exists can be represented as entities (nouns) connected by relationships (verbs) with properties (metadata).
The Power of Standardization: Universal Interoperability
Why Standardized Types = Seamless Integration
The standardized noun-verb taxonomy creates a universal language that enables:
1. **Tool Interoperability**
// Any tool that understands Brainy types can work with any other
const analyticsAugmentation = await brain.augment('analytics')
const visualizationAugmentation = await brain.augment('visualization')
// Both understand "person", "document", "creates" without translation
const authors = await analyticsAugmentation.findTopAuthors()
await visualizationAugmentation.graphRelationships(authors)2. **Data Portability**
// Export from one Brainy instance
const data = await brain1.export()
// Import to another—types are universally understood
await brain2.import(data)
// Or sync between different storage backends
const cloudBrain = new Brainy({ storage: 's3' })
const localBrain = new Brainy({ storage: 'filesystem' })
await cloudBrain.sync(localBrain) // Types match perfectly3. **AI Model Compatibility**
// Different AI models can share the same knowledge graph
const gptBrain = await brain.connectModel('gpt-4')
const claudeBrain = await brain.connectModel('claude-3')
const llamaBrain = await brain.connectModel('llama-2')
// All models understand the same noun-verb structure
const knowledge = await brain.add("Quantum Computer", { type: "thing" })
// Any model can now reason about this knowledge4. **Augmentation Ecosystem**
// Augmentations build on standard types, ensuring compatibility
await brain.augment.install('medical-records') // Extends "person" type
await brain.augment.install('financial-analysis') // Extends "transaction" events
await brain.augment.install('social-graph') // Uses "follows", "likes" verbs
// All augmentations work together seamlessly
const patient = await brain.find("patient with financial transactions who follows Dr. Smith")5. **Cross-Platform Integration**
// Standard types enable integration with external systems
// CRM understands "person" and "organization"
await brain.sync.salesforce({
mapping: {
Contact: "person",
Account: "organization",
Opportunity: "event"
}
})
// Project management understands "task" and "project"
await brain.sync.jira({
mapping: {
Issue: "task",
Epic: "project",
Sprint: "event"
}
})The Network Effect: Brainy as the Universal Knowledge Protocol
Like HTTP became the protocol for the web and TCP/IP for the internet, Brainy's noun-verb taxonomy is becoming the Universal Knowledge Protocol:
- Learn Once: Developers learn 42 nouns + 127 verbs, not 1000s of schemas
- Build Anywhere: Tools built for one domain work in others
- Share Everything: Knowledge graphs are universally shareable
- Compose Freely: Augmentations compose without conflicts
This isn't just a database—it's a protocol for how humanity represents knowledge.
Overview
Brainy 2.0 introduces a revolutionary Noun-Verb Taxonomy that models data as entities (nouns) and relationships (verbs), creating a semantic knowledge graph that mirrors how humans naturally think about information.
Why Noun-Verb?
Traditional databases force you to think in tables, documents, or nodes. Brainy lets you think naturally:
- Nouns: Things that exist (people, documents, products, concepts)
- Verbs: How things relate (creates, owns, references, similar-to)
This simple mental model scales from basic storage to complex knowledge graphs while remaining intuitive.
Core Concepts
Nouns (Entities)
Nouns represent any entity in your system:
// Add any entity as a noun
const personId = await brain.add("John Smith, Senior Engineer", {
type: "person",
department: "engineering",
skills: ["TypeScript", "React", "Node.js"]
})
const documentId = await brain.add("Q3 2024 Financial Report", {
type: "document",
category: "financial",
confidential: true,
created: "2024-10-01"
})
const conceptId = await brain.add("Machine Learning", {
type: "concept",
domain: "technology",
complexity: "advanced"
})Noun Properties
Every noun automatically gets:
- Unique ID: System-generated or custom
- Vector Embedding: For semantic similarity
- Metadata: Flexible JSON properties
- Timestamps: Created/updated tracking
- Indexing: Automatic field indexing
Verbs (Relationships)
Verbs define how nouns relate to each other:
// Create relationships between entities
await brain.relate(personId, documentId, "authored", {
role: "primary_author",
contribution: "80%"
})
await brain.relate(documentId, conceptId, "discusses", {
sections: ["methodology", "results"],
depth: "detailed"
})
await brain.relate(personId, conceptId, "expert_in", {
years_experience: 5,
certification: "Advanced ML Certification"
})Verb Properties
Every verb includes:
- Source: The noun initiating the relationship
- Target: The noun receiving the relationship
- Type: The relationship type/name
- Direction: Directional or bidirectional
- Metadata: Relationship-specific data
- Strength: Optional relationship weight
Benefits
1. Natural Mental Model
// Think naturally about your data
const taskId = await brain.add("Implement payment system")
const userId = await brain.add("Alice Johnson")
const projectId = await brain.add("E-commerce Platform")
// Express relationships clearly
await brain.relate(userId, taskId, "assigned_to")
await brain.relate(taskId, projectId, "part_of")
await brain.relate(userId, projectId, "manages")2. Semantic Understanding
The noun-verb model preserves meaning:
// The system understands semantic relationships
const results = await brain.find("tasks assigned to Alice")
// Automatically understands: assigned_to verb + Alice noun
const related = await brain.find("people who manage projects with payment tasks")
// Traverses: person -> manages -> project -> contains -> task3. Flexible Schema
No rigid schema requirements:
// Add any noun type without schema changes
await brain.add("New IoT Sensor", {
type: "device",
protocol: "MQTT",
location: "Building A"
})
// Create new relationship types on the fly
await brain.relate(sensorId, buildingId, "monitors", {
metrics: ["temperature", "humidity"],
interval: "5 minutes"
})4. Graph Traversal
Navigate relationships naturally:
// Find all documents authored by team members
const teamDocs = await brain.find({
connected: {
from: teamId,
through: ["member_of", "authored"],
depth: 2
}
})
// Find similar products purchased by similar users
const recommendations = await brain.find({
connected: {
from: userId,
through: ["similar_to", "purchased"],
depth: 2,
type: "product"
}
})5. Temporal Relationships
Track how relationships change over time:
// Relationships with temporal data
await brain.relate(employeeId, companyId, "worked_at", {
from: "2020-01-01",
to: "2023-12-31",
position: "Senior Developer"
})
await brain.relate(employeeId, newCompanyId, "works_at", {
from: "2024-01-01",
position: "Tech Lead"
})
// Query historical relationships
const employment = await brain.find("where did John work in 2022")Real-World Use Cases
Knowledge Management
// Documents and their relationships
const paperId = await brain.add("Neural Networks Paper", {
type: "research_paper",
year: 2024
})
const authorId = await brain.add("Dr. Sarah Chen", {
type: "researcher"
})
const topicId = await brain.add("Deep Learning", {
type: "topic"
})
// Rich relationship network
await brain.relate(authorId, paperId, "authored")
await brain.relate(paperId, topicId, "covers")
await brain.relate(paperId, otherPaperId, "cites")
await brain.relate(authorId, topicId, "researches")
// Query the knowledge graph
const related = await brain.find("papers about deep learning by Sarah Chen")Social Networks
// Users and connections
const user1 = await brain.add("Alice", { type: "user" })
const user2 = await brain.add("Bob", { type: "user" })
const post = await brain.add("Great article on AI!", { type: "post" })
// Social interactions
await brain.relate(user1, user2, "follows")
await brain.relate(user2, user1, "follows") // Mutual
await brain.relate(user1, post, "created")
await brain.relate(user2, post, "liked")
await brain.relate(user2, post, "shared")
// Find social patterns
const influencers = await brain.find("users with most followers who post about AI")E-commerce
// Products and purchases
const product = await brain.add("Wireless Headphones", {
type: "product",
price: 99.99,
category: "electronics"
})
const customer = await brain.add("Customer #12345", {
type: "customer",
tier: "premium"
})
// Purchase relationships
await brain.relate(customer, product, "purchased", {
date: "2024-01-15",
quantity: 1,
price: 99.99
})
await brain.relate(customer, product, "reviewed", {
rating: 5,
text: "Excellent sound quality!"
})
// Recommendation queries
const recs = await brain.find("products purchased by customers who bought headphones")Project Management
// Projects, tasks, and teams
const project = await brain.add("Website Redesign", { type: "project" })
const task = await brain.add("Update homepage", { type: "task" })
const developer = await brain.add("Jane Developer", { type: "person" })
const designer = await brain.add("John Designer", { type: "person" })
// Work relationships
await brain.relate(task, project, "belongs_to")
await brain.relate(developer, task, "assigned_to")
await brain.relate(designer, developer, "collaborates_with")
await brain.relate(task, otherTask, "depends_on")
// Project queries
const blockers = await brain.find("tasks that depend on incomplete tasks")
const workload = await brain.find("people assigned to multiple active projects")Advanced Patterns
Bidirectional Relationships
// Some relationships are naturally bidirectional
await brain.relate(user1, user2, "friend_of", { bidirectional: true })
// Automatically creates inverse relationshipWeighted Relationships
// Add strength/weight to relationships
await brain.relate(doc1, doc2, "similar_to", {
similarity_score: 0.95,
algorithm: "cosine"
})
// Use weights in queries
const stronglyRelated = await brain.find({
connected: {
type: "similar_to",
minWeight: 0.8
}
})Relationship Chains
// Follow relationship chains
const results = await brain.find({
connected: {
from: userId,
chain: [
{ type: "owns", to: "company" },
{ type: "produces", to: "product" },
{ type: "uses", to: "technology" }
]
}
})
// Finds: technologies used by products made by companies owned by userMeta-Relationships
// Relationships about relationships
const verbId = await brain.relate(user1, user2, "recommends")
await brain.relate(user3, verbId, "endorses", {
reason: "Accurate recommendation",
trust_score: 0.9
})Query Patterns
Finding Nouns
// By type
const people = await brain.find({ where: { type: "person" } })
// By properties
const documents = await brain.find({
where: {
type: "document",
confidential: false,
created: { $gte: "2024-01-01" }
}
})
// By similarity
const similar = await brain.find({
like: "machine learning research",
where: { type: "document" }
})Finding Verbs
// Get all relationships for a noun
const relationships = await brain.getVerbs(nounId)
// Find specific relationship types
const authorships = await brain.find({
verb: {
type: "authored",
from: authorId
}
})
// Find by relationship properties
const recentPurchases = await brain.find({
verb: {
type: "purchased",
where: {
date: { $gte: "2024-01-01" }
}
}
})Combined Queries
// Find nouns through relationships
const results = await brain.find({
// Start with similar documents
like: "AI research",
// That are authored by
connected: {
through: "authored",
// People who work at
where: {
connected: {
to: "Stanford",
type: "works_at"
}
}
}
})Performance Optimizations
Noun Indexing
- Automatic vector indexing for similarity
- Field indexing for metadata queries
- Full-text indexing for content search
Verb Indexing
- Relationship type indexing
- Source/target indexing
- Temporal indexing for time-based queries
Query Optimization
- Automatic query plan optimization
- Parallel execution of independent operations
- Result caching for repeated queries
Best Practices
- Use Descriptive Types: Make noun and verb types self-documenting
- Rich Metadata: Include relevant metadata for better querying
- Consistent Naming: Use consistent verb names across your application
- Temporal Data: Include timestamps for time-based analysis
- Bidirectional When Appropriate: Mark symmetric relationships as bidirectional
Migration from Traditional Models
From Relational (SQL)
// Instead of JOIN queries
// SELECT * FROM users JOIN orders ON users.id = orders.user_id
// Use noun-verb relationships
const userId = await brain.add("User", userData)
const orderId = await brain.add("Order", orderData)
await brain.relate(userId, orderId, "placed")
// Query naturally
const userOrders = await brain.find({
connected: { from: userId, type: "placed" }
})From Document (NoSQL)
// Instead of embedded documents
// { user: { orders: [...] } }
// Use explicit relationships
const userId = await brain.add("User", userData)
for (const order of orders) {
const orderId = await brain.add("Order", order)
await brain.relate(userId, orderId, "has_order")
}From Graph Databases
// Similar to graph databases but with added benefits:
// 1. Automatic vector embeddings for similarity
// 2. Natural language querying
// 3. Unified with metadata filtering
// Enhanced graph queries
const results = await brain.find("similar users who purchased similar products")Universal Knowledge Coverage
The Noun-Verb taxonomy is designed to represent all human knowledge through a comprehensive set of types that can be combined infinitely.
Complete Noun Types (31 Types)
Core Entity Types (6)
1. **Person** - Individual human entities
await brain.add("Albert Einstein", {
type: "person",
role: "physicist",
born: "1879-03-14"
})2. **Organization** - Collective entities
await brain.add("OpenAI", {
type: "organization",
industry: "AI research",
founded: 2015
})3. **Location** - Geographic and spatial entities
await brain.add("San Francisco", {
type: "location",
category: "city",
coordinates: [37.7749, -122.4194]
})4. **Thing** - Physical objects
await brain.add("Tesla Model 3", {
type: "thing",
category: "vehicle",
manufacturer: "Tesla"
})5. **Concept** - Abstract ideas and intangibles
await brain.add("Machine Learning", {
type: "concept",
domain: "technology",
complexity: "advanced"
})6. **Event** - Temporal occurrences
await brain.add("Product Launch 2024", {
type: "event",
date: "2024-09-15",
attendees: 500
})Digital/Content Types (5)
7. **Document** - Text-based files
await brain.add("Quarterly Report", {
type: "document",
format: "PDF",
pages: 47
})8. **Media** - Non-text media files
await brain.add("Product Demo Video", {
type: "media",
format: "MP4",
duration: "5:30"
})9. **File** - Generic digital files
await brain.add("config.json", {
type: "file",
size: "2KB",
modified: Date.now()
})10. **Message** - Communication content
await brain.add("Support ticket #1234", {
type: "message",
priority: "high",
channel: "email"
})11. **Content** - Generic content
await brain.add("Landing page copy", {
type: "content",
category: "marketing",
language: "en"
})Collection Types (2)
12. **Collection** - Groups of items
await brain.add("Premium Features", {
type: "collection",
items: 25,
category: "features"
})13. **Dataset** - Structured data collections
await brain.add("Customer Analytics", {
type: "dataset",
records: 10000,
schema: "v2"
})Business/Application Types (5)
14. **Product** - Commercial offerings
await brain.add("Pro Subscription", {
type: "product",
price: 99.99,
tier: "premium"
})15. **Service** - Service offerings
await brain.add("Cloud Hosting", {
type: "service",
sla: "99.9%",
region: "us-west"
})16. **User** - User accounts
await brain.add("user@example.com", {
type: "user",
tier: "enterprise",
created: Date.now()
})17. **Task** - Actions and todos
await brain.add("Deploy v2.0", {
type: "task",
priority: "high",
assignee: "devops"
})18. **Project** - Organized initiatives
await brain.add("Website Redesign", {
type: "project",
deadline: "2024-12-31",
status: "active"
})Descriptive Types (7)
19. **Process** - Workflows and procedures
await brain.add("CI/CD Pipeline", {
type: "process",
steps: 7,
automated: true
})20. **State** - Conditions or status
await brain.add("System Health", {
type: "state",
status: "operational",
uptime: "99.99%"
})21. **Role** - Positions or responsibilities
await brain.add("Admin Role", {
type: "role",
permissions: ["read", "write", "delete"],
level: "superuser"
})22. **Topic** - Subjects or themes
await brain.add("Machine Learning", {
type: "topic",
field: "AI",
popularity: "high"
})23. **Language** - Languages or linguistic entities
await brain.add("English", {
type: "language",
iso_code: "en",
speakers_millions: 1500
})24. **Currency** - Monetary units
await brain.add("US Dollar", {
type: "currency",
symbol: "$",
code: "USD"
})25. **Measurement** - Metrics or quantities
await brain.add("Temperature Reading", {
type: "measurement",
value: 23.5,
unit: "celsius"
})Scientific/Research Types (2)
26. **Hypothesis** - Scientific theories and propositions
await brain.add("String Theory", {
type: "hypothesis",
field: "physics",
status: "unproven"
})27. **Experiment** - Studies and research trials
await brain.add("Clinical Trial XYZ", {
type: "experiment",
phase: 3,
participants: 1000
})Legal/Regulatory Types (2)
28. **Contract** - Legal agreements and terms
await brain.add("Service Agreement", {
type: "contract",
duration: "2 years",
value: 100000
})29. **Regulation** - Laws and compliance requirements
await brain.add("GDPR", {
type: "regulation",
jurisdiction: "EU",
category: "data protection"
})Technical Infrastructure Types (2)
30. **Interface** - APIs and protocols
await brain.add("REST API", {
type: "interface",
version: "v2",
endpoints: 45
})31. **Resource** - Infrastructure and compute assets
await brain.add("Database Server", {
type: "resource",
capacity: "1TB",
availability: "99.9%"
})Complete Verb Types (40 Types)
Core Relationship Types (5)
1. **RelatedTo** - Generic relationship (default)
await brain.relate(entityA, entityB, "relatedTo")2. **Contains** - Containment relationship
await brain.relate(folderId, fileId, "contains")3. **PartOf** - Part-whole relationship
await brain.relate(componentId, systemId, "partOf")4. **LocatedAt** - Spatial relationship
await brain.relate(deviceId, locationId, "locatedAt")5. **References** - Citation relationship
await brain.relate(paperId, sourceId, "references")Temporal/Causal Types (5)
6. **Precedes** - Temporal sequence (before)
await brain.relate(event1Id, event2Id, "precedes")7. **Succeeds** - Temporal sequence (after)
await brain.relate(event2Id, event1Id, "succeeds")8. **Causes** - Causal relationship
await brain.relate(actionId, effectId, "causes")9. **DependsOn** - Dependency relationship
await brain.relate(moduleId, libraryId, "dependsOn")10. **Requires** - Necessity relationship
await brain.relate(taskId, resourceId, "requires")Creation/Transformation Types (5)
11. **Creates** - Creation relationship
await brain.relate(authorId, documentId, "creates")12. **Transforms** - Transformation relationship
await brain.relate(processId, dataId, "transforms")13. **Becomes** - State change relationship
await brain.relate(caterpillarId, butterflyId, "becomes")14. **Modifies** - Modification relationship
await brain.relate(editorId, fileId, "modifies")15. **Consumes** - Consumption relationship
await brain.relate(processId, resourceId, "consumes")Ownership/Attribution Types (4)
16. **Owns** - Ownership relationship
await brain.relate(userId, assetId, "owns")17. **AttributedTo** - Attribution relationship
await brain.relate(quoteId, authorId, "attributedTo")18. **CreatedBy** - Creation attribution
await brain.relate(productId, teamId, "createdBy")19. **BelongsTo** - Belonging relationship
await brain.relate(itemId, collectionId, "belongsTo")Social/Organizational Types (9)
20. **MemberOf** - Membership relationship
await brain.relate(userId, organizationId, "memberOf")21. **WorksWith** - Professional relationship
await brain.relate(employee1Id, employee2Id, "worksWith")22. **FriendOf** - Friendship relationship
await brain.relate(user1Id, user2Id, "friendOf")23. **Follows** - Following relationship
await brain.relate(followerId, influencerId, "follows")24. **Likes** - Liking relationship
await brain.relate(userId, postId, "likes")25. **ReportsTo** - Reporting relationship
await brain.relate(employeeId, managerId, "reportsTo")26. **Supervises** - Supervisory relationship
await brain.relate(managerId, employeeId, "supervises")27. **Mentors** - Mentorship relationship
await brain.relate(seniorId, juniorId, "mentors")28. **Communicates** - Communication relationship
await brain.relate(sender, receiver, "communicates")Descriptive/Functional Types (8)
29. **Describes** - Descriptive relationship
await brain.relate(documentId, conceptId, "describes")30. **Defines** - Definition relationship
await brain.relate(glossaryId, termId, "defines")31. **Categorizes** - Categorization relationship
await brain.relate(taxonomyId, itemId, "categorizes")32. **Measures** - Measurement relationship
await brain.relate(sensorId, metricId, "measures")33. **Evaluates** - Evaluation relationship
await brain.relate(reviewerId, proposalId, "evaluates")34. **Uses** - Utilization relationship
await brain.relate(applicationId, libraryId, "uses")35. **Implements** - Implementation relationship
await brain.relate(classId, interfaceId, "implements")36. **Extends** - Extension relationship
await brain.relate(childClassId, parentClassId, "extends")Enhanced Relationships (4)
37. **Inherits** - Inheritance relationship
await brain.relate(childId, parentId, "inherits")38. **Conflicts** - Conflict relationship
await brain.relate(policy1Id, policy2Id, "conflicts")39. **Synchronizes** - Synchronization relationship
await brain.relate(service1Id, service2Id, "synchronizes")40. **Competes** - Competition relationship
await brain.relate(company1Id, company2Id, "competes")Coverage Completeness Analysis
Is Anything Missing?
While we could add more specific verb types (like "approves", "delegates", "shares"), our current taxonomy is mathematically complete for several reasons:
1. Generic Fallbacks
Customnoun type: For any entity that doesn't fit standard typesRelatedToverb type: For any relationship not explicitly defined- Unlimited metadata: Any additional semantics via properties
2. Semantic Flexibility Through Metadata
Instead of adding dozens more verb types, we use metadata for specificity:
// Instead of adding "approves" verb:
await brain.relate(managerId, requestId, "evaluates", {
result: "approved",
timestamp: Date.now()
})
// Instead of adding "shares" verb:
await brain.relate(userId, documentId, "communicates", {
action: "shared",
permissions: "read-only"
})
// Instead of adding "delegates" verb:
await brain.relate(managerId, taskId, "creates", {
delegatedTo: employeeId,
authority: "full"
})3. Edge Cases Are Covered
Even exotic scenarios work with our current types:
// Quantum computing
const qubitId = await brain.add("Qubit-1", {
type: "thing",
subtype: "quantum_bit",
superposition: [0.707, 0.707]
})
// Cryptocurrency transactions
const txId = await brain.add("Bitcoin Transfer", {
type: "event",
subtype: "blockchain_transaction",
hash: "1A2B3C..."
})
// AI model training
const modelId = await brain.add("Neural Network", {
type: "process",
subtype: "ml_model",
architecture: "transformer"
})The Philosophy: Simplicity Over Specificity
We intentionally keep the type system minimal because:
- Fewer types = easier to learn
- Metadata provides infinite extensibility
- Consistent patterns across domains
- Avoids taxonomy explosion
Industry-Specific Coverage Analysis
Why 42 Nouns + 127 Verbs = Universal Coverage
The combination of 31 noun types and 40 verb types creates 1,240 basic combinations, but with metadata and multi-hop relationships, this expands to infinite expressiveness. Here's how it covers every industry:
Healthcare & Medical
// Patient records with medical history
const patientId = await brain.add("John Doe", {
type: "person",
subtype: "patient",
mrn: "12345"
})
const diagnosisId = await brain.add("Type 2 Diabetes", {
type: "state",
subtype: "diagnosis",
icd10: "E11.9"
})
const medicationId = await brain.add("Metformin", {
type: "thing",
subtype: "medication",
dosage: "500mg"
})
// Medical relationships
await brain.relate(patientId, diagnosisId, "diagnoses")
await brain.relate(medicationId, diagnosisId, "treats")
await brain.relate(doctorId, patientId, "treats")Finance & Banking
// Financial instruments and transactions
const accountId = await brain.add("Checking Account", {
type: "thing",
subtype: "account",
balance: 10000
})
const transactionId = await brain.add("Wire Transfer", {
type: "event",
subtype: "transaction",
amount: 5000
})
const regulationId = await brain.add("GDPR Compliance", {
type: "concept",
subtype: "regulation"
})
// Financial relationships
await brain.relate(customerId, accountId, "owns")
await brain.relate(transactionId, accountId, "modifies")
await brain.relate(accountId, regulationId, "compliesWith")Manufacturing & Supply Chain
// Production and logistics
const factoryId = await brain.add("Plant #3", {
type: "location",
subtype: "facility"
})
const assemblyLineId = await brain.add("Assembly Line A", {
type: "process",
subtype: "production"
})
const componentId = await brain.add("Circuit Board v2", {
type: "thing",
subtype: "component"
})
// Manufacturing relationships
await brain.relate(assemblyLineId, componentId, "produces")
await brain.relate(componentId, productId, "partOf")
await brain.relate(supplierId, componentId, "supplies")Education & Learning
// Educational content and progress
const courseId = await brain.add("Machine Learning 101", {
type: "collection",
subtype: "course"
})
const lessonId = await brain.add("Neural Networks", {
type: "content",
subtype: "lesson"
})
const assessmentId = await brain.add("Final Exam", {
type: "event",
subtype: "assessment"
})
// Educational relationships
await brain.relate(studentId, courseId, "enrolledIn")
await brain.relate(courseId, lessonId, "contains")
await brain.relate(studentId, assessmentId, "completed")Legal & Compliance
// Legal documents and cases
const contractId = await brain.add("Service Agreement", {
type: "document",
subtype: "contract"
})
const clauseId = await brain.add("Liability Clause", {
type: "content",
subtype: "clause"
})
const caseId = await brain.add("Case #2024-1234", {
type: "event",
subtype: "legal_case"
})
// Legal relationships
await brain.relate(contractId, clauseId, "contains")
await brain.relate(party1Id, contractId, "signedBy")
await brain.relate(caseId, contractId, "references")Retail & E-commerce
// Products and customer behavior
const productId = await brain.add("iPhone 15", {
type: "product",
sku: "IP15-128-BLK"
})
const cartId = await brain.add("Shopping Cart", {
type: "collection",
subtype: "cart"
})
const promotionId = await brain.add("Black Friday Sale", {
type: "event",
subtype: "promotion"
})
// Retail relationships
await brain.relate(customerId, productId, "views")
await brain.relate(cartId, productId, "contains")
await brain.relate(promotionId, productId, "applies")Real Estate
// Properties and transactions
const propertyId = await brain.add("123 Main St", {
type: "location",
subtype: "property"
})
const listingId = await brain.add("MLS #789", {
type: "document",
subtype: "listing"
})
const inspectionId = await brain.add("Home Inspection", {
type: "event",
subtype: "inspection"
})
// Real estate relationships
await brain.relate(ownerId, propertyId, "owns")
await brain.relate(listingId, propertyId, "describes")
await brain.relate(inspectionId, propertyId, "evaluates")Government & Public Sector
// Civic data and services
const citizenId = await brain.add("Citizen #123", {
type: "person",
subtype: "citizen"
})
const permitId = await brain.add("Building Permit", {
type: "document",
subtype: "permit"
})
const departmentId = await brain.add("Planning Dept", {
type: "organization",
subtype: "government"
})
// Government relationships
await brain.relate(citizenId, permitId, "requests")
await brain.relate(departmentId, permitId, "issues")
await brain.relate(permitId, propertyId, "authorizes")Why This Covers All Knowledge
1. **Mathematical Completeness**
The noun-verb model forms a complete graph structure where:
- Any entity can be represented as a noun
- Any relationship can be represented as a verb
- Complex knowledge emerges from simple combinations
2. **Semantic Completeness**
Every piece of human knowledge falls into one of these categories:
- Entities (who, what, where) → Nouns
- Actions (how, when, why) → Verbs
- Attributes (properties) → Metadata
- Context (conditions) → Graph structure
3. **Compositional Power**
Simple types combine to represent complex knowledge:
// Complex knowledge from simple building blocks
const researchPaper = await brain.add("AI Ethics Study", {
type: "document"
})
const researcher = await brain.add("Dr. Smith", {
type: "person"
})
const institution = await brain.add("MIT", {
type: "organization"
})
const concept = await brain.add("AI Ethics", {
type: "concept"
})
// Rich knowledge graph emerges
await brain.relate(researcher, researchPaper, "authors")
await brain.relate(researcher, institution, "affiliated")
await brain.relate(researchPaper, concept, "explores")
await brain.relate(institution, researchPaper, "publishes")4. **Domain Independence**
The same types work across all domains:
Science:
await brain.add("H2O", { type: "thing", category: "molecule" })
await brain.add("Photosynthesis", { type: "process" })
await brain.relate(moleculeId, processId, "participates")Business:
await brain.add("Q3 Revenue", { type: "metric", value: 10000000 })
await brain.add("Sales Team", { type: "organization" })
await brain.relate(teamId, metricId, "achieves")Social:
await brain.add("John", { type: "person" })
await brain.add("Community Group", { type: "organization" })
await brain.relate(personId, groupId, "joins")5. **Temporal Coverage**
Handles all temporal aspects:
// Past
await brain.relate(personId, companyId, "worked", {
from: "2010", to: "2020"
})
// Present
await brain.relate(personId, projectId, "manages", {
since: "2024-01-01"
})
// Future
await brain.relate(eventId, venueId, "scheduled", {
date: "2025-06-15"
})6. **Hierarchical Representation**
Supports all levels of abstraction:
// Micro level
await brain.add("Electron", { type: "thing", scale: "quantum" })
// Macro level
await brain.add("Solar System", { type: "place", scale: "astronomical" })
// Abstract level
await brain.add("Justice", { type: "concept", domain: "philosophy" })Extensibility
While the core types cover all knowledge, you can extend with domain-specific subtypes:
// Extend person for medical domain
await brain.add("Patient #12345", {
type: "person",
subtype: "patient",
medicalRecord: "MR-12345"
})
// Extend document for legal domain
await brain.add("Contract ABC", {
type: "document",
subtype: "contract",
jurisdiction: "California"
})
// Custom verb for specific domain
await brain.relate(lawyerId, contractId, "negotiates", {
verbSubtype: "legal-action",
billableHours: 10
})Mathematical Proof of Universal Coverage
The noun-verb taxonomy achieves Turing completeness for knowledge representation:
- Storage Completeness: Any data can be stored as nouns
- Relational Completeness: Any relationship can be expressed as verbs
- Property Completeness: Unlimited metadata captures all attributes
- Graph Completeness: Multi-hop traversals express any complexity
- Temporal Completeness: Time metadata handles all temporal aspects
- Semantic Completeness: Vector embeddings capture meaning and similarity
The Infinity Formula
Expressiveness = (31 nouns × 40 verbs) × ∞ metadata × ∞ graph depth
= 1,240 × ∞ × ∞
= ∞ (Infinite Expressiveness)This mathematical infinity means Brainy can represent:
- All Scientific Knowledge: From quantum physics to molecular biology
- All Business Data: From transactions to supply chains
- All Social Graphs: From friendships to organizational hierarchies
- All Historical Records: From events to archaeological findings
- All Creative Works: From art metadata to story relationships
- All Technical Systems: From software architecture to network topology
- All Personal Information: From memories to preferences
- Literally ANY Information That Can Exist
Real-World Proof: Unmappable Becomes Mappable
Even the most complex scenarios map naturally:
// String Theory - 11-dimensional physics
const braneId = await brain.add("D3-Brane", {
type: "concept",
dimensions: 11,
vibrational_modes: ["0,1", "1,0", "2,1"]
})
// Consciousness - The "hard problem" of philosophy
const qualiaId = await brain.add("Red Qualia", {
type: "concept",
subtype: "phenomenal_experience",
ineffable: true
})
// Time Travel Paradoxes
const futureEvent = await brain.add("Future Effect", {
type: "event",
temporal_position: "future"
})
const pastCause = await brain.add("Past Cause", {
type: "event",
temporal_position: "past"
})
await brain.relate(futureEvent, pastCause, "causes", {
paradox_type: "bootstrap"
})If it exists, thinks, happens, or can be imagined—Brainy can model it.
Conclusion
The Noun-Verb taxonomy in Brainy 2.0 provides a natural, flexible, and powerful way to model any domain. By thinking in terms of entities and their relationships, you can build everything from simple data stores to complex knowledge graphs while maintaining code clarity and query simplicity.