NQuads
N-Quads is a line-based RDF data serialization format used to encode quads: subject, predicate, object, and graph name (context). It is a direct extension of N-Triples and is designed for easy streaming and line-by-line processing of RDF datasets.
In N-Quads, each line represents a single quad. Terms are serialized as follows: IRIs are enclosed in
N-Quads is commonly used for exporting and exchanging RDF datasets, especially when a simple, line-oriented format
<http://example.org/s1> <http://example.org/p1> <http://example.org/o1> <http://example.org/g1> .
<http://example.org/s2> <http://example.org/p2> "literal"@en <http://example.org/g2> .