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