Benchling · Schema

LabAutomationTransform

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

Properties

Name Type Description
apiURL string The canonical url of the transform in the API.
blobId string
customTransformId string
errors object
id string
inputGeneratorId string
modifiedAt string DateTime the transform was last modified.
outputProcessorId string
status string
View JSON Schema on GitHub

JSON Schema

LabAutomationTransform.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/LabAutomationTransform.json",
  "title": "LabAutomationTransform",
  "properties": {
    "apiURL": {
      "description": "The canonical url of the transform in the API.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "blobId": {
      "format": "uuid",
      "nullable": true,
      "type": "string"
    },
    "customTransformId": {
      "format": "uuid",
      "nullable": true,
      "type": "string"
    },
    "errors": {
      "$ref": "#/components/schemas/LabAutomationBenchlingAppErrors"
    },
    "id": {
      "type": "string"
    },
    "inputGeneratorId": {
      "nullable": true,
      "type": "string"
    },
    "modifiedAt": {
      "description": "DateTime the transform was last modified.",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "outputProcessorId": {
      "nullable": true,
      "type": "string"
    },
    "status": {
      "enum": [
        "NOT_STARTED",
        "RUNNING",
        "FAILED",
        "SUCCEEDED"
      ],
      "type": "string"
    }
  },
  "type": "object"
}