forked from MuhamedHabib/airo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.ttl
110 lines (69 loc) · 3.4 KB
/
example.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
@prefix : <https://delaramglp.github.io/airo/example> .
@prefix ex: <https://delaramglp.github.io/airo/example#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix airo: <https://w3id.org/airo#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vair: <https://w3id.org/vair#> .
@base <https://delaramglp.github.io/airo/example> .
<https://delaramglp.github.io/airo/example> rdf:type owl:Ontology .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/airo#hasAISubject
airo:hasAISubject rdf:type owl:ObjectProperty .
### https://w3id.org/airo#hasCapability
airo:hasCapability rdf:type owl:ObjectProperty .
### https://w3id.org/airo#hasPurpose
airo:hasPurpose rdf:type owl:ObjectProperty .
### https://w3id.org/airo#isAppliedWithinDomain
airo:isAppliedWithinDomain rdf:type owl:ObjectProperty .
### https://w3id.org/airo#isUsedBy
airo:isUsedBy rdf:type owl:ObjectProperty .
#################################################################
# Classes
#################################################################
### https://w3id.org/airo#AICapabiliy
airo:AICapabiliy rdf:type owl:Class .
### https://w3id.org/airo#AISubject
airo:AISubject rdf:type owl:Class .
### https://w3id.org/airo#AISystem
airo:AISystem rdf:type owl:Class .
### https://w3id.org/airo#Domain
airo:Domain rdf:type owl:Class .
### https://w3id.org/airo#Purpose
airo:Purpose rdf:type owl:Class .
### https://w3id.org/airo#User
airo:User rdf:type owl:Class .
### https://w3id.org/vair#LawEnforcement
vair:LawEnforcement rdf:type owl:Class .
#################################################################
# Individuals
#################################################################
### https://delaramglp.github.io/airo/example#law_enforcement
ex:law_enforcement rdf:type owl:NamedIndividual ,
airo:Domain ,
vair:LawEnforcement .
### https://delaramglp.github.io/airo/example#predicting_risk_of_gender_violance
ex:predicting_risk_of_gender_violance rdf:type owl:NamedIndividual ,
airo:Purpose .
### https://delaramglp.github.io/airo/example#profiling
ex:profiling rdf:type owl:NamedIndividual ,
airo:AICapabiliy .
### https://delaramglp.github.io/airo/example#spanish_ministry_of_interior
ex:spanish_ministry_of_interior rdf:type owl:NamedIndividual ,
airo:User .
### https://delaramglp.github.io/airo/example#victim_of_gender_violance
ex:victim_of_gender_violance rdf:type owl:NamedIndividual ,
airo:AISubject .
### https://delaramglp.github.io/airo/example#viogen
ex:viogen rdf:type owl:NamedIndividual ,
airo:AISystem ;
airo:hasAISubject ex:victim_of_gender_violance ;
airo:hasCapability ex:profiling ;
airo:hasPurpose ex:predicting_risk_of_gender_violance ;
airo:isAppliedWithinDomain ex:law_enforcement ;
airo:isUsedBy ex:spanish_ministry_of_interior .
### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi