-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpanulla-rubric.owl
170 lines (170 loc) · 7.99 KB
/
panulla-rubric.owl
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
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns="http://rubrichub.org/owl/rubric/2010/01/rubric.owl#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://rubrichub.org/owl/rubric/2010/01/rubric.owl">
<owl:Ontology rdf:about="">
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
>1.0</owl:versionInfo>
</owl:Ontology>
<owl:Class rdf:ID="AnalyticRubric">
<rdfs:subClassOf>
<owl:Class rdf:ID="Rubric"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="LevelList">
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:allValuesFrom>
<owl:Class rdf:ID="Level"/>
</owl:allValuesFrom>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#first"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:allValuesFrom rdf:resource="#LevelList"/>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="Scope">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:about="#Level">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:ID="ChecklistRubric">
<rdfs:subClassOf>
<owl:Class rdf:about="#Rubric"/>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:ID="CriteriaList">
<rdfs:subClassOf>
<owl:Restriction>
<owl:allValuesFrom rdf:resource="#CriteriaList"/>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:allValuesFrom>
<owl:Class rdf:ID="Criterion"/>
</owl:allValuesFrom>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#first"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
</owl:Class>
<owl:Class rdf:about="#Criterion">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:ID="GridRubric">
<rdfs:subClassOf rdf:resource="#AnalyticRubric"/>
</owl:Class>
<owl:Class rdf:ID="CategoryList">
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:allValuesFrom>
<owl:Class rdf:ID="Category"/>
</owl:allValuesFrom>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#first"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:allValuesFrom rdf:resource="#CategoryList"/>
<owl:onProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"/>
</owl:Restriction>
</rdfs:subClassOf>
</owl:Class>
<owl:Class rdf:about="#Rubric">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:ID="HolisticRubric">
<rdfs:subClassOf rdf:resource="#Rubric"/>
</owl:Class>
<owl:Class rdf:about="#Category">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:ID="ListObjectProperty">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</owl:Class>
<owl:ObjectProperty rdf:ID="hasScope">
<rdfs:domain rdf:resource="#Rubric"/>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<rdfs:range rdf:resource="#Scope"/>
</owl:ObjectProperty>
<owl:DatatypeProperty rdf:ID="feedback">
<rdfs:domain rdf:resource="#Level"/>
<rdfs:comment>Feedback text for a criterion or level to be presented to the student providing guidance.</rdfs:comment>
<rdfs:domain rdf:resource="#Criterion"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="benchmark">
<rdfs:domain rdf:resource="#Level"/>
<rdfs:comment>A qualitative description used as a basis of selecting level of achievement for a given criterion.</rdfs:comment>
<owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:minCardinality>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="score">
<rdfs:domain rdf:resource="#Level"/>
<rdfs:comment>Quantitative description of this level. Used for evaluation and calculation of total score.</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="title">
<rdfs:domain rdf:resource="#Criterion"/>
<rdfs:comment>Human readable label for this rubric element.</rdfs:comment>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<rdfs:domain rdf:resource="#Rubric"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="#Category"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="quality">
<rdfs:domain rdf:resource="#Level"/>
<rdfs:comment>Qualitative description of this level. Used in cases where no score is present.</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="weight">
<rdfs:comment>Numeric factor used to adjust the weight of this criterion in an overall score for this rubric.</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<rdfs:domain rdf:resource="#Criterion"/>
</owl:DatatypeProperty>
<owl:DatatypeProperty rdf:ID="key">
<rdfs:comment>An alternative identifier for this rubric or criterion.</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="#Rubric"/>
<rdfs:domain rdf:resource="#Criterion"/>
</owl:DatatypeProperty>
<Scope rdf:ID="Team"/>
<ListObjectProperty rdf:ID="hasCriteria">
<rdfs:domain rdf:resource="#Category"/>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<rdfs:range rdf:resource="#CriteriaList"/>
</ListObjectProperty>
<Scope rdf:ID="Self"/>
<ListObjectProperty rdf:ID="hasCategories">
<rdfs:range rdf:resource="#CategoryList"/>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<rdfs:domain rdf:resource="#Rubric"/>
</ListObjectProperty>
<ListObjectProperty rdf:ID="hasLevels">
<rdfs:range rdf:resource="#LevelList"/>
<owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"
>1</owl:maxCardinality>
<rdfs:domain rdf:resource="#Criterion"/>
</ListObjectProperty>
<Scope rdf:ID="Individual"/>
</rdf:RDF>