{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DcrConfigHttpInResponse", "title": "DcrConfigHttpInResponse", "description": "A DCR provider configuration for HTTP", "type": "object", "properties": { "dcr_base_url": { "type": "string", "format": "url" }, "disable_event_hooks": { "$ref": "#/components/schemas/DcrConfigPropertyDisableEventHooks" }, "disable_refresh_secret": { "$ref": "#/components/schemas/DcrConfigPropertyDisableRefreshSecret" }, "allow_multiple_credentials": { "$ref": "#/components/schemas/DcrConfigPropertyAllowMultipleCredentials" } }, "additionalProperties": false, "required": [ "dcr_base_url" ] }