Start implementing infering triples.
[htsworkflow.git] / htsworkflow / util / schemas / dc.turtle
1 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
2 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
3 @prefix owl: <http://www.w3.org/2002/07/owl#> .
4 @prefix dc: <http://purl.org/dc/elements/1.1/> .
5 @prefix grddl: <http://www.w3.org/2003/g/data-view#> .
6 @prefix xml: <http://www.w3.org/XML/1998/namespace> .
7 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
8 @prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
9 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
10 @prefix wot: <http://xmlns.com/wot/0.1/> .
11
12 # this is just a subset of dublin core
13 <http://purl.org/dc/elements/1.1/>
14     dc:title "DCMI Metadata Terms" ;
15     rdfs:comment "Metadata terms maintained by the Dublin Core Metadata Initiative" ;
16     a owl:Ontology ;
17     rdfs:seeAlso <http://dublincore.org/documents/dcmi-terms/> .
18
19 dc:title
20     a rdf:Property ;
21     rdfs:comment "A name given to the resource"@en ;
22     rdfs:range rdfs:Literal .
23
24 dc:description 
25     a rdf:Property ;
26     rdfs:label "Description"@en ;
27     rdfs:comment "An account of the resource"@en ;
28     rdfs:range rdfs:Literal .