Benchling · Schema

Mixture

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

Properties

Name Type Description
aliases array
allowMeasuredIngredients boolean Derived from the mixture's schema.
amount string The positive numerical amount value of this mixture in string format (to preserve full precision). Pair with `units`. Supports scientific notation (1.23e4).
apiURL string The canonical url of the Mixture in the API.
archiveRecord object
authors array
createdAt string
creator object
customFields object
entityRegistryId string
fields object Mixtures can have up to one parent mixture field.
folderId string
id string
ingredients array List of ingredients on this mixture.
modifiedAt string
name string
registrationOrigin object
registryId string
schema object
units object
webURL string
View JSON Schema on GitHub

JSON Schema

Mixture.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/Mixture.json",
  "title": "Mixture",
  "properties": {
    "aliases": {
      "items": {
        "example": "FRM000",
        "type": "string"
      },
      "type": "array"
    },
    "allowMeasuredIngredients": {
      "description": "Derived from the mixture's schema.",
      "readOnly": true,
      "type": "boolean"
    },
    "amount": {
      "description": "The positive numerical amount value of this mixture in string format (to preserve full precision). Pair with `units`. Supports scientific notation (1.23e4).",
      "example": "123",
      "type": "string"
    },
    "apiURL": {
      "description": "The canonical url of the Mixture in the API.",
      "example": "https://benchling.com/api/v2/mixtures/mxt_xCUXNVyG",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "archiveRecord": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArchiveRecord"
        }
      ],
      "nullable": true
    },
    "authors": {
      "items": {
        "$ref": "#/components/schemas/UserSummary"
      },
      "type": "array"
    },
    "createdAt": {
      "example": "2017-04-18T05:54:56.247545+00:00",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "creator": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserSummary"
        },
        {
          "readOnly": true
        }
      ]
    },
    "customFields": {
      "$ref": "#/components/schemas/CustomFields"
    },
    "entityRegistryId": {
      "example": "FRM000",
      "nullable": true,
      "type": "string"
    },
    "fields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Fields"
        }
      ],
      "description": "Mixtures can have up to one parent mixture field."
    },
    "folderId": {
      "example": "lib_R8KcsjhW",
      "nullable": true,
      "type": "string"
    },
    "id": {
      "example": "mxt_xCUXNVyG",
      "type": "string"
    },
    "ingredients": {
      "description": "List of ingredients on this mixture.",
      "items": {
        "$ref": "#/components/schemas/Ingredient"
      },
      "type": "array"
    },
    "modifiedAt": {
      "example": "2017-04-18T05:55:48.685345+00:00",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "name": {
      "example": "FRM000",
      "type": "string"
    },
    "registrationOrigin": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegistrationOrigin"
        }
      ],
      "nullable": true,
      "readOnly": true
    },
    "registryId": {
      "example": "src_NetYd96a",
      "nullable": true,
      "type": "string"
    },
    "schema": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SchemaSummary"
        }
      ],
      "example": {
        "id": "ts_EM122lfJ",
        "name": "Prep"
      }
    },
    "units": {
      "$ref": "#/components/schemas/MixtureMeasurementUnits"
    },
    "webURL": {
      "example": "https://benchling.com/benchling/f/R8KcsjhW-academic-registry/mxt-xCUXNVyG-sbn000/edit",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}