Benchling · Schema

PlateSchema

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

JSON Schema

PlateSchema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/PlateSchema.json",
  "title": "PlateSchema",
  "allOf": [
    {
      "$ref": "#/components/schemas/RegistrySchema"
    },
    {
      "properties": {
        "containerSchema": {
          "nullable": true,
          "properties": {
            "id": {
              "type": "string"
            },
            "name": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "height": {
          "type": "number"
        },
        "modifiedAt": {
          "description": "DateTime the Plate Schema was last modified",
          "example": "2017-04-18T05:55:48.685345+00:00",
          "format": "date-time",
          "type": "string"
        },
        "plateType": {
          "type": "string"
        },
        "type": {
          "enum": [
            "plate"
          ],
          "readOnly": true,
          "type": "string"
        },
        "width": {
          "type": "number"
        }
      },
      "type": "object"
    }
  ]
}