Mercurial > hg > sv-dependency-builds
comparison src/serd-0.18.2/tests/rdfs-namespace.ttl @ 0:c7265573341e
Import initial set of sources
author | Chris Cannam |
---|---|
date | Mon, 18 Mar 2013 14:12:14 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c7265573341e |
---|---|
1 # RDFS Namespace document converted into Turtle | |
2 | |
3 @prefix : <http://www.w3.org/2000/01/rdf-schema#> . | |
4 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
5 | |
6 rdf:type a rdf:Property; | |
7 :comment "Indicates membership of a class"; | |
8 :domain :Resource; | |
9 :isDefinedBy rdf:; | |
10 :label "type"@en; | |
11 :range :Class . | |
12 | |
13 rdf:Alt a :Class; | |
14 :comment "A collection of alternatives."@en; | |
15 :isDefinedBy rdf:; | |
16 :label "Alt"@en; | |
17 :subClassOf :Container . | |
18 | |
19 rdf:Bag a :Class; | |
20 :comment "An unordered collection."@en; | |
21 :isDefinedBy rdf:; | |
22 :label "Bag"@en; | |
23 :subClassOf :Container . | |
24 | |
25 rdf:Property a :Class; | |
26 :comment "The concept of a property."; | |
27 :isDefinedBy rdf:; | |
28 :label "Property"@en; | |
29 :subClassOf :Resource . | |
30 | |
31 rdf:Seq a :Class; | |
32 :comment "An ordered collection."@en; | |
33 :isDefinedBy rdf:; | |
34 :label "Seq"@en; | |
35 :subClassOf :Container . | |
36 | |
37 rdf:Statement a :Class; | |
38 :comment "The class of RDF statements."; | |
39 :isDefinedBy rdf:; | |
40 :label "Statement"@en; | |
41 :subClassOf :Resource . | |
42 | |
43 rdf:object a rdf:Property; | |
44 :comment "The object of an RDF statement."; | |
45 :domain rdf:Statement; | |
46 :isDefinedBy rdf:; | |
47 :label "object"@en . | |
48 | |
49 rdf:predicate a rdf:Property; | |
50 :comment "the predicate of an RDF statement."; | |
51 :domain rdf:Statement; | |
52 :isDefinedBy rdf:; | |
53 :label "predicate"@en; | |
54 :range rdf:Property . | |
55 | |
56 rdf:subject a rdf:Property; | |
57 :comment "The subject of an RDF statement."; | |
58 :domain rdf:Statement; | |
59 :isDefinedBy rdf:; | |
60 :label "subject"@en; | |
61 :range :Resource . | |
62 | |
63 rdf:value a rdf:Property; | |
64 :comment "Identifies the principal value (usually a string) of a property when the property value is a structured resource"; | |
65 :domain :Resource; | |
66 :isDefinedBy rdf:; | |
67 :label "value"@en . | |
68 | |
69 : :seeAlso <http://www.w3.org/2000/01/rdf-schema-more> . | |
70 | |
71 :Class a :Class; | |
72 :comment "The concept of Class"; | |
73 :isDefinedBy :; | |
74 :label "Class"@en; | |
75 :subClassOf :Resource . | |
76 | |
77 :Container a :Class; | |
78 :comment "This represents the set Containers."; | |
79 :isDefinedBy :; | |
80 :label "Container"@en; | |
81 :subClassOf :Resource . | |
82 | |
83 :ContainerMembershipProperty a :Class; | |
84 :comment "The container membership properties, rdf:1, rdf:2, ..., all of which are sub-properties of 'member'."; | |
85 :isDefinedBy :; | |
86 :label "ContainerMembershipProperty"@en; | |
87 :subClassOf rdf:Property . | |
88 | |
89 :Literal a :Class; | |
90 :comment "This represents the set of atomic values, eg. textual strings."; | |
91 :isDefinedBy :; | |
92 :label "Literal"@en . | |
93 | |
94 :Resource a :Class; | |
95 :comment "The class resource, everything."; | |
96 :isDefinedBy :; | |
97 :label "Resource"@en . | |
98 | |
99 :comment a rdf:Property; | |
100 :comment "Use this for descriptions"; | |
101 :domain :Resource; | |
102 :isDefinedBy :; | |
103 :label "comment"@en; | |
104 :range :Literal . | |
105 | |
106 :domain a rdf:Property; | |
107 :comment "A domain class for a property type"; | |
108 :domain rdf:Property; | |
109 :isDefinedBy :; | |
110 :label "domain"@en; | |
111 :range :Class . | |
112 | |
113 :isDefinedBy a rdf:Property; | |
114 :comment "Indicates the namespace of a resource"; | |
115 :domain :Resource; | |
116 :isDefinedBy :; | |
117 :label "isDefinedBy"@en; | |
118 :range :Resource; | |
119 :subPropertyOf :seeAlso . | |
120 | |
121 :label a rdf:Property; | |
122 :comment "Provides a human-readable version of a resource name."; | |
123 :domain :Resource; | |
124 :isDefinedBy :; | |
125 :label "label"@en; | |
126 :range :Literal . | |
127 | |
128 :member a rdf:Property; | |
129 :comment "a member of a container"; | |
130 :domain :Container; | |
131 :isDefinedBy :; | |
132 :label "member"@en . | |
133 | |
134 :range a rdf:Property; | |
135 :comment "A range class for a property type"; | |
136 :domain rdf:Property; | |
137 :isDefinedBy :; | |
138 :label "range"@en; | |
139 :range :Class . | |
140 | |
141 :seeAlso a rdf:Property; | |
142 :comment "A resource that provides information about the subject resource"; | |
143 :domain :Resource; | |
144 :isDefinedBy :; | |
145 :label "seeAlso"@en; | |
146 :range :Resource . | |
147 | |
148 :subClassOf a rdf:Property; | |
149 :comment "Indicates membership of a class"; | |
150 :domain :Class; | |
151 :isDefinedBy :; | |
152 :label "subClassOf"@en; | |
153 :range :Class . | |
154 | |
155 :subPropertyOf a rdf:Property; | |
156 :comment "Indicates specialization of properties"; | |
157 :domain rdf:Property; | |
158 :isDefinedBy :; | |
159 :label "subPropertyOf"@en; | |
160 :range rdf:Property . |