Open cmdoret opened 2 years ago
This makes sense to me. The pending property suggestedAge illustrates that QuantitativeValues is already being used as an expected value for age-related properties, so it's a reasonable suggestion.
Something like:
"samplingAge": {
"@type": "schema:QuantitativeValue",
"unitText": "hour",
"value": "48"
}
or
"samplingAge": {
"@type": "schema:QuantitativeValue",
"unitCode": {"@id": "QUDT:h"},
"value": "48"
}
Hello and thanks for the great resource ! Currently the
samplingAge
property ofBioSample
has rangeschema:Integer
. I assume the value is implicitely meant to be in years, which works for some species.In many other species (flies, mice), the age is measured using a different unit. I think the unit should also be reflected in the property if needed. Would it be make sense to add schema:QuantitativeValue to the range of
samplingAge
so that a unit may be specified along with the value ?