Benchling · Schema

Measurement

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
units string Can only be null if value is also null
value number Can only be null if units is also null
View JSON Schema on GitHub

JSON Schema

Measurement.json Raw ↑
{
  "$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"
}