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. Is is a triple (or quad) store for:
Subject - Predicate - Object (and context)
…using URIs.
Example
<http://example.org/person/Mark_Twain>
<http://example.org/relation/author>
<http://example.org/books/Huckleberry_Finn> .
Source
- Wikipedia