Benchling · Schema

AppSessionUpdate

Update a session's messages or increase timeoutSeconds.

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

Properties

Name Type Description
messages array An array of `SessionMessage` describing the current session state.
status object
timeoutSeconds integer Timeout in seconds, a value between 1 second and 30 days. Once set, it can only be increased, not decreased.
View JSON Schema on GitHub

JSON Schema

AppSessionUpdate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AppSessionUpdate.json",
  "title": "AppSessionUpdate",
  "additionalProperties": false,
  "description": "Update a session's messages or increase timeoutSeconds.",
  "properties": {
    "messages": {
      "description": "An array of `SessionMessage` describing the current session state.\n",
      "items": {
        "$ref": "#/components/schemas/AppSessionMessageCreate"
      },
      "maxItems": 10,
      "nullable": false,
      "type": "array"
    },
    "status": {
      "$ref": "#/components/schemas/AppSessionUpdateStatus"
    },
    "timeoutSeconds": {
      "description": "Timeout in seconds, a value between 1 second and 30 days. Once set, it can only be increased, not decreased.\n",
      "maximum": 2592000,
      "minimum": 1,
      "type": "integer"
    }
  },
  "type": "object"
}