-
Notifications
You must be signed in to change notification settings - Fork 4
/
slc.owl
983 lines (506 loc) · 30.6 KB
/
slc.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
Prefix: dc: <http://purl.org/dc/elements/1.1/>
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: rdfs: <http://www.w3.org/2000/01/rdf-schema#>
Ontology: <http://www.aligned.eu/ontologies/slc>
Import: <http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl>
Import: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl>
Import: <http://www.w3.org/ns/prov-o-20130430>
Annotations:
dc:creator "Monika Solanki",
dc:description "This ontology provides a higl level definition of the conceptual elements that govern the Software product lifecycle. The ontology complies with the terminology defined in ISO/IEC 15288:2008, ISO/IEC 12207:2008 and ISO/IEC/IEEE 24765.
The purpose of ISO/IEC 12207:2008 is to help select, structure and employ the elements of an established set of life cycle processes to provide software products and services. The standard provides 43 processes covering the life-cycle of any software product or system element.
ISO/IEC 15288:2008 gives names to processes in the life cycle of a system.
ISO/IEC 12207:2008 gives names to processes in the life cycle of a software product or service. The two standards are designed to be used together for software-intensive systems.
ISO/IEC/IEEE 24765 defines a Systems and Software Engineering Vocabulary.
The ontology aims to answer the following competetncy questions",
dc:date "20-06-2015",
rdfs:label "Software LifeCycle (SLC) Ontology",
owl:versionInfo 1.0
AnnotationProperty: dc:description
AnnotationProperty: owl:versionInfo
AnnotationProperty: rdfs:label
AnnotationProperty: <http://www.aligned.eu/ontologies/slc#purpose>
SubPropertyOf:
dc:description
AnnotationProperty: dc:date
AnnotationProperty: rdfs:comment
AnnotationProperty: dc:creator
Datatype: rdf:PlainLiteral
ObjectProperty: <http://www.aligned.eu/ontologies/slc#referencesLifeCycleModel>
ObjectProperty: <http://www.aligned.eu/ontologies/slc#hasProcessTask>
SubPropertyOf:
owl:topObjectProperty
ObjectProperty: <http://www.aligned.eu/ontologies/slc#hasProcessOutcome>
SubPropertyOf:
<http://www.aligned.eu/ontologies/slc#hasProcessOutput>
ObjectProperty: <http://www.aligned.eu/ontologies/slc#hasProcessActivity>
ObjectProperty: owl:topObjectProperty
ObjectProperty: <http://www.aligned.eu/ontologies/slc#hasProcessOutput>
DataProperty: <http://www.aligned.eu/ontologies/slc#processTitle>
DataProperty: <http://www.aligned.eu/ontologies/slc#processPurpose>
Class: <http://www.aligned.eu/ontologies/slc#Decision_tracking>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Opportunity_identification>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#InfrastructureManagement>
Annotations:
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Infrastructure Management Process is to provide the enabling infrastructure and services to projects to support organization and project objectives throughout the life cycle.
This process defines, provides and maintains the facilities, tools, and communications and information technology assets needed for the organization’s business with respect to the scope of this International Standard."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectEnablingProcess>
Class: <http://www.aligned.eu/ontologies/slc#SystemQualificationTestingProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#LifecycleModelManagement>
Annotations:
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Life Cycle Model Management Process is to define, maintain, and assure availability of policies, life cycle processes, life cycle models, and procedures for use by the organization with respect to the scope of this International Standard.
This process provides life cycle policies, processes, and procedures that are consistent with the organization's objectives, that are defined, adapted, improved and maintained to support individual project needs within the context of the organization, and that are capable of being applied using effective, proven methods and tools.",
rdfs:label "Lifecycle model management process"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectEnablingProcess>
Class: <http://www.aligned.eu/ontologies/slc#Quality_management>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.w3.org/ns/prov#Organization>
Class: <http://www.aligned.eu/ontologies/slc#Process_improvement>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#RiskManagementProcess>
Annotations:
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Risk Management Process is to identify, analyze, treat and monitor the risks continuously.
The Risk Management Process is a continuous process for systematically addressing risk throughout the life cycle of a system or software product or service. It can be applied to risks related to the acquisition, development, maintenance or operation of a system.",
rdfs:label "Risk management process",
rdfs:comment "ISO/IEC/IEEE16085"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectSupportProcess>
Class: <http://www.aligned.eu/ontologies/slc#System>
Class: <http://www.aligned.eu/ontologies/slc#QualityManagementProcess>
Annotations:
rdfs:label "Quality Management Process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Quality Management Process is to assure that products, services and implementations of life cycle processes meet organizational quality objectives and achieve customer satisfaction."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectEnablingProcess>
Class: <http://www.aligned.eu/ontologies/slc#StakeholderRequirementsDefinition>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#Process_assessment>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareSpecificProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleProcess>
Class: <http://www.aligned.eu/ontologies/slc#Process_implementation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Project_control>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SystemIntegrationProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#ProcessReferenceModel>
Class: <http://www.aligned.eu/ontologies/slc#ConfigurationManagementProcess>
Annotations:
rdfs:label "Configuration management process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Configuration Management Process is to establish and maintain the integrity of all identified outputs of a project or process and make them available to concerned parties."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectSupportProcess>
Class: <http://www.aligned.eu/ontologies/slc#Task>
Annotations:
dc:description "equirement, recommendation, or permissible action, intended to contribute to the achievement of one or more outcomes of a process"
SubClassOf:
<http://www.w3.org/ns/prov#Activity>
Class: <http://www.aligned.eu/ontologies/slc#ReuseProgrammeManagementProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareReuse>
Class: <http://www.aligned.eu/ontologies/slc#ProjectSupportProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SystemContextProcess>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareLifecycleStage>
Class: <http://www.aligned.eu/ontologies/slc#TailoredProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleProcess>
Class: <http://www.aligned.eu/ontologies/slc#Contract_execution>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Organisation>
Annotations:
dc:description "An endeavour with defined start and finish dates undertaken to create a product or service in accordance with specified resources and requirements [adapted from ISO 9000]"
SubClassOf:
<http://www.w3.org/ns/prov#Organization>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareOperationProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareValidation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.aligned.eu/ontologies/slc#Project_initiation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Acquisition_preparation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#ImplementationProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#Closure>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareArchitectureDesign>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareImplementation>
Class: <http://www.aligned.eu/ontologies/slc#Project_closure>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Process>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareMaintenanceProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareIntegration>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareImplementation>
Class: <http://www.aligned.eu/ontologies/slc#Project_planning>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SystemArchitectureDesign>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#SystemLifecycleStage>
Class: <http://www.aligned.eu/ontologies/slc#HumanResourceManagement>
Annotations:
rdfs:label "Human Resource Management Process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Human Resource Management Process is to provide the organization with necessary human resources and to maintain their competencies, consistent with business needs.
The process assures the providing of a supply of skilled and experienced personnel qualified to perform life cycle processes to achieve organization, project and customer objectives."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectEnablingProcess>
Class: <http://www.aligned.eu/ontologies/slc#Project_assessment.>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareComponent>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Software>
Class: <http://www.aligned.eu/ontologies/slc#ProjectEnablingProcess>
Annotations:
rdfs:label "Organisational project enabling process"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SystemContextProcess>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareReuse>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSpecificProcess>
Class: <http://www.aligned.eu/ontologies/slc#Project>
Class: <http://www.aligned.eu/ontologies/slc#ProjectManagementProcess>
Annotations:
rdfs:label "Project management process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Life Cycle Model Management Process is to define, maintain, and assure availability of policies, life cycle processes, life cycle models, and procedures for use by the organization with respect to the scope of this International Standard.
This process provides life cycle policies, processes, and procedures that are consistent with the organization's objectives, that are defined, adapted, improved and maintained to support individual project needs within the context of the organization, and that are capable of being applied using effective, proven methods and tools."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SystemContextProcess>
Class: <http://www.aligned.eu/ontologies/slc#Risk_treatment>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Infrastructure_establishment>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareDocumentationManagement>
Annotations:
rdfs:comment "ISO/IEC/IEEE15289"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareDevelopment>
Annotations:
rdfs:label "Software Development"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSpecificProcess>
Class: <http://www.aligned.eu/ontologies/slc#InformationManagement>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectSupportProcess>
Class: <http://www.aligned.eu/ontologies/slc#Supplier_tendering>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Decision_analysis>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Output>
Class: <http://www.aligned.eu/ontologies/slc#Party>
Annotations:
dc:description "An organization entering into an agreement"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Organisation>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareLifecycleModel>
Class: <http://www.aligned.eu/ontologies/slc#Tool>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Resource>,
<http://www.w3.org/ns/prov#SoftwareAgent>
Class: <http://www.aligned.eu/ontologies/slc#Software>
Class: <http://www.aligned.eu/ontologies/slc#Contract_agreement>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Acquisition_advertisement>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Skill_development>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareConfigurationManagement>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.aligned.eu/ontologies/slc#Skill_acquisition_and_provision>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#ProjectPlanningProcess>
Annotations:
rdfs:label "Project planning process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Project Planning Process is to produce and communicate effective and workable project plans.
This process determines the scope of the project management and technical activities, identifies process outputs, project tasks and deliverables, establishes schedules for project task conduct, including achievement criteria, and required resources to accomplish project tasks."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectManagementProcess>
Class: <http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Annotations:
rdfs:label "Technical process"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SystemContextProcess>
Class: <http://www.aligned.eu/ontologies/slc#Risk_profile_management>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Risk_management_planning>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#ProjectAssessmentAndControl>
Annotations:
rdfs:label "Project assessment and control",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Project Assessment and Control Process is to determine the status of the project and ensure that the project performs according to plans and schedules, and within projected budgets, and that it satisfies technical objectives.
This process includes redirecting the project activities, as appropriate, to correct identified deviations and variations from other project management or technical processes. Redirection may include replanning as appropriate."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectManagementProcess>
Class: <http://www.aligned.eu/ontologies/slc#SystemContextProcess>
Annotations:
rdfs:comment "It is fundamental to 12207 that software exists only in the context of a system even if the system consists of only the processor upon which the software is executed. Therefore, a software product or service is always treated as one item in a system."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleProcess>
Class: <http://www.aligned.eu/ontologies/slc#ReuseAssetManagementProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareReuse>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareReview>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.aligned.eu/ontologies/slc#Acquirer_acceptance>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SupplyProcess>
Annotations:
rdfs:label "Supply process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Supply Process is to provide a product or service to the acquirer that meets the agreed requirements."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#AgreementProcess>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareSupport>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSpecificProcess>
Class: <http://www.aligned.eu/ontologies/slc#Service>
Annotations:
dc:description "Performance of activities,work,or duties associated with a product"
Class: <http://www.aligned.eu/ontologies/slc#SoftwareDisposalProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#Project_activation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Supplier_selection>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareImplementation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareDevelopment>,
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#AgreementProcess>
Annotations:
rdfs:label "Agrreement process"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SystemContextProcess>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareRequirementsAnalysis>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareImplementation>
Class: <http://www.aligned.eu/ontologies/slc#Project_monitoring>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareArchitecture>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareDevelopment>
Class: <http://www.aligned.eu/ontologies/slc#Product>
Annotations:
dc:description "The result of a process [ISO9000]"
Class: <http://www.aligned.eu/ontologies/slc#SoftwareQualityAssurance>
Annotations:
rdfs:comment "ISO/IEC/IEEE15026"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.w3.org/ns/prov#Agent>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Resource>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareAuditProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.aligned.eu/ontologies/slc#Risk_monitoring>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareLifecycleProcess>
SubClassOf:
(<http://www.aligned.eu/ontologies/slc#hasProcessActivity> some <http://www.w3.org/ns/prov#Activity>)
and (<http://www.aligned.eu/ontologies/slc#hasProcessOutput> some <http://www.aligned.eu/ontologies/slc#Output>),
<http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#Process>
Class: <http://www.aligned.eu/ontologies/slc#Risk_management_process_evaluation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Input>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareProblemResolution>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.aligned.eu/ontologies/slc#Configuration_management_planning>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Skill_identification>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareAcceptanceSupportProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.w3.org/ns/prov#SoftwareAgent>
Class: <http://www.aligned.eu/ontologies/slc#Quality_management_corrective_action>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#DecisionManagement>
Annotations:
rdfs:label "Decision management process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Decision Management Process is to select the most beneficial course of project action where alternatives exist.
This process responds to a request for a decision encountered during the system life cycle, whatever its nature or source, in order to reach specified, desirable or optimized outcomes. Alternative actions are analyzed and a course of action selected and directed. Decisions and their rationale are recorded to support future decision-making."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectSupportProcess>
Class: <http://www.aligned.eu/ontologies/slc#SystemRequirementsAnalysis>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#Supplier>
Annotations:
rdfs:label "Supplier"
Class: <http://www.aligned.eu/ontologies/slc#SoftwareInstallationProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#TechnicalProcess>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareDetailedDesign>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareImplementation>
Class: <http://www.aligned.eu/ontologies/slc#Resource>
Class: <http://www.aligned.eu/ontologies/slc#Process_establishment>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#DomainEngineeringProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareReuse>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareVerification>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareSupport>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareUnit>
Annotations:
dc:description "separately compilable piece of code"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Software>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareMaintenance>
Annotations:
rdfs:comment "ISO/IEC/IEEE14764"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareDevelopment>
Class: <http://www.aligned.eu/ontologies/slc#Measurement>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectSupportProcess>
Class: <http://www.aligned.eu/ontologies/slc#Agreement_monitoring>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#ProjectPortfolioManagement>
Annotations:
rdfs:label "Project portfolio management process",
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Project Portfolio Management Process is to initiate and sustain necessary, sufficient and suitable projects in order to meet the strategic objectives of the organization.
This process commits the investment of adequate organization funding and resources, and sanctions the authorities needed to establish selected projects. It performs continued qualification of projects to confirm they justify, or can be redirected to justify, continued investment."
SubClassOf:
<http://www.aligned.eu/ontologies/slc#ProjectEnablingProcess>
Class: <http://www.aligned.eu/ontologies/slc#ProcessView>
Class: <http://www.aligned.eu/ontologies/slc#Decision_planning>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareQualificationTestingProcess>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareImplementation>
Class: <http://www.aligned.eu/ontologies/slc#Infrastructure_maintenance>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareItem>
Annotations:
dc:description "source code, object code, control code, control data, or a collection of these items"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Software>
Class: <http://www.aligned.eu/ontologies/slc#Outcome>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Output>
Class: <http://www.aligned.eu/ontologies/slc#Knowledge_management>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#SoftwareConstruction>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#SoftwareImplementation>
Class: <http://www.aligned.eu/ontologies/slc#Configuration_management_execution>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.aligned.eu/ontologies/slc#Risk_analysis>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Class: <http://www.w3.org/ns/prov#Activity>
Class: <http://www.aligned.eu/ontologies/slc#AcquisitionProcess>
Annotations:
<http://www.aligned.eu/ontologies/slc#purpose> "The purpose of the Acquisition Process is to obtain the product and/or service that satisfies the need expressed by the acquirer. The process begins with the identification of customer needs and ends with the acceptance of the product and/or service needed by the acquirer.",
rdfs:label "Acquisition process"
SubClassOf:
<http://www.aligned.eu/ontologies/slc#AgreementProcess>
Class: <http://www.aligned.eu/ontologies/slc#Portfolio_evaluation>
SubClassOf:
<http://www.aligned.eu/ontologies/slc#Task>
Individual: <http://www.aligned.eu/ontologies/slc#Production>
Types:
<http://www.aligned.eu/ontologies/slc#SystemLifecycleStage>
Individual: <http://www.aligned.eu/ontologies/slc#Development>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleStage>,
<http://www.aligned.eu/ontologies/slc#SystemLifecycleStage>
Individual: <http://www.aligned.eu/ontologies/slc#Utilisation>
Types:
<http://www.aligned.eu/ontologies/slc#SystemLifecycleStage>
Individual: <http://www.aligned.eu/ontologies/slc#Retirement>
Types:
<http://www.aligned.eu/ontologies/slc#SystemLifecycleStage>
Individual: <http://www.aligned.eu/ontologies/slc#Incremental>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleModel>
Individual: <http://www.aligned.eu/ontologies/slc#Conceptualisation>
Types:
<http://www.aligned.eu/ontologies/slc#SystemLifecycleStage>
Individual: <http://www.aligned.eu/ontologies/slc#V-Model>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleModel>
Individual: <http://www.aligned.eu/ontologies/slc#Support>
Types:
<http://www.aligned.eu/ontologies/slc#SystemLifecycleStage>
Individual: <http://www.aligned.eu/ontologies/slc#Waterfall>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleModel>
Individual: <http://www.aligned.eu/ontologies/slc#Maintenance>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleStage>
Individual: <http://www.aligned.eu/ontologies/slc#Evolutionary>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleModel>
Individual: <http://www.aligned.eu/ontologies/slc#Spiral>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleModel>
Individual: <http://www.aligned.eu/ontologies/slc#Operation>
Types:
<http://www.aligned.eu/ontologies/slc#SoftwareLifecycleStage>