{ "$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" }