1@base  <http://example.com> .
2@prefix dcterms: <http://purl.org/dc/terms/>. @prefix xs: <http://www.w3.org/2001/XMLSchema> .
3@prefix mads: <http://www.loc.gov/mads/rdf/v1#> .
4@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
5@PREFIX dc: <http://purl.org/dc/elements/1.1/>  # SPARQL-like syntax is OK
6@prefix : <http://xmlns.com/foaf/0.1/> .  # empty prefix is OK
7
8<http://example.org/#spiderman> <http://www.perceive.net/schemas/relationship/enemyOf> <http://example.org/#green-goblin> .
9
10<#doc1> a <#document>
11	dc:creator "Smith", "Jones";
12	:knows <http://getopenid.com/jsmith>
13	dcterms:hasPart [ # A comment
14		dc:title "Some title", "Some other title";
15		dc:creator "برشت، برتولد"@ar;
16		dc:date "2009"^^xs:date
17	];
18	dc:title "A sample title", 23.0;
19	dcterms:isPartOf [
20		dc:title "another", "title"
21	] ;
22	:exists true .
23
24<http://data.ub.uio.no/realfagstermer/006839> a mads:Topic,
25    skos:Concept ;
26    dcterms:created "2014-08-25"^^xsd:date ;
27    dcterms:modified "2014-11-12"^^xsd:date ;
28    dcterms:identifier "REAL006839" ;
29    skos:prefLabel "Flerbørstemarker"@nb,
30        "Polychaeta"@la ;
31    skos:altLabel "Flerbørsteormer"@nb,
32        "Mangebørstemark"@nb,
33        "Mangebørsteormer"@nb,
34        "Havbørsteormer"@nb,
35        "Havbørstemarker"@nb,
36        "Polycheter"@nb.
37    skos:inScheme <http://data.ub.uio.no/realfagstermer/> ;
38    skos:narrower <http://data.ub.uio.no/realfagstermer/018529>,
39        <http://data.ub.uio.no/realfagstermer/024538>,
40        <http://data.ub.uio.no/realfagstermer/026723> ;
41    skos:exactMatch <http://ntnu.no/ub/data/tekord#NTUB17114>,
42        <http://dewey.info/class/592.62/e23/>,
43        <http://aims.fao.org/aos/agrovoc/c_29110> .
44