Benchling · Schema

FeatureCreate

Inputs for a new feature

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

JSON Schema

FeatureCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/FeatureCreate.json",
  "title": "FeatureCreate",
  "additionalProperties": false,
  "allOf": [
    {
      "$ref": "#/components/schemas/FeatureBase"
    },
    {
      "properties": {
        "matchType": {
          "description": "The match type of the feature. Used to determine how auto-annotate matches are made.",
          "enum": [
            "nucleotide",
            "protein"
          ],
          "type": "string"
        }
      }
    },
    {
      "required": [
        "name",
        "featureType",
        "pattern",
        "matchType",
        "featureLibraryId"
      ]
    }
  ],
  "description": "Inputs for a new feature",
  "type": "object"
}