Benchling · Schema

FloatFieldDefinition

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
View JSON Schema on GitHub

JSON Schema

FloatFieldDefinition.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/FloatFieldDefinition.json",
  "title": "FloatFieldDefinition",
  "allOf": [
    {
      "$ref": "#/components/schemas/FieldDefinition"
    },
    {
      "properties": {
        "decimalPrecision": {
          "nullable": true,
          "type": "number"
        },
        "legalTextDropdownId": {
          "nullable": true,
          "type": "string"
        },
        "numericMax": {
          "nullable": true,
          "type": "number"
        },
        "numericMin": {
          "nullable": true,
          "type": "number"
        },
        "type": {
          "enum": [
            "float"
          ],
          "type": "string"
        },
        "unit": {
          "allOf": [
            {
              "$ref": "#/components/schemas/UnitSummary"
            }
          ],
          "nullable": true
        }
      },
      "type": "object"
    }
  ]
}