-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsip.owl
244 lines (134 loc) · 16 KB
/
sip.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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
@prefix : <http://purl.org/slo/sip/#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix slo: <http://purl.org/slo/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://purl.org/slo/sip/> .
<http://purl.org/slo/sip/> rdf:type owl:Ontology ;
owl:versionInfo "1.0" ;
<http://purl.org/dc/elements/1.1/creator> "Monika Solanki" ;
<http://purl.org/dc/elements/1.1/rights> "This vocabulary is licensed under a Creative Commons Attribution License - http://creativecommons.org/licenses/by/3.0" ;
<http://purl.org/dc/elements/1.1/title> "The Software Implementation Process ontology" ;
<http://purl.org/dc/elements/1.1/description> """The purpose of the Software Implementation Process ontology is to provide a set of conceptual entities to represent a specified system element implemented as a software product or service.
This ontology imports the Software Lifecycle Ontology (SLO) available at http://purl.org/slo/. It also utilises concepts defined in the SEON ontologies available at http://www.se-on.org/ and the Software ontology (SWO) available at http://purl.obolibrary.org/obo/swo.owl. Agents using this ontology are strongly recommended to exploit the various terms and relationships defined within SWO and SEON for asserting the requirements of their implementation processes.""" ;
<http://purl.org/dc/elements/1.1/date> "05-07-2015" ;
owl:imports <http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl> ,
<http://purl.obolibrary.org/obo/swo.owl> ,
slo: ;
<http://purl.org/dc/elements/1.1/description> <http://windermere.aston.ac.uk/~solankm2/ontologies/aligned/images/module_imports.jpg> ;
owl:imports <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl> ,
<http://www.w3.org/ns/prov-o#> .
#################################################################
#
# Classes
#
#################################################################
### http://purl.obolibrary.org/obo/IAO_0000030
<http://purl.obolibrary.org/obo/IAO_0000030> owl:equivalentClass slo:InformationItem .
### http://purl.org/slo/InformationItem
### http://purl.org/slo/sip/SoftwareQualificationTestingProcess
:SoftwareQualificationTestingProcess rdf:type owl:Class ;
rdfs:label "Software Qualification Testing Process" ;
rdfs:subClassOf <http://www.purl.org/slo/sip/SoftwareImplementationProcess> ;
<http://purl.org/dc/elements/1.1/description> "The purpose of the Software Qualification Testing Process is to confirm that the integrated software product meets its defined requirements." .
### http://purl.org/slo/sip/#SoftwareImplementationStrategy
:SoftwareImplementationStrategy rdf:type owl:Class ;
rdfs:label "Software implementation strategy" ;
rdfs:subClassOf slo:Activity .
### http://www.purl.org/slo/sip/SoftwareArchitecturalDesign
<http://www.purl.org/slo/sip/SoftwareArchitecturalDesign> rdf:type owl:Class ;
rdfs:label "Software architectural design" ;
rdfs:subClassOf slo:Activity .
### http://www.purl.org/slo/sip/SoftwareArchitecturalDesignProcess
<http://www.purl.org/slo/sip/SoftwareArchitecturalDesignProcess> rdf:type owl:Class ;
rdfs:label "Software Architectural Design Process" ;
rdfs:subClassOf [ rdf:type owl:Class ;
owl:intersectionOf ( <http://www.purl.org/slo/sip/SoftwareImplementationProcess>
[ rdf:type owl:Restriction ;
owl:onProperty slo:hasActivity ;
owl:someValuesFrom <http://www.purl.org/slo/sip/SoftwareArchitecturalDesign>
]
)
] ;
rdfs:comment "The purpose of Software Requirements Analysis Process is to establish the requirements of the software elements of the system." .
### http://www.purl.org/slo/sip/SoftwareConstruction
<http://www.purl.org/slo/sip/SoftwareConstruction> rdf:type owl:Class ;
rdfs:label "Software construction" ;
rdfs:subClassOf slo:Activity .
### http://www.purl.org/slo/sip/SoftwareConstructionProcess
<http://www.purl.org/slo/sip/SoftwareConstructionProcess> rdf:type owl:Class ;
rdfs:label "Software Construction Process" ;
rdfs:subClassOf [ rdf:type owl:Class ;
owl:intersectionOf ( <http://www.purl.org/slo/sip/SoftwareImplementationProcess>
[ rdf:type owl:Restriction ;
owl:onProperty slo:hasActivity ;
owl:someValuesFrom <http://www.purl.org/slo/sip/SoftwareConstruction>
]
)
] ;
rdfs:comment "The purpose of the Software Construction Process is to produce executable software units that properly reflect the software design. " .
### http://www.purl.org/slo/sip/SoftwareDetailedDesign
<http://www.purl.org/slo/sip/SoftwareDetailedDesign> rdf:type owl:Class ;
rdfs:label "Software detailed design" ;
rdfs:subClassOf slo:Activity .
### http://www.purl.org/slo/sip/SoftwareDetailedDesignProcess
<http://www.purl.org/slo/sip/SoftwareDetailedDesignProcess> rdf:type owl:Class ;
rdfs:label "Software Detailed Design Process" ;
rdfs:subClassOf [ rdf:type owl:Class ;
owl:intersectionOf ( <http://www.purl.org/slo/sip/SoftwareImplementationProcess>
[ rdf:type owl:Restriction ;
owl:onProperty slo:hasActivity ;
owl:someValuesFrom <http://www.purl.org/slo/sip/SoftwareDetailedDesign>
]
)
] ;
rdfs:comment "The purpose of the Software Detailed Design Process is to provide a design for the software that implements and can be verified against the requirements and the software architecture and is sufficiently detailed to permit coding and testing" .
### http://www.purl.org/slo/sip/SoftwareImplementationProcess
<http://www.purl.org/slo/sip/SoftwareImplementationProcess> rdf:type owl:Class ;
rdfs:label "Software Implementation Process" ;
rdfs:subClassOf [ rdf:type owl:Class ;
owl:intersectionOf ( slo:SoftwareLifecycleProcess
[ rdf:type owl:Restriction ;
owl:onProperty slo:hasActivity ;
owl:someValuesFrom :SoftwareImplementationStrategy
]
)
] ;
rdfs:comment """This process transforms specified behaviour, interfaces and implementation constraints into actions that create a system element impl
emented as a software product or service, otherwise known as a \"software item.\" This process results in a software item that satisfies architectural design requirements through verification and stakeholder requirements through validation.""" .
### http://www.purl.org/slo/sip/SoftwareIntegration
<http://www.purl.org/slo/sip/SoftwareIntegration> rdf:type owl:Class ;
rdfs:label "Software integration" ;
rdfs:subClassOf slo:Activity .
### http://www.purl.org/slo/sip/SoftwareIntegrationProcess
<http://www.purl.org/slo/sip/SoftwareIntegrationProcess> rdf:type owl:Class ;
rdfs:label "Software Integration Process " ;
rdfs:subClassOf [ rdf:type owl:Class ;
owl:intersectionOf ( <http://www.purl.org/slo/sip/SoftwareImplementationProcess>
[ rdf:type owl:Restriction ;
owl:onProperty slo:hasActivity ;
owl:someValuesFrom <http://www.purl.org/slo/sip/SoftwareIntegration>
]
)
] ;
rdfs:comment """The purpose of the Software Integration Process is to combine the software units and software components, producing integrated software items, consistent with the software design, that demonstrate that the functional
and non-functional software requirements are satisfied on an equivalent or complete operational platform.""" .
### http://www.purl.org/slo/sip/SoftwareRequirementsAnalysis
<http://www.purl.org/slo/sip/SoftwareRequirementsAnalysis> rdf:type owl:Class ;
rdfs:label "Software requirements analysis" ;
rdfs:subClassOf slo:Activity .
### http://www.purl.org/slo/sip/SoftwareRequirementsAnalysisProcess
<http://www.purl.org/slo/sip/SoftwareRequirementsAnalysisProcess> rdf:type owl:Class ;
rdfs:label "Software Requirements Analysis Process" ;
rdfs:subClassOf [ rdf:type owl:Class ;
owl:intersectionOf ( <http://www.purl.org/slo/sip/SoftwareImplementationProcess>
[ rdf:type owl:Restriction ;
owl:onProperty slo:hasActivity ;
owl:someValuesFrom <http://www.purl.org/slo/sip/SoftwareRequirementsAnalysis>
]
)
] ;
rdfs:comment "The purpose of Software Requirements Analysis Process is to establish the requirements of the software elements of the system." .
### Generated by the OWL API (version 3.5.1) http://owlapi.sourceforge.net