Benchling · Schema

EntryExternalFile

The ExternalFile resource stores metadata about the file. The actual original file can be downloaded by using the 'downloadURL' property.

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

Properties

Name Type Description
downloadURL string A short-lived URL that can be used to download the original file.
expiresAt integer UNIX timestamp when downloadURL expires.
id string ID of the external file
size integer Size, in bytes, of the external file
View JSON Schema on GitHub

JSON Schema

EntryExternalFile.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/EntryExternalFile.json",
  "title": "EntryExternalFile",
  "description": "The ExternalFile resource stores metadata about the file. The actual original file can be downloaded by using the 'downloadURL' property.\n",
  "properties": {
    "downloadURL": {
      "description": "A short-lived URL that can be used to download the original file.\n",
      "type": "string"
    },
    "expiresAt": {
      "description": "UNIX timestamp when downloadURL expires.",
      "type": "integer"
    },
    "id": {
      "description": "ID of the external file",
      "type": "string"
    },
    "size": {
      "description": "Size, in bytes, of the external file",
      "type": "integer"
    }
  },
  "type": "object"
}