-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.owl
82 lines (80 loc) · 2.92 KB
/
event.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
<?xml version="1.0"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="https://raw.githubusercontent.com/fornaran/T-Norm-Model/main/event"
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="https://raw.githubusercontent.com/fornaran/T-Norm-Model/main/event.owl"
versionIRI="https://raw.githubusercontent.com/fornaran/T-Norm-Model/main/event/1.0.0">
<Prefix name="" IRI="https://raw.githubusercontent.com/fornaran/T-Norm-Model/main/event"/>
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="xml" IRI="http://www.w3.org/XML/1998/namespace"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Prefix name="time" IRI="http://www.w3.org/2006/time#"/>
<Prefix name="event" IRI="https://raw.githubusercontent.com/fornaran/T-Norm-Model/main/event"/>
<Import>http://www.w3.org/2006/time#2016</Import>
<Declaration>
<Class IRI="#TimeEvent"/>
</Declaration>
<Declaration>
<Class IRI="#Event"/>
</Declaration>
<Declaration>
<Class IRI="#Action"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#atTime"/>
</Declaration>
<Declaration>
<Class IRI="#Eventuality"/>
</Declaration>
<Declaration>
<Class IRI="#Agent"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="#actor"/>
</Declaration>
<EquivalentClasses>
<Class IRI="#Event"/>
<ObjectSomeValuesFrom>
<ObjectProperty IRI="#atTime"/>
<Class abbreviatedIRI="time:Instant"/>
</ObjectSomeValuesFrom>
</EquivalentClasses>
<SubClassOf>
<Class IRI="#Action"/>
<Class IRI="#Event"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#Event"/>
<Class IRI="#Eventuality"/>
</SubClassOf>
<SubClassOf>
<Class IRI="#TimeEvent"/>
<Class IRI="#Event"/>
</SubClassOf>
<DisjointClasses>
<Class IRI="#Action"/>
<Class IRI="#TimeEvent"/>
</DisjointClasses>
<ObjectPropertyDomain>
<ObjectProperty IRI="#actor"/>
<Class IRI="#Action"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="#atTime"/>
<Class IRI="#Eventuality"/>
</ObjectPropertyDomain>
<ObjectPropertyRange>
<ObjectProperty IRI="#actor"/>
<Class IRI="#Agent"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="#atTime"/>
<Class abbreviatedIRI="time:TemporalEntity"/>
</ObjectPropertyRange>
</Ontology>
<!-- Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi -->