Håvard M. Ottestad

working towards completely free field

...@@ -386,6 +386,23 @@ userfield:hasFreeFieldForSpecifiedUserField ...@@ -386,6 +386,23 @@ userfield:hasFreeFieldForSpecifiedUserField
386 rdf:type :Status ; 386 rdf:type :Status ;
387 rdfs:label "Completed"^^xsd:string ; 387 rdfs:label "Completed"^^xsd:string ;
388 . 388 .
389 +:CompletelyFreeField
390 + rdf:type owl:Class ;
391 + rdfs:label "Completely free field"^^xsd:string ;
392 + rdfs:subClassOf owl:Thing ;
393 + rdfs:subClassOf [
394 + rdf:type owl:Restriction ;
395 + owl:onDataRange xsd:anyType ;
396 + owl:onProperty :hasFieldValue ;
397 + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
398 + ] ;
399 + rdfs:subClassOf [
400 + rdf:type owl:Restriction ;
401 + owl:onDataRange xsd:string ;
402 + owl:onProperty :hasFieldName ;
403 + owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
404 + ] ;
405 +.
389 :Constraint 406 :Constraint
390 rdf:type owl:Class ; 407 rdf:type owl:Class ;
391 :shouldHaveID "true" ; 408 :shouldHaveID "true" ;
...@@ -1548,7 +1565,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -1548,7 +1565,7 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
1548 :TimeBasedResource 1565 :TimeBasedResource
1549 rdf:type owl:Class ; 1566 rdf:type owl:Class ;
1550 :shouldHaveID "true" ; 1567 :shouldHaveID "true" ;
1551 - rdfs:comment "A Resource Value for a Time Based Resource"^^xsd:string ; 1568 + rdfs:comment "A Resource Value for a Time Based Resource "^^xsd:string ;
1552 rdfs:subClassOf :ResourceValue ; 1569 rdfs:subClassOf :ResourceValue ;
1553 rdfs:subClassOf [ 1570 rdfs:subClassOf [
1554 rdf:type owl:Class ; 1571 rdf:type owl:Class ;
...@@ -1816,6 +1833,10 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel ...@@ -1816,6 +1833,10 @@ NOTE 2 A Plan for Activity can define a number of part activities which are rel
1816 :hasFieldName 1833 :hasFieldName
1817 rdf:type owl:DatatypeProperty ; 1834 rdf:type owl:DatatypeProperty ;
1818 . 1835 .
1836 +:hasFieldValue
1837 + rdf:type owl:DatatypeProperty ;
1838 + rdfs:label "has field value"^^xsd:string ;
1839 +.
1819 :hasFinish 1840 :hasFinish
1820 rdf:type owl:DatatypeProperty ; 1841 rdf:type owl:DatatypeProperty ;
1821 . 1842 .
......