Benchling · Schema
AssayRun
Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| apiURL | string | The canonical url of the Run in the API. |
| archiveRecord | object | |
| createdAt | string | |
| creator | object | |
| entryId | string | |
| equipmentId | string | |
| fields | object | |
| id | string | |
| isReviewed | boolean | |
| projectId | string | |
| schema | object | |
| v3Id | string | V3 identifier for the run |
| validationComment | string | |
| validationStatus | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/benchling/json-schema/AssayRun.json",
"title": "AssayRun",
"properties": {
"apiURL": {
"description": "The canonical url of the Run in the API.",
"example": "https://benchling.com/api/v2/assay-runs/21f50003-0389-4b2a-9293-a17967b85961",
"format": "uri",
"readOnly": true,
"type": "string"
},
"archiveRecord": {
"allOf": [
{
"$ref": "#/components/schemas/ArchiveRecord"
}
],
"nullable": true
},
"createdAt": {
"example": "2021-05-06T13:43:25.752597+00:00",
"type": "string"
},
"creator": {
"$ref": "#/components/schemas/UserSummary"
},
"entryId": {
"example": "etr_Hds1XAaq",
"nullable": true,
"type": "string"
},
"equipmentId": {
"example": "eqpt_XzU5p4dR",
"nullable": true,
"type": "string"
},
"fields": {
"$ref": "#/components/schemas/Fields"
},
"id": {
"example": "77af3205-65af-457f-87f5-75462b85075a",
"type": "string"
},
"isReviewed": {
"type": "boolean"
},
"projectId": {
"example": "src_YzU5p4dR",
"nullable": true,
"type": "string"
},
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaSummary"
}
],
"example": {
"id": "assaysch_fFLKmdmG",
"name": "Assay Run"
},
"nullable": true,
"title": "SchemaProperty"
},
"v3Id": {
"description": "V3 identifier for the run",
"example": "run_21f50003",
"readOnly": true,
"type": "string"
},
"validationComment": {
"example": "Reported valid with no caveats",
"nullable": true,
"type": "string"
},
"validationStatus": {
"$ref": "#/components/schemas/AssayRunValidationStatus"
}
},
"type": "object"
}