Tore Christiansen

Added id to FreeFieldSet

...@@ -883,12 +883,19 @@ ...@@ -883,12 +883,19 @@
883 . 883 .
884 :FreeFieldSet 884 :FreeFieldSet
885 rdf:type owl:Class ; 885 rdf:type owl:Class ;
886 + :shouldHaveID "true"^^xsd:boolean ;
886 rdfs:comment "A Data Field that is a collection of Free Fields."^^xsd:string ; 887 rdfs:comment "A Data Field that is a collection of Free Fields."^^xsd:string ;
887 rdfs:label "Free Field Set"^^xsd:string ; 888 rdfs:label "Free Field Set"^^xsd:string ;
888 rdfs:subClassOf owl:Thing ; 889 rdfs:subClassOf owl:Thing ;
889 rdfs:subClassOf [ 890 rdfs:subClassOf [
890 rdf:type owl:Restriction ; 891 rdf:type owl:Restriction ;
891 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ; 892 owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
893 + owl:onClass :ExternalReference ;
894 + owl:onProperty :hasExternalReference ;
895 + ] ;
896 + rdfs:subClassOf [
897 + rdf:type owl:Restriction ;
898 + owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
892 owl:onClass :FreeField ; 899 owl:onClass :FreeField ;
893 owl:onProperty :hasFreeField ; 900 owl:onProperty :hasFreeField ;
894 ] ; 901 ] ;
......