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