Håvard M. Ottestad

working towards completely free field

......@@ -386,6 +386,23 @@ userfield:hasFreeFieldForSpecifiedUserField
rdf:type :Status ;
rdfs:label "Completed"^^xsd:string ;
.
:CompletelyFreeField
rdf:type owl:Class ;
rdfs:label "Completely free field"^^xsd:string ;
rdfs:subClassOf owl:Thing ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:anyType ;
owl:onProperty :hasFieldValue ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
rdfs:subClassOf [
rdf:type owl:Restriction ;
owl:onDataRange xsd:string ;
owl:onProperty :hasFieldName ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
] ;
.
:Constraint
rdf:type owl:Class ;
:shouldHaveID "true" ;
......@@ -1548,7 +1565,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
:TimeBasedResource
rdf:type owl:Class ;
:shouldHaveID "true" ;
rdfs:comment "A Resource Value for a Time Based Resource"^^xsd:string ;
rdfs:comment "A Resource Value for a Time Based Resource "^^xsd:string ;
rdfs:subClassOf :ResourceValue ;
rdfs:subClassOf [
rdf:type owl:Class ;
......@@ -1816,6 +1833,10 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
:hasFieldName
rdf:type owl:DatatypeProperty ;
.
:hasFieldValue
rdf:type owl:DatatypeProperty ;
rdfs:label "has field value"^^xsd:string ;
.
:hasFinish
rdf:type owl:DatatypeProperty ;
.
......