Benchling · Schema

SequenceFeatureBase

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

Properties

Name Type Description
color string Hex color code used when displaying this feature in the UI.
customFields array
name string
notes string
View JSON Schema on GitHub

JSON Schema

SequenceFeatureBase.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/SequenceFeatureBase.json",
  "title": "SequenceFeatureBase",
  "properties": {
    "color": {
      "description": "Hex color code used when displaying this feature in the UI.",
      "example": "#F58A5E",
      "type": "string"
    },
    "customFields": {
      "items": {
        "$ref": "#/components/schemas/SequenceFeatureCustomField"
      },
      "maxItems": 100,
      "type": "array"
    },
    "name": {
      "maxLength": 2048,
      "type": "string"
    },
    "notes": {
      "example": "Cong et al Science. 2013 Jan 3.",
      "maxLength": 10000,
      "type": "string"
    }
  },
  "type": "object"
}