Benchling · Schema

Feature

A feature from a feature library

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

JSON Schema

Feature.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/Feature.json",
  "title": "Feature",
  "allOf": [
    {
      "$ref": "#/components/schemas/FeatureBase"
    },
    {
      "properties": {
        "id": {
          "description": "The id of the feature",
          "example": "feat_4YVqX98z",
          "type": "string"
        },
        "matchType": {
          "description": "The match type of the feature. Used to determine how auto-annotate matches are made.",
          "enum": [
            "nucleotide",
            "protein"
          ],
          "type": "string"
        }
      }
    }
  ],
  "description": "A feature from a feature library",
  "type": "object"
}