Benchling · Schema

AppConfigItemCreateMixin

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

Properties

Name Type Description
appId string App id to which this config item belongs.
path array Array-based representation of config item's location in the tree in order from top to bottom.
View JSON Schema on GitHub

JSON Schema

AppConfigItemCreateMixin.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AppConfigItemCreateMixin.json",
  "title": "AppConfigItemCreateMixin",
  "properties": {
    "appId": {
      "description": "App id to which this config item belongs.",
      "example": "app_J39na03L1nsLS34o",
      "type": "string"
    },
    "path": {
      "description": "Array-based representation of config item's location in the tree in order from top to bottom.",
      "example": [
        "My Schema 1",
        "My Field 1"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "path",
    "appId"
  ],
  "type": "object"
}