Turtle RDF Triple Syntax
(Redirected from Turtle RDF Syntax)
Jump to navigation
Jump to search
A Turtle RDF Triple Syntax is a human-friendly syntax for expressing entity triples in the RDF data model.
- Example(s):
- Turtle Syntax, 2014.
- ...
- Counter-Example(s):
- See: URI, Semantic Web, Resource Description Framework, N-Triples.
References
2023
- (Wikipedia, 2023) ⇒ https://en.wikipedia.org/wiki/Turtle_(syntax) Retrieved:2023-7-17.
- In computing, Terse RDF Triple Language (Turtle) is a syntax and file format for expressing data in the Resource Description Framework (RDF) data model. Turtle syntax is similar to that of SPARQL, an RDF query language. It is a common data format for storing RDF data, along with N-Triples, JSON-LD and RDF/XML.
RDF represents information using semantic triples, which comprise a subject, predicate, and object. Each item in the triple is expressed as a Web URI. Turtle provides a way to group three URIs to make a triple, and provides ways to abbreviate such information, for example by factoring out common portions of URIs. For example, information about Huckleberry Finn could be expressed as:
- In computing, Terse RDF Triple Language (Turtle) is a syntax and file format for expressing data in the Resource Description Framework (RDF) data model. Turtle syntax is similar to that of SPARQL, an RDF query language. It is a common data format for storing RDF data, along with N-Triples, JSON-LD and RDF/XML.
<http://example.org/person/Mark_Twain> <http://example.org/relation/author> <http://example.org/books/Huckleberry_Finn> .
2016
- (Wikipedia, 2016) ⇒ https://en.wikipedia.org/wiki/Turtle_(syntax) Retrieved:2016-5-23.
- Turtle (Terse RDF Triple Language) is a format for expressing data in the Resource Description Framework (RDF) data model with a syntax similar to SPARQL. RDF, in turn, represents information using “triples", each of which consists of a subject, a predicate, and an object. Each of those items is expressed as a Web URI. ...