I want to use double values for class expression syntax in Protégé but I can't find any examples. All are using integer values, not double. For instance: http://protegeproject.github.io/protege/class-expression-syntax/
For instance, I want to express the height of a person in meters:
- hasHeight value 1.89
- hasHeight min 1.70
How can I do this?
What currently works (according syntax): "hasHeight some xsd:double" infers that all instances that has a xsd:double value in the property hasHeight are instances. However, I want to restrict this to a particular value range. For example: between 1.80 and 1.70. How can I do this?
I thougt this is equivalent to queries from The DL Query tab where I can query relevant instances with "hasHeight some xsd:double[<=1.80]", but this is not allowed in the class expression editor in Protégé. Why?
Thanks in advance!