Benchling · Schema

FileUpdate

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

Properties

Name Type Description
customFields object Custom field values to add to the file
errorMessage string Error message for the file upload
folderId string ID of the folder that the file is moved into
uploadStatus string
View JSON Schema on GitHub

JSON Schema

FileUpdate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/FileUpdate.json",
  "title": "FileUpdate",
  "properties": {
    "customFields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomFields"
        }
      ],
      "description": "Custom field values to add to the file"
    },
    "errorMessage": {
      "description": "Error message for the file upload",
      "type": "string"
    },
    "folderId": {
      "description": "ID of the folder that the file is moved into",
      "example": "lib_bf0636",
      "type": "string"
    },
    "uploadStatus": {
      "enum": [
        "SUCCEEDED",
        "FAILED_VALIDATION"
      ],
      "type": "string"
    }
  },
  "type": "object"
}