Benchling · Schema

WorkflowOutput

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

JSON Schema

WorkflowOutput.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/WorkflowOutput.json",
  "title": "WorkflowOutput",
  "allOf": [
    {
      "$ref": "#/components/schemas/WorkflowOutputSummary"
    },
    {
      "properties": {
        "archiveRecord": {
          "allOf": [
            {
              "$ref": "#/components/schemas/ArchiveRecord"
            }
          ],
          "nullable": true
        },
        "createdAt": {
          "description": "The ISO formatted date and time that the task was created",
          "example": "2020-08-01T00:00:00.000Z",
          "nullable": false,
          "type": "string"
        },
        "creationOrigin": {
          "$ref": "#/components/schemas/CreationOrigin"
        },
        "fields": {
          "$ref": "#/components/schemas/Fields"
        },
        "modifiedAt": {
          "description": "The ISO formatted date and time that the task was last modified",
          "example": "2020-08-01T00:00:00.000Z",
          "nullable": false,
          "type": "string"
        },
        "nextOutputs": {
          "description": "The outputs in the flowchart which are generated by this output.",
          "items": {
            "$ref": "#/components/schemas/WorkflowOutputSummary"
          },
          "type": "array"
        },
        "nextTasks": {
          "description": "The downstream tasks in the flowchart which are generated by this output.",
          "items": {
            "$ref": "#/components/schemas/WorkflowTaskSummary"
          },
          "type": "array"
        },
        "sourceOutputs": {
          "description": "The outputs in the flowchart which were used to generate this output.",
          "items": {
            "$ref": "#/components/schemas/WorkflowOutputSummary"
          },
          "type": "array"
        },
        "sourceTasks": {
          "description": "The tasks in the flowchart which were used to generate this output.",
          "items": {
            "$ref": "#/components/schemas/WorkflowTaskSummary"
          },
          "type": "array"
        },
        "webURL": {
          "description": "URL of the workflow output",
          "format": "uri",
          "readOnly": true,
          "type": "string"
        },
        "workflowTask": {
          "$ref": "#/components/schemas/WorkflowTaskSummary"
        },
        "workflowTaskGroup": {
          "$ref": "#/components/schemas/WorkflowTaskGroupSummary"
        }
      }
    }
  ]
}