-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDISCBiomedicalConcept.ttl
211 lines (209 loc) · 5.9 KB
/
CDISCBiomedicalConcept.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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# baseURI: http://www.assero.co.uk/CDISCBiomedicalConcept
# imports: http://purl.org/dc/elements/1.1/
# imports: http://purl.org/dc/terms/
# imports: http://www.assero.co.uk/BRIDG
# imports: http://www.assero.co.uk/ISO21090
# imports: http://www.w3.org/2004/02/skos/core
@prefix : <http://www.assero.co.uk/CDISCBiomedicalConcept#> .
@prefix bridg: <http://www.assero.co.uk/BRIDG#> .
@prefix iso21090: <http://www.assero.co.uk/ISO21090#> .
@prefix isoC: <http://www.assero.co.uk/ISO11179Concepts#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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#> .
<http://www.assero.co.uk/CDISCBiomedicalConcept>
rdf:type owl:Ontology ;
owl:imports dc: ;
owl:imports <http://purl.org/dc/terms/> ;
owl:imports <http://www.assero.co.uk/BRIDG> ;
owl:imports <http://www.assero.co.uk/ISO21090> ;
owl:imports <http://www.w3.org/2004/02/skos/core> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
.
:ComplexNode
rdf:type owl:Class ;
rdfs:label "Node (either BRIDG class & attribute) or property that contains a complex data type"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
.
:Datatype
rdf:type owl:Class ;
rdfs:label "Datatype"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
.
:Item
rdf:type owl:Class ;
rdfs:label "An item within a Biomedical Concept Template. A reference to a BRIDG class and attribute used."^^xsd:string ;
rdfs:subClassOf :ComplexNode ;
.
:Property
rdf:type owl:Class ;
rdfs:label "ISO21090Property"^^xsd:string ;
rdfs:subClassOf :ComplexNode ;
.
:PropertyValue
rdf:type owl:Class ;
rdfs:label "Value"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
.
:BCItem
rdf:type owl:Class ;
rdfs:label "RCItem"^^xsd:string ;
rdfs:subClassOf :Item ;
.
:BCTItem
rdf:type owl:Class ;
rdfs:label "RCTItem"^^xsd:string ;
rdfs:subClassOf :Item ;
.
:BiomedicalConcept
rdf:type owl:Class ;
rdfs:label "A CDISC Biomedical Concept Template or Instance of a Template"^^xsd:string ;
rdfs:subClassOf isoC:Concept ;
.
:BiomedicalConceptInstance
rdf:type owl:Class ;
rdfs:label "An Biomedical Concept instance"^^xsd:string ;
rdfs:subClassOf :BiomedicalConcept ;
.
:BiomedicalConceptTemplate
rdf:type owl:Class ;
rdfs:label "A template (or pattern) for a CDISC Biomedical Concept"^^xsd:string ;
rdfs:subClassOf :BiomedicalConcept ;
.
:alias
rdf:type owl:DatatypeProperty ;
rdfs:domain :ComplexNode ;
rdfs:label "A short hand name for the item to allow easy use"^^xsd:string ;
rdfs:range xsd:string ;
.
:hasAttributeRef
rdf:type owl:ObjectProperty ;
rdfs:domain :Item ;
rdfs:label "Reference to the BRIDG attribute"^^xsd:string ;
rdfs:range bridg:Attribute ;
.
:basedOn
rdf:type owl:ObjectProperty ;
rdfs:domain :BiomedicalConceptInstance ;
rdfs:label "Reference to the template"^^xsd:string ;
rdfs:range :BiomedicalConceptTemplate ;
.
:hasClassRef
rdf:type owl:ObjectProperty ;
rdfs:domain :Item ;
rdfs:label "Reference to the BRIDG class"^^xsd:string ;
rdfs:range bridg:Class ;
.
:hasComplexDatatype
rdf:type owl:ObjectProperty ;
rdfs:domain :Property ;
rdfs:label "Has a complext data type"^^xsd:string ;
rdfs:range :Datatype ;
owl:propertyDisjointWith :hasValue ;
.
:hasDataType
rdf:type owl:ObjectProperty ;
rdfs:domain :Item ;
rdfs:label "Object property 1"^^xsd:string ;
rdfs:range :Datatype ;
.
:hasDatatypeRef
rdf:type owl:ObjectProperty ;
rdfs:domain :Datatype ;
rdfs:label "datatype ref"^^xsd:string ;
rdfs:range iso21090:Datatype ;
.
:hasItem
rdf:type owl:ObjectProperty ;
rdfs:domain :BiomedicalConcept ;
rdfs:label "Link to the constiuent parts of the Biomedical Concept (Instance or Template)"^^xsd:string ;
rdfs:range :Item ;
.
:hasProperty
rdf:type owl:ObjectProperty ;
rdfs:domain :Datatype ;
rdfs:label "Has A Property"^^xsd:string ;
rdfs:range :Property ;
owl:inverseOf :isPropertyOf ;
.
:hasValue
rdf:type owl:ObjectProperty ;
rdfs:domain :Property ;
rdfs:label "has a Simple Datatype"^^xsd:string ;
rdfs:range :PropertyValue ;
owl:propertyDisjointWith :hasComplexDatatype ;
.
:isDatatypeOf
rdf:type owl:ObjectProperty ;
rdfs:domain :Datatype ;
rdfs:range :Item ;
owl:inverseOf :hasDataType ;
.
:isItemOf
rdf:type owl:ObjectProperty ;
rdfs:domain :Item ;
rdfs:range :BiomedicalConcept ;
owl:inverseOf :hasItem ;
.
:isPropertyOf
rdf:type owl:ObjectProperty ;
rdfs:domain :Property ;
rdfs:range :Datatype ;
owl:inverseOf :hasProperty ;
.
:qText
rdf:type owl:DatatypeProperty ;
rdfs:domain :Property ;
rdfs:label "The question text"^^xsd:string ;
rdfs:range xsd:string ;
.
:pText
rdf:type owl:DatatypeProperty ;
rdfs:domain :Property ;
rdfs:label "The prompt text"^^xsd:string ;
rdfs:range xsd:string ;
.
:enabled
rdf:type owl:DatatypeProperty ;
rdfs:domain :Property ;
rdfs:label "The property is enabled"^^xsd:string ;
rdfs:range xsd:boolean ;
.
:collect
rdf:type owl:DatatypeProperty ;
rdfs:domain :Property ;
rdfs:label "The property can be collected (rather than a fixed value)"^^xsd:string ;
rdfs:range xsd:boolean ;
.
:simpleDatatype
rdf:type owl:datatypeProperty ;
rdfs:domain :Property ;
rdfs:label "The simple datatype for the property. Derived from the ISO21090 datatype"^^xsd:string ;
rdfs:range xsd:string ;
.
:nextItem
rdf:type owl:ObjectProperty ;
rdfs:domain :Item ;
rdfs:label "next item"^^xsd:string ;
rdfs:range :Item ;
.
:nextValue
rdf:type owl:ObjectProperty ;
rdfs:domain :PropertyValue ;
rdfs:label "next value"^^xsd:string ;
rdfs:range :PropertyValue ;
.
:simpleDatatype
rdf:type owl:DatatypeProperty ;
rdfs:domain :Property ;
rdfs:label "Simple Datatype"^^xsd:string ;
rdfs:range xsd:boolean ;
.
:value
rdf:type owl:DatatypeProperty ;
rdfs:domain :PropertyValue ;
rdfs:label "The value in the datatype property"^^xsd:string ;
rdfs:range xsd:string ;
.