Skip to content

Commit 6409f50

Browse files
authored
Merge pull request #1441 from w3c/1440-time-cardinality-datatype
Fixed datatype Thanks @ajnelson-nist
2 parents 047e2ab + 0614468 commit 6409f50

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

time/rdf/time.ttl

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
dct:creator <mailto:panfeng66@gmail.com> ;
1818
dct:isVersionOf <http://www.w3.org/TR/owl-time> ;
1919
dct:license <https://creativecommons.org/licenses/by/4.0/> ;
20-
dct:modified "2021-01-27"^^xsd:date ;
20+
dct:modified "2024-02-29"^^xsd:date ;
2121
dct:rights "Copyright © 2006-2021 W3C, OGC. W3C and OGC liability, trademark and document use rules apply."@en ;
2222
rdfs:label "OWL-Time"@en ;
2323
rdfs:seeAlso <http://dx.doi.org/10.3233/SW-150187> ;
@@ -31,6 +31,7 @@
3131
skos:changeNote "2017-02 - intervalIn, intervalDisjoint, monthOfYear added; TemporalUnit subclass of TemporalDuration" ;
3232
skos:changeNote "2017-04-06 - hasTime, hasXSDDuration added; Number removed; all duration elements changed to xsd:decimal" ;
3333
skos:changeNote "2021-01-27 - clarified definition and label for time:after and time:before" ;
34+
skos:changeNote "2024-02-29 - Fixed datatype on all cardinality restrictions" ;
3435
skos:historyNote """Update of OWL-Time ontology, extended to support general temporal reference systems.
3536
3637
Ontology engineering by Simon J D Cox"""@en ;
@@ -586,37 +587,37 @@ Detailed guidance about working with time zones is given in http://www.w3.org/TR
586587
rdfs:subClassOf :DurationDescription ;
587588
rdfs:subClassOf [
588589
rdf:type owl:Restriction ;
589-
owl:cardinality 0 ;
590+
owl:cardinality "0"^^xsd:nonNegativeInteger ;
590591
owl:onProperty :days ;
591592
] ;
592593
rdfs:subClassOf [
593594
rdf:type owl:Restriction ;
594-
owl:cardinality 0 ;
595+
owl:cardinality "0"^^xsd:nonNegativeInteger ;
595596
owl:onProperty :hours ;
596597
] ;
597598
rdfs:subClassOf [
598599
rdf:type owl:Restriction ;
599-
owl:cardinality 0 ;
600+
owl:cardinality "0"^^xsd:nonNegativeInteger ;
600601
owl:onProperty :minutes ;
601602
] ;
602603
rdfs:subClassOf [
603604
rdf:type owl:Restriction ;
604-
owl:cardinality 0 ;
605+
owl:cardinality "0"^^xsd:nonNegativeInteger ;
605606
owl:onProperty :months ;
606607
] ;
607608
rdfs:subClassOf [
608609
rdf:type owl:Restriction ;
609-
owl:cardinality 0 ;
610+
owl:cardinality "0"^^xsd:nonNegativeInteger ;
610611
owl:onProperty :seconds ;
611612
] ;
612613
rdfs:subClassOf [
613614
rdf:type owl:Restriction ;
614-
owl:cardinality 0 ;
615+
owl:cardinality "0"^^xsd:nonNegativeInteger ;
615616
owl:onProperty :weeks ;
616617
] ;
617618
rdfs:subClassOf [
618619
rdf:type owl:Restriction ;
619-
owl:cardinality 1 ;
620+
owl:cardinality "1"^^xsd:nonNegativeInteger ;
620621
owl:onProperty :years ;
621622
] ;
622623
owl:deprecated "true"^^xsd:boolean ;

0 commit comments

Comments
 (0)