Resource Description Framework: Subject - Predicate - Object

RDF is not a Language, it is a method for describing and exchanging graph data. RDF can be serialized by different Data Serialization Methods, one example of which is JSON-LD, another is Turtle. Is is a triple (or quad) store for:

Subject - Predicate - Object (and optional context)

…using URIs.

Example

In a modified Turtle form:

<http://example.org/person/Mark_Twain>
   <http://example.org/relation/author>
   <http://example.org/books/Huckleberry_Finn> .

Source

  • Wikipedia