Tore Christiansen

Renamed Data to DataField, made CompletelyFreeField to subclass of DataField, re…

…named Value to DataValue
...@@ -480,10 +480,9 @@ ...@@ -480,10 +480,9 @@
480 . 480 .
481 :CompletelyFreeField 481 :CompletelyFreeField
482 rdf:type owl:Class ; 482 rdf:type owl:Class ;
483 - rdfs:comment "A Data Field that holds variables and values defined by the User."^^xsd:string ; 483 + rdfs:comment "A Data Field defined by the user that holds free text values."^^xsd:string ;
484 rdfs:label "Completely free field"^^xsd:string ; 484 rdfs:label "Completely free field"^^xsd:string ;
485 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS17611736> ; 485 + rdfs:subClassOf :DataField ;
486 - rdfs:subClassOf owl:Thing ;
487 rdfs:subClassOf [ 486 rdfs:subClassOf [
488 rdf:type owl:Restriction ; 487 rdf:type owl:Restriction ;
489 owl:onDataRange xsd:anyType ; 488 owl:onDataRange xsd:anyType ;
...@@ -622,7 +621,7 @@ ...@@ -622,7 +621,7 @@
622 rdfs:label "Daily Repeat Period"^^xsd:string ; 621 rdfs:label "Daily Repeat Period"^^xsd:string ;
623 rdfs:subClassOf :Period ; 622 rdfs:subClassOf :Period ;
624 . 623 .
625 -:Data 624 +:DataField
626 rdf:type owl:Class ; 625 rdf:type owl:Class ;
627 rdfs:comment "An Information Object that is produced or stored by a computer in the context of a given Objective, used usually to calculate, analyze or plan something (adapted from Merriam-Webster)."^^xsd:string ; 626 rdfs:comment "An Information Object that is produced or stored by a computer in the context of a given Objective, used usually to calculate, analyze or plan something (adapted from Merriam-Webster)."^^xsd:string ;
628 rdfs:label "Data"^^xsd:string ; 627 rdfs:label "Data"^^xsd:string ;
...@@ -667,6 +666,14 @@ ...@@ -667,6 +666,14 @@
667 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS318059> ; 666 rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS318059> ;
668 rdfs:subClassOf owl:Thing ; 667 rdfs:subClassOf owl:Thing ;
669 . 668 .
669 +:DataValue
670 + rdf:type owl:Class ;
671 + rdfs:comment "A Property that denotes the material or monetary worth of something relative to the price asked for it (from Oxforddictionaries.com)."^^xsd:string ;
672 + rdfs:label "Value"^^xsd:string ;
673 + rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS7275639> ;
674 + rdfs:subClassOf owl:Thing ;
675 + owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7945844> ;
676 +.
670 :Decision_Milestone 677 :Decision_Milestone
671 rdf:type :MilestoneType ; 678 rdf:type :MilestoneType ;
672 rdfs:label "Decision Milestone"^^xsd:string ; 679 rdfs:label "Decision Milestone"^^xsd:string ;
...@@ -833,9 +840,9 @@ ...@@ -833,9 +840,9 @@
833 . 840 .
834 :FreeField 841 :FreeField
835 rdf:type owl:Class ; 842 rdf:type owl:Class ;
836 - rdfs:comment "A Data Field that holds variables defined by the User."^^xsd:string ; 843 + rdfs:comment "A Data Field defined by the user that holds FreeFieldValues."^^xsd:string ;
837 rdfs:label "Free Field"^^xsd:string ; 844 rdfs:label "Free Field"^^xsd:string ;
838 - rdfs:subClassOf :Data ; 845 + rdfs:subClassOf :DataField ;
839 rdfs:subClassOf [ 846 rdfs:subClassOf [
840 rdf:type owl:Restriction ; 847 rdf:type owl:Restriction ;
841 :shouldHaveID "true"^^xsd:boolean ; 848 :shouldHaveID "true"^^xsd:boolean ;
...@@ -854,7 +861,7 @@ ...@@ -854,7 +861,7 @@
854 rdf:type owl:Class ; 861 rdf:type owl:Class ;
855 rdfs:comment "A Data Field that is a collection of Free Fields."^^xsd:string ; 862 rdfs:comment "A Data Field that is a collection of Free Fields."^^xsd:string ;
856 rdfs:label "Free Field Set"^^xsd:string ; 863 rdfs:label "Free Field Set"^^xsd:string ;
857 - rdfs:subClassOf :Data ; 864 + rdfs:subClassOf :DataField ;
858 rdfs:subClassOf [ 865 rdfs:subClassOf [
859 rdf:type owl:Restriction ; 866 rdf:type owl:Restriction ;
860 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 867 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
...@@ -877,10 +884,9 @@ ...@@ -877,10 +884,9 @@
877 :FreeFieldValue 884 :FreeFieldValue
878 rdf:type owl:Class ; 885 rdf:type owl:Class ;
879 :shouldHaveID "true" ; 886 :shouldHaveID "true" ;
880 - rdfs:comment "A Data Value that holds Free Field variable values."^^xsd:string ; 887 + rdfs:comment "A Data Value for a FreeField variable."^^xsd:string ;
881 rdfs:label "Free Field Value"^^xsd:string ; 888 rdfs:label "Free Field Value"^^xsd:string ;
882 - rdfs:subClassOf :Data ; 889 + rdfs:subClassOf :DataValue ;
883 - rdfs:subClassOf :Value ;
884 rdfs:subClassOf [ 890 rdfs:subClassOf [
885 rdf:type owl:Restriction ; 891 rdf:type owl:Restriction ;
886 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ; 892 owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
...@@ -2281,14 +2287,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -2281,14 +2287,6 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
2281 rdf:type :ActivityStatus ; 2287 rdf:type :ActivityStatus ;
2282 rdfs:label "Unknown"^^xsd:string ; 2288 rdfs:label "Unknown"^^xsd:string ;
2283 . 2289 .
2284 -:Value
2285 - rdf:type owl:Class ;
2286 - rdfs:comment "A Property that denotes the material or monetary worth of something relative to the price asked for it (from Oxforddictionaries.com)."^^xsd:string ;
2287 - rdfs:label "Value"^^xsd:string ;
2288 - rdfs:subClassOf <http://data.posccaesar.org/rdl/RDS7275639> ;
2289 - rdfs:subClassOf owl:Thing ;
2290 - owl:equivalentClass <http://data.posccaesar.org/rdl/RDS7945844> ;
2291 -.
2292 :VeselOperation 2290 :VeselOperation
2293 rdf:type :RiskFactor ; 2291 rdf:type :RiskFactor ;
2294 rdfs:label "Vesel operation"^^xsd:string ; 2292 rdfs:label "Vesel operation"^^xsd:string ;
......