{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/ContainerTransfer.json", "title": "ContainerTransfer", "additionalProperties": false, "allOf": [ { "$ref": "#/components/schemas/ContainerTransferBase" }, { "properties": { "destinationContents": { "description": "This represents what the contents of the destination container should look like post-transfer.\n", "items": { "$ref": "#/components/schemas/ContainerTransferDestinationContentsItem" }, "type": "array" }, "destinationQuantity": { "allOf": [ { "$ref": "#/components/schemas/ContainerQuantity" } ], "description": "This represents the desired final quantity of the destination container, post-dilution. If you don't want to dilute the destination container, you can omit this parameter. Supports mass, volume, and other quantities.\n" }, "destinationVolume": { "allOf": [ { "$ref": "#/components/schemas/DeprecatedContainerVolumeForInput" } ], "description": "Deprecated - use destinationQuantity instead.\n" } }, "required": [ "destinationContents" ], "type": "object" } ], "type": "object" }