Benchling · Schema

AppConfigItemDateCreate

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

JSON Schema

AppConfigItemDateCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/AppConfigItemDateCreate.json",
  "title": "AppConfigItemDateCreate",
  "allOf": [
    {
      "$ref": "#/components/schemas/AppConfigItemCreateMixin"
    },
    {
      "properties": {
        "type": {
          "enum": [
            "date"
          ],
          "type": "string"
        },
        "value": {
          "example": "2022-05-03",
          "format": "date",
          "nullable": true,
          "type": "string"
        }
      }
    },
    {
      "required": [
        "value",
        "type"
      ]
    }
  ],
  "type": "object"
}