Benchling · Schema

File

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
View JSON Schema on GitHub

JSON Schema

File.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/File.json",
  "title": "File",
  "allOf": [
    {
      "$ref": "#/components/schemas/FileStatus"
    },
    {
      "properties": {
        "archiveRecord": {
          "allOf": [
            {
              "$ref": "#/components/schemas/ArchiveRecord"
            }
          ],
          "description": "ArchiveRecord Resource if the file is archived. This is null if the file is not archived.\n",
          "nullable": true
        },
        "createdAt": {
          "description": "Date and time the file was created",
          "example": "2023-04-23T01:30:50.970926+00:00",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "creator": {
          "allOf": [
            {
              "$ref": "#/components/schemas/UserSummary"
            },
            {
              "description": "UserSummary of the user who created the file"
            },
            {
              "readOnly": true
            }
          ]
        },
        "customFields": {
          "allOf": [
            {
              "$ref": "#/components/schemas/CustomFields"
            }
          ],
          "description": "Custom field values of the file"
        },
        "displayId": {
          "description": "User-friendly ID of the file",
          "readOnly": true,
          "type": "string"
        },
        "filename": {
          "example": "IC50Chart.png",
          "type": "string"
        },
        "folderId": {
          "description": "ID of the folder that contains the file",
          "example": "lib_bf0636",
          "nullable": false,
          "type": "string"
        },
        "id": {
          "example": "file_Of5GuBSq",
          "type": "string"
        },
        "modifiedAt": {
          "description": "Date and time the file was last modified",
          "example": "2023-04-23T01:30:50.970926+00:00",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "name": {
          "example": "IC50 Chart",
          "type": "string"
        }
      },
      "type": "object"
    }
  ]
}