Benchling · Schema

AppSession

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

Properties

Name Type Description
app object
createdAt string
id string
messages array An array of `SessionMessage` describing the current session state.
modifiedAt string
name string A brief description of the app's actions for users. Length must be between 3-100 chars. It becomes immutable once a value is set.
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

AppSession.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AppSession.json",
  "title": "AppSession",
  "additionalProperties": false,
  "properties": {
    "app": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AppSummary"
        },
        {
          "nullable": false
        }
      ]
    },
    "createdAt": {
      "format": "date-time",
      "nullable": false,
      "type": "string"
    },
    "id": {
      "nullable": false,
      "type": "string"
    },
    "messages": {
      "description": "An array of `SessionMessage` describing the current session state.\n",
      "items": {
        "$ref": "#/components/schemas/AppSessionMessage"
      },
      "nullable": true,
      "type": "array"
    },
    "modifiedAt": {
      "format": "date-time",
      "nullable": false,
      "type": "string"
    },
    "name": {
      "description": "A brief description of the app's actions for users. Length must be between 3-100 chars. It becomes immutable once a value is set.",
      "maxLength": 100,
      "minLength": 3,
      "nullable": false,
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/AppSessionStatus"
    },
    "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,
      "nullable": false,
      "type": "integer"
    }
  },
  "type": "object"
}