Atomic knowledge unit
Every piece of information in a World is stored as a triple. A triple consists of three components:- Subject: A reference to the item you are describing, for example, “Ethan”.
- Predicate: A reference to the relationship or property, for example, “worksAt”.
- Object: The literal value or a reference to another item related to the subject, for example, “Wazoo”.
Graph formation
Triples are powerful because they are universal. You can express everything from simple facts to complex hierarchies through this structure. As you add multiple triples, they naturally form a Graph:- “Ethan worksAt Wazoo”
- “Wazoo locatedIn San Francisco”
- “Gregory worksAt Wazoo”
Item identifiers
In Worlds, subjects and objects are often identified by unique IDs (URIs). This ensures that references to “Wazoo” always point to the same global item in the graph. For a deeper dive into node identifiers, complex namespaces, and extending graph topologies, check out our Knowledge Graphs guide.Summary
- Subject: The “who” or “what”.
- Predicate: The relationship.
- Object: The target or value.