Benchling · Schema

AaAnnotation

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
color string
end integer 0-based exclusive end index. The end of the AA sequence is always represented as 0.
id string
name string
notes string
start integer 0-based inclusive start index.
type string
View JSON Schema on GitHub

JSON Schema

AaAnnotation.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AaAnnotation.json",
  "title": "AaAnnotation",
  "properties": {
    "color": {
      "type": "string"
    },
    "end": {
      "description": "0-based exclusive end index. The end of the AA sequence is always represented as 0.",
      "type": "integer"
    },
    "id": {
      "example": "prtnann_o7zMPG0P",
      "type": "string"
    },
    "name": {
      "maxLength": 255,
      "type": "string"
    },
    "notes": {
      "example": "Cong et al Science. 2013 Jan 3.",
      "maxLength": 10000,
      "type": "string"
    },
    "start": {
      "description": "0-based inclusive start index.",
      "type": "integer"
    },
    "type": {
      "example": "Site",
      "maxLength": 255,
      "type": "string"
    }
  },
  "type": "object"
}