Benchling · Schema

WorkflowTaskSchema

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

JSON Schema

WorkflowTaskSchema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowTaskSchema.json",
  "title": "WorkflowTaskSchema",
  "allOf": [
    {
      "$ref": "#/components/schemas/WorkflowTaskSchemaBase"
    },
    {
      "properties": {
        "defaultResponsibleParties": {
          "description": "Default list of users and teams that are responsible for tasks of this schema",
          "items": {
            "$ref": "#/components/schemas/PartySummary"
          },
          "type": "array"
        },
        "executionType": {
          "description": "The method by which instances of this schema are executed",
          "enum": [
            "DIRECT",
            "ENTRY",
            "FLOWCHART",
            "PROCEDURE",
            "PROCEDURE_METHOD",
            "PROCEDURE_STEP"
          ],
          "type": "string"
        },
        "flowchartConfig": {
          "allOf": [
            {
              "$ref": "#/components/schemas/WorkflowFlowchartConfigSummary"
            }
          ]
        },
        "modifiedAt": {
          "description": "DateTime the Oligo was last modified.",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        }
      }
    }
  ]
}