Benchling · Schema

DnaSequencesFindMatchingRegion

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

Properties

Name Type Description
registryId string An optional Registry ID to restrict the region search to
schemaId string API ID for an Entity Schema. Restricts results to DNA Sequences of this schema type.
targetDnaSequenceIds array API IDs of the DNA sequences which matching regions will be found for
View JSON Schema on GitHub

JSON Schema

DnaSequencesFindMatchingRegion.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/DnaSequencesFindMatchingRegion.json",
  "title": "DnaSequencesFindMatchingRegion",
  "additionalProperties": false,
  "properties": {
    "registryId": {
      "description": "An optional Registry ID to restrict the region search to",
      "example": "src_ae40j3TZ",
      "type": "string"
    },
    "schemaId": {
      "description": "API ID for an Entity Schema. Restricts results to DNA Sequences of this schema type.",
      "example": "ts_n4l12nf0",
      "type": "string"
    },
    "targetDnaSequenceIds": {
      "description": "API IDs of the DNA sequences which matching regions will be found for",
      "example": [
        "seq_W7KgYydE",
        "seq_g7SI2nih"
      ],
      "items": {
        "type": "string"
      },
      "maxItems": 1000,
      "type": "array"
    }
  },
  "required": [
    "targetDnaSequenceIds",
    "schemaId"
  ],
  "type": "object"
}