Benchling · Schema

BarcodeValidationResult

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

Properties

Name Type Description
barcode string Barcode to validate.
isValid boolean Whether the barcode is valid.
message string If barcode is not valid, a message string explaining the error.
View JSON Schema on GitHub

JSON Schema

BarcodeValidationResult.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/BarcodeValidationResult.json",
  "title": "BarcodeValidationResult",
  "properties": {
    "barcode": {
      "description": "Barcode to validate.",
      "type": "string"
    },
    "isValid": {
      "description": "Whether the barcode is valid.",
      "type": "boolean"
    },
    "message": {
      "description": "If barcode is not valid, a message string explaining the error.",
      "nullable": true,
      "type": "string"
    }
  },
  "type": "object"
}