{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/RequestWriteBase.json", "title": "RequestWriteBase", "allOf": [ { "$ref": "#/components/schemas/RequestBase" }, { "properties": { "assignees": { "description": "Array of assignees", "items": { "oneOf": [ { "$ref": "#/components/schemas/RequestWriteUserAssignee" }, { "$ref": "#/components/schemas/RequestWriteTeamAssignee" } ] }, "type": "array", "writeOnly": true }, "fields": { "allOf": [ { "$ref": "#/components/schemas/Fields" } ], "description": "The Legacy Request's fields" }, "projectId": { "description": "The ID of the project to which the Legacy Request belongs.", "example": "src_29pt8Ida", "type": "string" }, "requestorId": { "description": "ID of the user making the Legacy Request. If unspecified, the requestor is the request creator.\n", "example": "ent_a0SApq3z", "nullable": true, "type": "string", "writeOnly": true }, "sampleGroups": { "items": { "$ref": "#/components/schemas/RequestSampleGroupCreate" }, "type": "array" }, "scheduledOn": { "description": "Date the Legacy Request is scheduled to be executed on, in YYYY-MM-DD format.", "example": "2019-09-12", "format": "date", "type": "string", "writeOnly": true } } } ] }