{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/IntegerAppConfigItem.json", "title": "IntegerAppConfigItem", "allOf": [ { "$ref": "#/components/schemas/BaseAppConfigItem" }, { "properties": { "type": { "enum": [ "integer" ], "example": "integer", "type": "string" }, "value": { "nullable": true, "type": "integer" } } } ], "type": "object" }