
Prefixes
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs: http://www.w3.org/2000/01/rdf-schema#
owl: http://www.w3.org/2002/07/owl#
skos: http://www.w3.org/2004/02/skos/core#
dc: http://purl.org/dc/elements/1.1/
dct: http://purl.org/dc/terms/
xsd: http://www.w3.org/2001/XMLSchema#
dbt: http://discobits.org/ontology#
dap: http://trialox.org/2009/03/dap#
perm: http://trialox.org/2008/10/permission#
osgi: http://trialox.org/2008/11/osgi#
tpl: http://trialox.org/2009/02/templating#
trdr: http://trialox.org/2009/04/typerendering#
list: http://trialox.org/2009/04/list#
An Example in Turtle
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@base <http://example.org/ns/> .
<MyImage> rdf:type foaf:Image ;
rdf:type dbt:InfoDiscoBit ;
dc:publisher <A0> ;
foaf:maker <A1> ;
dct:subject <SiberianTiger> ;
dct:subject <Public> ;
dct:created 25.03.2009 ;
dct:modified 29.03.2009 ;
dct:hasVersion <V0> .
<SiberianTiger> rdf:type skos:Concept ;
skos:prefLabel "Siberian Tiger"@en ;
skos:altLabel "Ussuri Tiger"@en ;
skos:broader <Tiger> .
<Tiger> rdf:type skos:Concept ;
skos:prefLabel "Tiger"@en .
<Public> rdf:type skos:Concept ;
skos:prefLabel "public" .
<A0> rdf:type foaf:Person ;
foaf:name "Hasan" ;
foaf:mbox "mailto:hasan@trialox.org" .
<A1> rdf:type foaf:Person ;
foaf:name "Tsuy" ;
foaf:mbox "mailto:tsuy@trialox.org" .