{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateDcrConfigHttpInRequest", "title": "CreateDcrConfigHttpInRequest", "description": "Payload to create an HTTP DCR provider.", "type": "object", "properties": { "dcr_base_url": { "$ref": "#/components/schemas/DcrBaseUrl" }, "api_key": { "$ref": "#/components/schemas/DcrConfigPropertyApiKey" }, "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", "api_key" ] }