{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/Measurement.json", "title": "Measurement", "properties": { "units": { "description": "Can only be null if value is also null", "nullable": true, "type": "string" }, "value": { "description": "Can only be null if units is also null", "nullable": true, "type": "number" } }, "required": [ "value", "units" ], "type": "object" }