Benchling · Schema

AutomationInputGenerator

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
View JSON Schema on GitHub

JSON Schema

AutomationInputGenerator.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AutomationInputGenerator.json",
  "title": "AutomationInputGenerator",
  "allOf": [
    {
      "$ref": "#/components/schemas/AutomationFile"
    },
    {
      "properties": {
        "apiURL": {
          "description": "The canonical url of the Automation Input Generator in the API.",
          "example": "https://benchling.com/api/v2/automation-input-generators/aif_C3wGA9HF",
          "format": "uri",
          "readOnly": true,
          "type": "string"
        },
        "createdAt": {
          "description": "DateTime the Automation Input Generator was last modified",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "id": {
          "example": "aif_C3wGA9HF",
          "type": "string"
        },
        "modifiedAt": {
          "description": "DateTime the Automation Input Generator was last modified",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "transforms": {
          "items": {
            "allOf": [
              {
                "$ref": "#/components/schemas/LabAutomationTransform"
              }
            ],
            "nullable": true
          },
          "type": "array"
        }
      },
      "type": "object"
    }
  ]
}