{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BooleanConfigFieldSchema", "title": "BooleanConfigFieldSchema", "description": "Defines a boolean 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": [ "boolean" ] }, "default": { "description": "The default value for the config field.", "type": "boolean" } }, "required": [ "type" ] }