{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/WorksheetReviewChanges.json", "title": "WorksheetReviewChanges", "description": "Contents include basic worksheet metadata along with its review changes, including any snapshot information if present.\n", "properties": { "apiURL": { "description": "The canonical url of the Worksheet in the API.", "example": "https://benchling.com/api/v2-beta/worksheets/wks_0ma1gawd/review-changes", "format": "uri", "nullable": true, "readOnly": true, "type": "string" }, "createdAt": { "description": "DateTime the worksheet was created at", "format": "date-time", "readOnly": true, "type": "string" }, "creator": { "allOf": [ { "$ref": "#/components/schemas/UserSummary" } ], "description": "UserSummary Resource of the user who created the worksheet", "readOnly": true }, "folderId": { "description": "ID of the folder that contains the worksheet", "type": "string" }, "id": { "description": "ID of the worksheet", "example": "wks_0ma1gawd", "type": "string" }, "modifiedAt": { "description": "DateTime the worksheet was last modified", "type": "string" }, "name": { "description": "Title of the worksheet", "type": "string" }, "reviewRecord": { "description": "Review record if set", "nullable": true, "properties": { "comment": { "description": "Reviewer's Comments", "type": "string" }, "reviewChanges": { "description": "A list of the Review Changes that have been made to this worksheet", "items": { "$ref": "#/components/schemas/ReviewChange" }, "type": "array" }, "status": { "description": "Review Status of the worksheet", "enum": [ "ACCEPTED", "NEEDS_REVIEW", "REJECTED", "RETRACTED", "ACCEPTANCE_SNAPSHOT_IN_PROGRESS", "REVIEW_SNAPSHOT_IN_PROGRESS", "IN_PROGRESS", "ACTION_REQUIRED" ], "type": "string" } }, "type": "object" }, "webURL": { "description": "URL of the worksheet", "type": "string" } }, "type": "object" }