Benchling · Schema

MultipleContainersTransfer

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

JSON Schema

MultipleContainersTransfer.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/MultipleContainersTransfer.json",
  "title": "MultipleContainersTransfer",
  "allOf": [
    {
      "$ref": "#/components/schemas/ContainerTransferBase"
    },
    {
      "properties": {
        "destinationContainerId": {
          "description": "ID of container that will be transferred into.",
          "type": "string"
        },
        "finalQuantity": {
          "$ref": "#/components/schemas/ContainerQuantity"
        },
        "finalVolume": {
          "$ref": "#/components/schemas/DeprecatedContainerVolumeForInput"
        },
        "sourceConcentration": {
          "allOf": [
            {
              "$ref": "#/components/schemas/Measurement"
            }
          ],
          "description": "Concentration at which to transfer entities. Not applicable for container-to-container transfers (the concentration of the source container\u2019s contents will be used).\n",
          "example": {
            "units": "g/mL",
            "value": 10
          }
        }
      },
      "required": [
        "destinationContainerId"
      ],
      "type": "object"
    }
  ],
  "type": "object"
}