{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConfigurablePropString", "title": "ConfigurablePropString", "allOf": [ { "$ref": "#/components/schemas/ConfigurablePropBase" }, { "type": "object", "description": "This prop can accept a string value.", "required": [ "type" ], "properties": { "type": { "type": "string", "enum": [ "string" ] }, "secret": { "type": "boolean", "description": "If true, this prop is a secret and should not be displayed in plain text.", "nullable": true }, "format": { "$ref": "#/components/schemas/ConfigurablePropStringFormat" }, "default": { "$ref": "#/components/schemas/ConfiguredPropValueString" }, "options": { "type": "array", "items": { "anyOf": [ { "$ref": "#/components/schemas/PropOption" }, { "$ref": "#/components/schemas/PropOptionNested" }, { "$ref": "#/components/schemas/PropOptionValue" } ] } } } } ] }