DataHarmonizer icon indicating copy to clipboard operation
DataHarmonizer copied to clipboard

LinkML scheme should have min/max values as integers rather than string representation of integers

Open ddooley opened this issue 8 months ago • 1 comments

linkml-validate code fails right now if schema has "1234" string numbers, rather than 1234 numbers directly, i.e. a DH schema with

minimum_value: "0"
maximum_value: "130"

whereas this succeeds:

minimum_value: 0
maximum_value: 130

So a small fix to DH tabular_to_schema.py achieves this.

ddooley avatar Jun 14 '24 23:06 ddooley