Benchling · Schema

DnaAnnotation

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
View JSON Schema on GitHub

JSON Schema

DnaAnnotation.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/DnaAnnotation.json",
  "title": "DnaAnnotation",
  "allOf": [
    {
      "$ref": "#/components/schemas/SequenceFeatureBase"
    },
    {
      "properties": {
        "end": {
          "description": "0-based exclusive end index. The end of the sequence is always represented as 0.",
          "type": "integer"
        },
        "start": {
          "description": "0-based inclusive start index.",
          "type": "integer"
        },
        "strand": {
          "maximum": 1,
          "minimum": -1,
          "type": "integer"
        },
        "type": {
          "type": "string"
        }
      },
      "type": "object"
    }
  ]
}