An RDF Triple is a tuple of a subject, predicate and object value as follows:
Info
graph LR; Subject-- Predicate -->Object;
Item | Purpose |
---|---|
Subject | The resource being described by the triple |
Predicate | The relationship between subject and object |
Object | The resource related to the subject |
Example
graph LR; A(Obsidian) B(notes taking app) A -- is a --> B;
Example
graph LR; A(My water bottle) B(empty) A -- is --> B;