UC1.ttl
5.54 KB
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
# baseURI: http://data.posccaesar.org/Data/UC1/
# imports: http://data.posccaesar.org/NCS_PLANNING/
# c14n-version: 3
@prefix ILAP: <http://data.posccaesar.org/ilap/> .
@prefix UC1: <http://data.posccaesar.org/Data/UC1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
UC1:
rdf:type owl:Ontology ;
owl:imports <http://data.posccaesar.org/NCS_PLANNING/> ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
.
UC1:ActivityInPlan_1
rdf:type ILAP:PlannedActivity ;
ILAP:hasActivityEstimatedWeight "10500"^^xsd:float ;
ILAP:hasActivityPlan UC1:ProjectPlan_1 ;
ILAP:hasActivityPlannedResource UC1:PlannedResource_1 ;
rdfs:label "Activity in plan 1"^^xsd:string ;
.
UC1:ActivityInPlan_2
rdf:type ILAP:PlannedActivity ;
ILAP:hasActivityPlan UC1:ProjectPlan_1 ;
rdfs:label "Activity in plan 2"^^xsd:string ;
.
UC1:ActivityInSchedule_1
rdf:type ILAP:ScheduledActivity ;
ILAP:hasActivityActualWeight "100750"^^xsd:float ;
ILAP:hasActivityInScheduleActivityInPlan UC1:ActivityInPlan_1 ;
ILAP:hasActivitySchedule UC1:TargetSchedule_1 ;
ILAP:hasActivityScheduledResource UC1:ScheduledResource_1 ;
rdfs:label "Activity in schedule 1"^^xsd:string ;
.
UC1:ActivityInSchedule_2
rdf:type ILAP:ScheduledActivity ;
ILAP:hasActivityInScheduleActivityInPlan UC1:ActivityInPlan_1 ;
ILAP:hasActivitySchedule UC1:ActualSchedule_1 ;
rdfs:label "Activity in schedule 2"^^xsd:string ;
.
UC1:ActivityInSchedule_3
rdf:type ILAP:ScheduledActivity ;
ILAP:hasActivityInScheduleActivityInPlan UC1:ActivityInPlan_2 ;
ILAP:hasActivitySchedule UC1:TargetSchedule_1 ;
rdfs:label "Activity in schedule 3"^^xsd:string ;
.
UC1:ActivityInSchedule_4
rdf:type ILAP:ScheduledActivity ;
ILAP:hasActivityInScheduleActivityInPlan UC1:ActivityInPlan_2 ;
ILAP:hasActivitySchedule UC1:ActualSchedule_1 ;
rdfs:label "Activity in schedule 4"^^xsd:string ;
.
UC1:ActualSchedule_1
rdf:type ILAP:ActualSchedule ;
ILAP:hasPlanUserField <http://data.posccaesar.org/NCS_PLANNING/UserField_3> ;
ILAP:hasScheduleBaseline UC1:Baseline_1 ;
ILAP:hasSchedulePlan UC1:ProjectPlan_1 ;
rdfs:label "Actual schedule 1"^^xsd:string ;
.
UC1:Baseline_1
rdf:type ILAP:Baseline ;
ILAP:hasBaselineCreatedDate "2014-03-25"^^xsd:date ;
rdfs:label "Baseline 1"^^xsd:string ;
.
UC1:Baseline_2
rdf:type ILAP:Baseline ;
ILAP:hasBaselineCreatedDate "2014-03-25"^^xsd:date ;
rdfs:label "Baseline 2"^^xsd:string ;
.
UC1:Baseline_3
rdf:type ILAP:Baseline ;
ILAP:hasBaselineCreatedDate "2014-03-25"^^xsd:date ;
rdfs:label "Baseline 3"^^xsd:string ;
.
UC1:Baseline_4
rdf:type ILAP:Baseline ;
ILAP:hasBaselineCreatedDate "2014-03-25"^^xsd:date ;
rdfs:label "Baseline 4"^^xsd:string ;
.
UC1:CurrentSchedule_1
rdf:type ILAP:CurrentSchedule ;
ILAP:hasScheduleBaseline UC1:Baseline_2 ;
ILAP:hasSchedulePlan UC1:ProjectPlan_1 ;
rdfs:label "Current schedule 1"^^xsd:string ;
.
UC1:LiveSchedule_1
rdf:type ILAP:LiveSchedule ;
ILAP:hasScheduleBaseline UC1:Baseline_3 ;
rdfs:label "Live schedule 1"^^xsd:string ;
.
UC1:Milestone_1
rdf:type ILAP:Milestone ;
rdfs:label "Milestone 1"^^xsd:string ;
.
UC1:PlannedResource_1
rdf:type ILAP:PlannedResource ;
ILAP:hasResourceProfile UC1:Profile_1 ;
rdfs:label "Planned resource 1"^^xsd:string ;
.
UC1:ProfilePoint_1
rdf:type ILAP:ProfilePoint ;
ILAP:hasProfilePointXValue "0.1"^^xsd:float ;
ILAP:hasProfilePointYValue "0.2"^^xsd:float ;
rdfs:label "Profile point 1"^^xsd:string ;
.
UC1:ProfilePoint_2
rdf:type ILAP:ProfilePoint ;
ILAP:hasProfilePointXValue "1.0"^^xsd:float ;
ILAP:hasProfilePointYValue "0.9"^^xsd:float ;
rdfs:label "Profile point 2"^^xsd:string ;
.
UC1:Profile_1
rdf:type ILAP:Profile ;
ILAP:hasProfilePoint ILAP:ProfilePoint_1 ;
ILAP:hasProfilePoint ILAP:ProfilePoint_2 ;
rdfs:label "Profile 1"^^xsd:string ;
.
UC1:ProjectPlan_1
rdf:type ILAP:ProjectPlan ;
ILAP:hasPlanUserField <http://data.posccaesar.org/NCS_PLANNING/UserField_1> ;
ILAP:hasPlanUserField <http://data.posccaesar.org/NCS_PLANNING/UserField_2> ;
ILAP:hasPlanUserField <http://data.posccaesar.org/NCS_PLANNING/UserField_3> ;
rdfs:label "Project plan 1"^^xsd:string ;
.
UC1:Project_1
rdf:type ILAP:Project ;
rdfs:label "Project 1"^^xsd:string ;
.
UC1:ScheduledResource_1
rdf:type ILAP:ScheduledResource ;
ILAP:hasResourceProfile UC1:Profile_1 ;
rdfs:label "Scheduled resource 1"^^xsd:string ;
.
UC1:TargetSchedule_1
rdf:type ILAP:TargetSchedule ;
ILAP:hasScheduleBaseline UC1:Baseline_4 ;
ILAP:hasSchedulePlan UC1:ProjectPlan_1 ;
rdfs:label "Target schedule 1"^^xsd:string ;
.
UC1:UserField_1
rdf:type ILAP:UserField ;
rdfs:label "User field 1"^^xsd:string ;
.
UC1:UserField_2
rdf:type ILAP:UserField ;
rdfs:label "User field 2"^^xsd:string ;
.
UC1:UserField_3
rdf:type ILAP:UserField ;
rdfs:label "User field 3"^^xsd:string ;
.
<http://data.posccaesar.org/NCS_PLANNING/UserField_1>
ILAP:hasUserFieldName "Area"^^xsd:string ;
ILAP:hasUserFieldSource <http://data.posccaesar.org/brreg/Sevan> ;
ILAP:hasUserFieldValue "Processing System"^^xsd:string ;
.
<http://data.posccaesar.org/NCS_PLANNING/UserField_2>
ILAP:hasUserFieldSource <http://data.posccaesar.org/brreg/Sevan> ;
ILAP:hasUserFieldValue "SAP-WO-101-3"^^xsd:string ;
.
<http://data.posccaesar.org/NCS_PLANNING/UserField_3>
ILAP:hasUserFieldName "Risk Factor"^^xsd:string ;
ILAP:hasUserFieldSource <http://data.posccaesar.org/brreg/Sevan> ;
ILAP:hasUserFieldValue "Explosive Environment"^^xsd:string ;
.