{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SelfServiceProfileSsoTicketConnectionOptions", "title": "SelfServiceProfileSsoTicketConnectionOptions", "type": [ "object", "null" ], "description": "The connection's options (depend on the connection strategy)", "additionalProperties": false, "properties": { "icon_url": { "type": [ "string", "null" ], "description": "URL for the icon. Must use HTTPS.", "format": "strict-https-uri-or-null" }, "domain_aliases": { "type": [ "array", "null" ], "description": "List of domain_aliases that can be authenticated in the Identity Provider", "items": { "type": "string", "minLength": 1, "maxLength": 255 } }, "idpinitiated": { "$ref": "#/components/schemas/SelfServiceProfileSsoTicketIdpInitiatedOptions" } } }