Benchling · Schema

ReviewChange

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

Properties

Name Type Description
action string The action which was performed with this change
comment string The comment which was left when the Review Change was submitted
createdAt string DateTime the Review Change was created at
esigned boolean Was the action verified through an e-signature compliant step
id string
reviewSnapshot object Review Snapshot generated from this Review Change
View JSON Schema on GitHub

JSON Schema

ReviewChange.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/ReviewChange.json",
  "title": "ReviewChange",
  "additionalProperties": false,
  "properties": {
    "action": {
      "description": "The action which was performed with this change",
      "enum": [
        "SEND_FOR_REVIEW",
        "ACCEPT",
        "REJECT",
        "COMMENT",
        "RETRACT"
      ],
      "type": "string"
    },
    "comment": {
      "description": "The comment which was left when the Review Change was submitted",
      "nullable": true,
      "type": "string"
    },
    "createdAt": {
      "description": "DateTime the Review Change was created at",
      "format": "date-time",
      "type": "string"
    },
    "esigned": {
      "description": "Was the action verified through an e-signature compliant step",
      "type": "boolean"
    },
    "id": {
      "type": "string"
    },
    "reviewSnapshot": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReviewSnapshot"
        }
      ],
      "description": "Review Snapshot generated from this Review Change",
      "nullable": true
    }
  },
  "type": "object"
}