Benchling · Schema

WarehouseCredentialsCreate

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

Properties

Name Type Description
expiresIn integer Duration, in seconds, that credentials should be active for. Must be greater than 0 and less than 3600.
View JSON Schema on GitHub

JSON Schema

WarehouseCredentialsCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WarehouseCredentialsCreate.json",
  "title": "WarehouseCredentialsCreate",
  "additionalProperties": false,
  "properties": {
    "expiresIn": {
      "description": "Duration, in seconds, that credentials should be active for. Must be greater than 0 and less than 3600.\n",
      "maximum": 3599,
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "expiresIn"
  ],
  "type": "object"
}