-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocabulary.ttl
37 lines (29 loc) · 1022 Bytes
/
vocabulary.ttl
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
@prefix tridoc: <https://vocab.tridoc.me/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
tridoc:Tag a rdfs:Class .
tridoc:ParameterizableTag a rdfs:Class ;
rdfs:commment "this is something that requires a parameter value to become an actual tag" .
tridoc:ParameterizedTag a rdfs:Class ;
rdfs:subClassOf tridoc:Tag .
tridoc:label
rdf:type rdf:Property ;
rdfs:domain [
owl:unionOf (tridoc:ParameterizableTag tridoc:Tag)
];
rdfs:range xsd:String.
tridoc:tag
rdf:type rdf:Property ;
rdfs:range tridoc:Tag .
tridoc:parameterizableTag
rdf:type rdf:Property ;
rdfs:range tridoc:ParameterizableTag ;
rdfs:domain tridoc:ParameterizedTag .
tridoc:value
rdf:type rdf:Property ;
rdfs:domain tridoc:ParameterizedTag .
tridoc:valueType
rdf:type rdf:Property ;
rdfs:domain tridoc:ParameterizableTag .