USERFIELDS.ttl
21.7 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
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
# baseURI: http://data.posccaesar.org/ilap/userfields/
@prefix USERFIELDS: <http://data.posccaesar.org/ilap/userfields/> .
@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#> .
USERFIELDS:
rdf:type owl:Ontology ;
owl:versionInfo "Created with TopBraid Composer"^^xsd:string .
USERFIELDS:FreeTextField
rdf:type owl:Class ;
rdfs:label "Free text field"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty USERFIELDS:hasValue ;
owl:someValuesFrom xsd:string
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty USERFIELDS:hasShort ;
owl:someValuesFrom xsd:string
] .
USERFIELDS:UserField
rdf:type owl:Class ;
rdfs:label "User Field"^^xsd:string ;
rdfs:subClassOf <http://data.posccaesar.org/ilap/Data> , <http://posccaesar.org/rdl/RDS13103560> , owl:Thing ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasCompletionStatus
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasExecutionSubDiscipline
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasCriticalPath
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasLocationOfWork
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasTaskResponsible
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasShutDownPeriod
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasReporting
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasSystemType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasMainActivity
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasOwnerDepartment
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasSupplierATS
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasPortfolio
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasAssignment
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasWBSpart4
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasWBS
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasWorkOrder
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasGeographicLocation
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasActivityProgress
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasNetwork
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasJobCardStatus
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasBuildingBlock
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasWBSpart5
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasWBSpart2
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasProjectType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasWBSpart2
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasLocationOnFacility
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasAreaOnFacility
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasWBSpart3
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasProjectCode
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasProcurementPackage
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasCommissioningPackage
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasKPIStatus
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasSection
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasContractType
] ;
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:maxQualifiedCardinality
"1"^^xsd:nonNegativeInteger ;
owl:onClass USERFIELDS:FreeTextField ;
owl:onProperty USERFIELDS:hasMechanicalCompletionPackage
] .
USERFIELDS:hasActivityNetwork
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Activity Network"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasActivityProgress
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Activity Progress"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasAreaOnFacility
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Area on Facilty"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasAssignment
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Assignment"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasBuildingBlock
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Building Block"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasCategory
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Category"^^xsd:string .
USERFIELDS:hasCommissioningPackage
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Commissioning Package"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasCompletionStatus
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Competition Status"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasContractType
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Contract type"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasContractor
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Contractor"^^xsd:string .
USERFIELDS:hasCriticalPath
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Critical Path"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasDiscipline
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Discipline"^^xsd:string .
USERFIELDS:hasEngineeringPhase
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Engineering Phase"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasExecutionSubDiscipline
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Execution Subdiscipline"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasFacility
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Facility"^^xsd:string .
USERFIELDS:hasGeographicLocation
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Geographical Location"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasJobCardStatus
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Job Card Status"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasKPIStatus
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has KPI Status"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasLocationOfMaterial
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Location of Material"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasLocationOfWork
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Location of Work"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasLocationOnFacility
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Location on Facility"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasMainActivity
rdf:type owl:ObjectProperty ;
rdfs:label "has Main Activity"^^xsd:string .
USERFIELDS:hasMechanicalCompletionPackage
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Mechanical Completion Package"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasMilestoneType
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Milestone Type"^^xsd:string .
USERFIELDS:hasNetwork
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Network"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasOwnerDepartment
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Owner Department"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasOwnerResponsible
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Owner Responsible"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasPlanResponsible
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Plan Responsible"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasPortfolio
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Portfolio"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasProcurementPackage
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Procurement Package"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasProduct
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Product"^^xsd:string .
USERFIELDS:hasProjectCode
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Project Code"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasProjectPhaseType
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Project Phase Type"^^xsd:string .
USERFIELDS:hasProjectResponsible
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Project Responsible"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasProjectType
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Project Type"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasReporting
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Reporting"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasSection
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Section"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasShort
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Short name of a Free Text Field."^^xsd:string ;
rdfs:domain USERFIELDS:FreeTextField ;
rdfs:range xsd:string .
USERFIELDS:hasShutDownPeriod
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Shutdown Period"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasShutdownType
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Shutdown Type"^^xsd:string .
USERFIELDS:hasSource
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Source"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasSupplierATS
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Supplier ATS"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasSystemResponsible
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has System Responsible"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasSystemType
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has System Type"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasTaskResponsible
rdf:type owl:ObjectProperty ;
rdfs:label "has Task Responsible"^^xsd:string .
USERFIELDS:hasUserField
rdf:type owl:ObjectProperty ;
rdfs:range USERFIELDS:UserField .
USERFIELDS:hasValue
rdf:type owl:DatatypeProperty ;
rdfs:comment "A Property that holds the Value of a Free Text Field."^^xsd:string ;
rdfs:domain USERFIELDS:FreeTextField ;
rdfs:range xsd:string .
USERFIELDS:hasWBS
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has WBS"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWBSpart1
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has WBS part 1"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWBSpart2
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has WBS Part 2"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWBSpart3
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has WBS Part 3"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWBSpart4
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has WBS Part 4"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWBSpart5
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has WBS Part 5"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWorkCenter
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Work Center"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWorkOrder
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Work Order"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .
USERFIELDS:hasWorkOrderType
rdf:type owl:ObjectProperty ;
rdfs:domain USERFIELDS:UserField ;
rdfs:label "has Work Order Type"^^xsd:string ;
rdfs:range USERFIELDS:FreeTextField .