{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://opensea.io/schemas/NumericTraitData", "title": "NumericTraitData", "type": "object", "properties": { "type": { "type": "string" }, "min": { "type": "number", "format": "float" }, "max": { "type": "number", "format": "float" } }, "required": [ "type" ] }