{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LinkUserIdentityRequestContent", "title": "LinkUserIdentityRequestContent", "type": "object", "additionalProperties": false, "minProperties": 1, "properties": { "provider": { "$ref": "#/components/schemas/UserIdentityProviderEnum", "description": "Identity provider of the secondary user account being linked." }, "connection_id": { "type": "string", "description": "connection_id of the secondary user account being linked when more than one `auth0` database provider exists.", "pattern": "^con_[A-Za-z0-9]{16}$" }, "user_id": { "$ref": "#/components/schemas/UserId" }, "link_with": { "type": "string", "description": "JWT for the secondary account being linked. If sending this parameter, `provider`, `user_id`, and `connection_id` must not be sent.", "default": "{SECONDARY_ACCOUNT_JWT}" } } }