Benchling · Schema
RnaSequence
Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| aliases | array | |
| alignmentIds | array | API IDs of Nucleotide Alignments involving the RNA sequence |
| annotations | array | |
| apiURL | string | The canonical url of the RNA Sequence in the API. |
| archiveRecord | object | |
| authors | array | |
| bases | string | |
| createdAt | string | |
| creator | object | |
| customFields | object | |
| customNotation | string | Representation of the RNA Sequence in the custom notation specified in the request. Null if no notation was specified. |
| customNotationName | string | Name of the custom notation specified in the request. Null if no notation was specified. |
| entityRegistryId | string | |
| fields | object | |
| folderId | string | |
| helm | string | Representation of the RNA Sequence in HELM syntax, including any chemical modifications. |
| id | string | |
| isCircular | boolean | |
| length | integer | |
| modifiedAt | string | |
| name | string | |
| parts | array | |
| primers | array | |
| registrationOrigin | object | |
| registryId | string | |
| schema | object | |
| 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/RnaSequence.json",
"title": "RnaSequence",
"properties": {
"aliases": {
"items": {
"type": "string"
},
"type": "array"
},
"alignmentIds": {
"description": "API IDs of Nucleotide Alignments involving the RNA sequence",
"items": {
"type": "string"
},
"type": "array"
},
"annotations": {
"items": {
"$ref": "#/components/schemas/RnaAnnotation"
},
"type": "array"
},
"apiURL": {
"description": "The canonical url of the RNA Sequence in the API.",
"example": "https://benchling.com/api/v2/rna-sequences/seq_asZya4lk",
"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"
},
"customNotation": {
"description": "Representation of the RNA Sequence in the custom notation specified in the request. Null if no notation was specified.",
"nullable": true,
"type": "string"
},
"customNotationName": {
"description": "Name of the custom notation specified in the request. Null if no notation was specified.",
"nullable": true,
"type": "string"
},
"entityRegistryId": {
"nullable": true,
"type": "string"
},
"fields": {
"$ref": "#/components/schemas/Fields"
},
"folderId": {
"nullable": true,
"type": "string"
},
"helm": {
"description": "Representation of the RNA Sequence in HELM syntax, including any chemical modifications.",
"example": "RNA1{r(A)p.r(C)[Ssp].r(U)p.r(U)p.r(U)p.r(U)p.r(U)p}$$$$V2.0",
"nullable": true,
"type": "string"
},
"id": {
"type": "string"
},
"isCircular": {
"example": false,
"type": "boolean"
},
"length": {
"type": "integer"
},
"modifiedAt": {
"format": "date-time",
"readOnly": true,
"type": "string"
},
"name": {
"type": "string"
},
"parts": {
"items": {
"$ref": "#/components/schemas/RnaSequencePart"
},
"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
},
"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"
}