Benchling · Schema
DnaSequence
Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| aliases | array | |
| annotations | array | |
| apiURL | string | The canonical url of the DNA Sequence in the API. |
| archiveRecord | object | |
| authors | array | |
| bases | string | |
| createdAt | string | |
| creator | object | |
| customFields | object | |
| dnaAlignmentIds | array | API IDs of Nucleotide Alignments involving the RNA sequence |
| entityRegistryId | string | |
| fields | object | |
| folderId | string | |
| id | string | |
| isCircular | boolean | |
| length | integer | |
| modifiedAt | string | |
| name | string | |
| parts | array | |
| primers | array | |
| registrationOrigin | object | |
| registryId | string | |
| schema | object | |
| transcriptions | array | |
| translations | array | |
| url | string | The path of the web URL, omitting the tenant domain |
| webURL | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/benchling/json-schema/DnaSequence.json",
"title": "DnaSequence",
"properties": {
"aliases": {
"items": {
"type": "string"
},
"type": "array"
},
"annotations": {
"items": {
"$ref": "#/components/schemas/DnaAnnotation"
},
"type": "array"
},
"apiURL": {
"description": "The canonical url of the DNA Sequence in the API.",
"example": "https://benchling.com/api/v2/dna-sequences/seq_asQya4lk",
"format": "uri",
"readOnly": true,
"type": "string"
},
"archiveRecord": {
"allOf": [
{
"$ref": "#/components/schemas/ArchiveRecord"
}
],
"nullable": true
},
"authors": {
"items": {
"$ref": "#/components/schemas/UserSummary"
},
"type": "array"
},
"bases": {
"type": "string"
},
"createdAt": {
"format": "date-time",
"readOnly": true,
"type": "string"
},
"creator": {
"$ref": "#/components/schemas/UserSummary"
},
"customFields": {
"$ref": "#/components/schemas/CustomFields"
},
"dnaAlignmentIds": {
"description": "API IDs of Nucleotide Alignments involving the RNA sequence",
"items": {
"type": "string"
},
"type": "array"
},
"entityRegistryId": {
"nullable": true,
"type": "string"
},
"fields": {
"$ref": "#/components/schemas/Fields"
},
"folderId": {
"nullable": true,
"type": "string"
},
"id": {
"type": "string"
},
"isCircular": {
"type": "boolean"
},
"length": {
"type": "integer"
},
"modifiedAt": {
"format": "date-time",
"readOnly": true,
"type": "string"
},
"name": {
"type": "string"
},
"parts": {
"items": {
"$ref": "#/components/schemas/DnaSequencePart"
},
"type": "array"
},
"primers": {
"items": {
"$ref": "#/components/schemas/Primer"
},
"type": "array"
},
"registrationOrigin": {
"allOf": [
{
"$ref": "#/components/schemas/RegistrationOrigin"
}
],
"nullable": true,
"readOnly": true
},
"registryId": {
"nullable": true,
"type": "string"
},
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaSummary"
}
],
"nullable": true
},
"transcriptions": {
"items": {
"$ref": "#/components/schemas/DnaSequenceTranscription"
},
"type": "array"
},
"translations": {
"items": {
"$ref": "#/components/schemas/Translation"
},
"type": "array"
},
"url": {
"description": "The path of the web URL, omitting the tenant domain",
"type": "string"
},
"webURL": {
"readOnly": true,
"type": "string"
}
},
"type": "object"
}