Tore Christiansen

Added User Fields and Free Text examples

This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
......@@ -4,15 +4,77 @@
@prefix ILAP: <http://data.posccaesar.org/ilap/> .
@prefix SCCS: <http://data.posccaesar.org/ilap/refdata/NORSOK/Z-014/SCCSCoding/> .
@prefix UC1: <http://data.posccaesar.org/Data/UC1/> .
@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 userfields: <http://data.posccaesar.org/ilap/userfields#> .
@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:AreaCode
rdf:type USERFIELDS:FreeTextField ;
rdfs:label "Area code"^^xsd:string ;
USERFIELDS:hasDescription
"Area Code AA"^^xsd:string ;
USERFIELDS:hasShort "AC AA"^^xsd:string .
UC1:CostCenter
rdf:type USERFIELDS:FreeTextField ;
rdfs:label "Cost center"^^xsd:string ;
USERFIELDS:hasDescription
"COST CENTER B"^^xsd:string ;
USERFIELDS:hasShort "CCB"^^xsd:string .
UC1:Index_Code_Value
rdf:type USERFIELDS:FreeTextField ;
rdfs:label "Index Code" ;
USERFIELDS:hasDescription
"Index A"^^xsd:string ;
USERFIELDS:hasShort "EXA"^^xsd:string .
UC1:Quality_Descriptor_1
rdf:type USERFIELDS:FreeTextField ;
rdfs:label "Quality Level" ;
USERFIELDS:hasDescription
"High Quality"^^xsd:string ;
USERFIELDS:hasShort "HQ"^^xsd:string .
UC1:ShutdownPeriod_1
rdf:type USERFIELDS:FreeTextField ;
rdfs:label "Shutdown period 1"^^xsd:string ;
USERFIELDS:hasDescription
"Shutdown period 2016"^^xsd:string ;
USERFIELDS:hasShort "SD2016"^^xsd:string .
UC1:UserField_for_PlannedActivity_2
rdf:type USERFIELDS:UserField ;
rdfs:label "User Field for Planned Activity 2" ;
USERFIELDS:hasIndexCode
UC1:Index_Code_Value ;
USERFIELDS:hasQuality
UC1:Quality_Descriptor_1 ;
USERFIELDS:hasShutDownPeriod
UC1:ShutdownPeriod_1 .
UC1:UserField_for_Scheduled_Activity_1
rdf:type USERFIELDS:UserField ;
rdfs:label "User field for Scheduled Activity 1"^^xsd:string ;
USERFIELDS:hasAreaCode
UC1:AreaCode ;
USERFIELDS:hasCostCenter
UC1:CostCenter .
ILAP:Activity
rdfs:subClassOf
[ rdf:type owl:Restriction ;
owl:onProperty USERFIELDS:hasUserField ;
owl:someValuesFrom USERFIELDS:UserField
] .
ILAP:ActivityPlan_1
rdf:type ILAP:ActivityPlan ;
rdfs:label "Activity plan 1"^^xsd:string .
......@@ -22,7 +84,7 @@ ILAP:ActivityWBS_1
rdfs:label "Activity WBS 1"^^xsd:string ;
ILAP:hasWBScomponent
SCCS:PBS_ACAA , ILAP:PBS_ACAA_1 ;
ILAP:hasWBSphase ILAP:SAB_51_1 , SCCS:SAB_51 ;
ILAP:hasWBSphase SCCS:SAB_51 , ILAP:SAB_51_1 ;
ILAP:hasWBSresource SCCS:COR_KD , ILAP:COR_KD_1 .
ILAP:COR_KD_1
......@@ -90,7 +152,8 @@ ILAP:PlannedActivity_2
"55000"^^xsd:float ;
ILAP:hasActivityWorkVolume
"1500"^^xsd:float ;
ILAP:hasUserField <http://data.posccaesar.org/ilap/USERFIELDS/hasIndexCode> , <http://data.posccaesar.org/ilap/USERFIELDS/hasExecutionMilestone> .
USERFIELDS:hasUserField
UC1:UserField_for_PlannedActivity_2 .
ILAP:ProjectExecutionPlan_1
rdf:type ILAP:ProjectExecutionPlan ;
......@@ -151,7 +214,8 @@ ILAP:SAB_51_1
ILAP:ScheduledActivity_1
rdf:type ILAP:ScheduledActivity ;
rdfs:label "Scheduled activity 1"^^xsd:string ;
ILAP:hasUserField <http://data.posccaesar.org/ilap/USERFIELDS/hasExecutionMilestone> .
USERFIELDS:hasUserField
UC1:UserField_for_Scheduled_Activity_1 .
ILAP:ScheduledMilestone_1
rdf:type ILAP:ScheduledMilestone ;
......@@ -167,11 +231,7 @@ ILAP:SummerShutdown_UC1
ILAP:hasShutdownPriority
ILAP:NormalPriority ;
ILAP:hasShutdownType
ILAP:SystemShutdown , ILAP:ProductionShutdown , ILAP:ScheduledShutdown .
<http://data.posccaesar.org/ilap/USERFIELDS/hasExecutionMilestone>
ILAP:hasValue "Final Milestone"^^xsd:string ;
ILAP:hasValueSource "Use Case 13 - Safran"^^xsd:string .
ILAP:SystemShutdown , ILAP:ScheduledShutdown , ILAP:ProductionShutdown .
ILAP:UseCaseAibelToCOPNO
rdf:type ILAP:Source ;
......@@ -216,9 +276,6 @@ ILAP:hasActivityPreviousStatus
ILAP:hasPlanUserField
rdfs:domain ILAP:ProjectExecutionPlan .
ILAP:hasUserField
rdfs:domain ILAP:Activity .
ILAP:hasUserFieldSource
rdfs:range ILAP:UserField .
......
This diff is collapsed. Click to expand it.