{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StringConfigFieldSchema", "title": "StringConfigFieldSchema", "description": "Defines a string value integration config field.", "type": "object", "properties": { "display_name": { "description": "user-friendly name of the configuration field.", "type": "string" }, "description": { "description": "Optional brief description of the configuration field.", "type": "string" }, "required": { "description": "Denotes whether the config field is a required value.", "type": "boolean", "default": false }, "mutable_condition": { "$ref": "#/components/schemas/MutableCondition" }, "type": { "description": "The field type of the config value.", "type": "string", "enum": [ "string" ] }, "default": { "description": "The default value for the config field.", "type": "string" } }, "required": [ "type" ] }