Benchling · Schema
Oligo
Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| aliases | array | Array of aliases |
| apiURL | string | The canonical url of the Oligo in the API. |
| archiveRecord | object | |
| authors | array | |
| bases | string | Base pairs of the Oligo. |
| createdAt | string | DateTime the Oligo was created. |
| creator | object | |
| customFields | object | Custom fields set on the Oligo. |
| entityRegistryId | string | Registry ID of the Oligo if registered. |
| fields | object | |
| folderId | string | ID of the folder that contains the Oligo. |
| id | string | ID of the Oligo. |
| length | integer | Number of bases in the Oligo. |
| modifiedAt | string | DateTime the Oligo was last modified. |
| name | string | Name of the Oligo. |
| nucleotideType | string | Nucleotide type of the Oligo. |
| registrationOrigin | object | |
| registryId | string | Registry the Oligo is registered in. |
| schema | object | |
| webURL | string | URL of the Oligo. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/benchling/json-schema/Oligo.json",
"title": "Oligo",
"discriminator": {
"mapping": {
"DNA": "DnaOligo",
"RNA": "RnaOligo"
},
"propertyName": "nucleotideType"
},
"properties": {
"aliases": {
"description": "Array of aliases",
"items": {
"type": "string"
},
"type": "array"
},
"apiURL": {
"description": "The canonical url of the Oligo in the API.",
"format": "uri",
"readOnly": true,
"type": "string"
},
"archiveRecord": {
"allOf": [
{
"$ref": "#/components/schemas/ArchiveRecord"
}
],
"nullable": true
},
"authors": {
"items": {
"$ref": "#/components/schemas/UserSummary"
},
"type": "array"
},
"bases": {
"description": "Base pairs of the Oligo.",
"example": "ACTTTTT",
"type": "string"
},
"createdAt": {
"description": "DateTime the Oligo was created.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"creator": {
"$ref": "#/components/schemas/UserSummary"
},
"customFields": {
"allOf": [
{
"$ref": "#/components/schemas/CustomFields"
}
],
"description": "Custom fields set on the Oligo."
},
"entityRegistryId": {
"description": "Registry ID of the Oligo if registered.",
"nullable": true,
"type": "string"
},
"fields": {
"$ref": "#/components/schemas/Fields"
},
"folderId": {
"description": "ID of the folder that contains the Oligo.",
"nullable": true,
"type": "string"
},
"id": {
"description": "ID of the Oligo.",
"example": "seq_bhuDUw9D",
"type": "string"
},
"length": {
"description": "Number of bases in the Oligo.",
"type": "integer"
},
"modifiedAt": {
"description": "DateTime the Oligo was last modified.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"name": {
"description": "Name of the Oligo.",
"type": "string"
},
"nucleotideType": {
"description": "Nucleotide type of the Oligo.",
"enum": [
"DNA",
"RNA"
],
"type": "string"
},
"registrationOrigin": {
"allOf": [
{
"$ref": "#/components/schemas/RegistrationOrigin"
}
],
"nullable": true,
"readOnly": true
},
"registryId": {
"description": "Registry the Oligo is registered in.",
"nullable": true,
"type": "string"
},
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaSummary"
}
],
"nullable": true
},
"webURL": {
"description": "URL of the Oligo.",
"example": "https://benchling.com/benchling/f/lib_hBHqKbzE-oligos/seq_bhuDUw9D-test-oligo-abc/edit",
"format": "uri",
"readOnly": true,
"type": "string"
}
},
"type": "object"
}