Benchling · Schema

FileCreate

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

Properties

Name Type Description
customFields object Custom field values to set on the file
filename string Filename for the file
folderId string ID of the folder that contains the file
name string Display name for the file
View JSON Schema on GitHub

JSON Schema

FileCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/FileCreate.json",
  "title": "FileCreate",
  "properties": {
    "customFields": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomFields"
        }
      ],
      "description": "Custom field values to set on the file"
    },
    "filename": {
      "description": "Filename for the file",
      "example": "IC50Chart.png",
      "nullable": false,
      "type": "string"
    },
    "folderId": {
      "description": "ID of the folder that contains the file",
      "example": "lib_bf0636",
      "nullable": false,
      "type": "string"
    },
    "name": {
      "description": "Display name for the file",
      "example": "IC50 Chart",
      "nullable": false,
      "type": "string"
    }
  },
  "type": "object"
}