Options for the 'exact' connection
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConnectionOptionsExact", "title": "ConnectionOptionsExact", "description": "Options for the 'exact' connection", "type": "object", "additionalProperties": true, "allOf": [ { "$ref": "#/components/schemas/ConnectionOptionsCommon" }, { "type": "object", "properties": { "baseUrl": { "$ref": "#/components/schemas/ConnectionBaseUrlExact" }, "client_id": { "$ref": "#/components/schemas/ConnectionClientIdExact" }, "client_secret": { "$ref": "#/components/schemas/ConnectionClientSecretExact" }, "profile": { "description": "Enables retrieval of basic profile attributes from Exact Online including name, username, picture, email, gender, and language.", "type": "boolean" }, "set_user_root_attributes": { "$ref": "#/components/schemas/ConnectionSetUserRootAttributesEnum" }, "upstream_params": { "$ref": "#/components/schemas/ConnectionUpstreamParams" } } } ] }