是否有适当的常用属性来表示 RDF 中的最大和最小数值?

Are there appropriate and commonly used properties to express maximum and minimum numeric values in RDF?

我想知道是否有任何 RDF 属性可用于表示主题资源的最大和最小数值。 例如,资源表示具有数字 属性 值“1.6e-9 - 2.4e-9”的实验结果。 你能告诉我如何尽可能简单地 RDFize 这条语句吗?

schema.org 有大量可用属性来描述数量,包括 minValuemaxValue:

@prefix schema: <http://schema.org> .

<subj> :hasProperty [
  schema:minValue 1.6e-9;
  schema:maxValue 2.4e-9
] .