Benchling · Schema

AutomationFile

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

Properties

Name Type Description
assayRunId string
automationFileConfig object
file object
id string
status string
View JSON Schema on GitHub

JSON Schema

AutomationFile.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AutomationFile.json",
  "title": "AutomationFile",
  "properties": {
    "assayRunId": {
      "example": "588aca02-1a20-4b94-a40f-b3f3a0081749",
      "type": "string"
    },
    "automationFileConfig": {
      "properties": {
        "name": {
          "example": "MyInstrumentName",
          "type": "string"
        }
      },
      "type": "object"
    },
    "file": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Blob"
        }
      ],
      "nullable": true
    },
    "id": {
      "type": "string"
    },
    "status": {
      "enum": [
        "SUCCEEDED",
        "FAILED",
        "NOT_STARTED",
        "RUNNING"
      ],
      "type": "string"
    }
  },
  "type": "object"
}