Date: February 18 2022
Summary: Types of data storage formats available for RDF
Keywords: #rdf #formats #data #turtle #xml #storage #archive
W3C, "RDF 1.1 Concepts and Abstract Syntax." https://www.w3.org/TR/rdf11-concepts/ (accessed Feb. 18, 2022).
There are many different file storage formats for RDF reified data.
The Turtle format (file extension .ttl
) is one example of a storage format. It takes the following form:
<Subject> <Predicate> <Resource> .
If I have the statement:
The sky is colored blue.
That can be written in the form:
<sky> <is colored> <blue> .
Another example is utilizing the popular XML format for representing RDF data.
If I have the statement:
The sky is colored blue.
That can be written in the form:
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:j.0="http://some.fakeurl.com/fake/is " >
<rdf:Description rdf:about="sky">
<j.0:colored rdf:resource="blue"/>
</rdf:Description>
</rdf:RDF>
Zelko, Jacob. RDF Data Storage Formats. https://jacobzelko.com/02182022172731-rdf-file-formats. February 18 2022.