-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontology.owl
72 lines (64 loc) · 2.45 KB
/
ontology.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
<?xml version="1.0"?>
<!DOCTYPE Ontology [
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY xml "http://www.w3.org/XML/1998/namespace" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
]>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://www.semanticweb.org/developer/ontologies/2015/10/untitled-ontology-2"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
ontologyIRI="http://www.semanticweb.org/developer/ontologies/2015/10/untitled-ontology-2">
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Declaration>
<Class IRI="#Mark"/>
</Declaration>
<Declaration>
<DataProperty IRI="#Item"/>
</Declaration>
<Declaration>
<DataProperty IRI="#Rate"/>
</Declaration>
<Declaration>
<DataProperty IRI="#UserId"/>
</Declaration>
<DataPropertyDomain>
<DataProperty IRI="#Item"/>
<Class IRI="#Mark"/>
</DataPropertyDomain>
<DataPropertyDomain>
<DataProperty IRI="#Rate"/>
<Class IRI="#Mark"/>
</DataPropertyDomain>
<DataPropertyDomain>
<DataProperty IRI="#UserId"/>
<Class IRI="#Mark"/>
</DataPropertyDomain>
<DataPropertyRange>
<DataProperty IRI="#Item"/>
<Datatype abbreviatedIRI="xsd:int"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="#Rate"/>
<DatatypeRestriction>
<Datatype abbreviatedIRI="xsd:int"/>
<FacetRestriction facet="&xsd;maxInclusive">
<Literal datatypeIRI="&xsd;int">5</Literal>
</FacetRestriction>
<FacetRestriction facet="&xsd;minExclusive">
<Literal datatypeIRI="&xsd;int">0</Literal>
</FacetRestriction>
</DatatypeRestriction>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="#UserId"/>
<Datatype abbreviatedIRI="xsd:int"/>
</DataPropertyRange>
</Ontology>
<!-- Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net -->