Benchling · Schema

AppConfigItemApiMixin

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

Properties

Name Type Description
apiURL string
app object
createdAt string DateTime the app config item was created
id string
modifiedAt string DateTime the app config item was last modified
path array Array-based representation of config item's location in the tree in order from top to bottom.
type string Type of the app config item
View JSON Schema on GitHub

JSON Schema

AppConfigItemApiMixin.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AppConfigItemApiMixin.json",
  "title": "AppConfigItemApiMixin",
  "properties": {
    "apiURL": {
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "app": {
      "properties": {
        "id": {
          "description": "The id of the Benchling app to which this configuration item belongs",
          "nullable": false,
          "type": "string"
        }
      },
      "type": "object"
    },
    "createdAt": {
      "description": "DateTime the app config item was created",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "id": {
      "readOnly": true,
      "type": "string"
    },
    "modifiedAt": {
      "description": "DateTime the app config item was last modified",
      "format": "date-time",
      "readOnly": true,
      "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"
    },
    "type": {
      "description": "Type of the app config item",
      "type": "string"
    }
  },
  "type": "object"
}