Skip to content

Commit 51bf6cf

Browse files
committed
Change SimpleUnitOfMeasure restriction on property baseConversionRatio
If defined with someValuesFrom xsd:integer, Protege considers that it is an object property. Possibly a Protege bug, but in any case the cardinality restriction is semantically more accurate: the proxy member cannot have more than one sequence value. Change restriction from someValuesFrom to cardinality. In the former case, Protege interprets baseConversionRatio as an object property. Could be a Protege bug, but in any case the cardinality restriction is more accurate.
1 parent 918bba5 commit 51bf6cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gistCore.ttl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2225,7 +2225,7 @@ gist:SimpleUnitOfMeasure
22252225
[
22262226
a owl:Restriction ;
22272227
owl:onProperty gist:baseConversionRatio ;
2228-
owl:someValuesFrom xsd:double ;
2228+
owl:cardinality "1"^^xsd:nonNegativeInteger ;
22292229
]
22302230
) ;
22312231
] ;

0 commit comments

Comments
 (0)