summaryrefslogtreecommitdiff
path: root/src/ontologies/20-dc.ontology
blob: d7da6882aa2a659960deb54bfb365f9b5f47b0f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix nrl: <http://tracker.api.gnome.org/ontology/v3/nrl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

dc: a nrl:Namespace, nrl:Ontology ;
	nrl:prefix "dc" ;
	nrl:lastModified "2018-08-25T11:00:00Z" .

dc:title a rdf:Property ;
	rdfs:label "Title" ;
	rdfs:comment "A name given to the resource." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string ;
	nrl:weight 10 .

dc:creator a rdf:Property ;
	rdfs:label "Creator" ;
	rdfs:comment "An entity primarily responsible for making the resource." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string ;
	nrl:weight 4 .

dc:subject a rdf:Property ;
	rdfs:label "Subject" ;
	rdfs:comment "The topic of the resource." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string ;
	nrl:weight 5 .

dc:description a rdf:Property ;
	rdfs:label "Description" ;
	rdfs:comment "An account of the resource." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string ;
	nrl:weight 3 .

dc:publisher a rdf:Property ;
	rdfs:label "Publisher" ;
	rdfs:comment "An entity responsible for making the resource available." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string ;
	nrl:weight 4 .

dc:contributor a rdf:Property ;
	rdfs:label "Contributor" ;
	rdfs:comment "An entity responsible for making contributions to the resource." ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string ;
	nrl:weight 4 .

dc:date a rdf:Property ;
	rdfs:label "Date" ;
	rdfs:comment "A point or period of time associated with an event in the lifecycle of the resource." ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:dateTime .

dc:type a rdf:Property ;
	rdfs:label "Type" ;
	rdfs:comment "The nature or genre of the resource." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .

dc:format a rdf:Property ;
	rdfs:label "Format" ;
	rdfs:comment "The file format, physical medium, or dimensions of the resource." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .

dc:identifier a rdf:Property ;
	rdfs:label "Identifier" ;
	rdfs:comment "An unambiguous reference to the resource within a given context." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .

dc:source a rdf:Property ;
	rdfs:label "Source" ;
	rdfs:comment "A related resource from which the described resource is derived." ;
	rdfs:domain rdfs:Resource ;
	rdfs:range rdfs:Resource .

dc:language a rdf:Property ;
	rdfs:label "Language" ;
	rdfs:comment "A language of the resource." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .

dc:relation a rdf:Property ;
	rdfs:label "Relation" ;
	rdfs:comment "A related resource." ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .

dc:coverage a rdf:Property ;
	rdfs:label "Coverage" ;
	rdfs:comment "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant." ;
	nrl:maxCardinality 1 ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .

dc:rights a rdf:Property ;
	rdfs:label "Rights" ;
	rdfs:comment "Information about rights held in and over the resource." ;
	rdfs:domain rdfs:Resource ;
	rdfs:range xsd:string .