{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConnectionRequestContentSAML", "title": "CreateConnectionRequestContentSAML", "description": "Create a connection with strategy=samlp", "allOf": [ { "type": "object", "properties": { "strategy": { "const": "samlp" }, "options": { "$ref": "#/components/schemas/ConnectionOptionsSAML" }, "show_as_button": { "$ref": "#/components/schemas/ConnectionShowAsButton" } }, "required": [ "strategy" ] }, { "$ref": "#/components/schemas/CreateConnectionCommon" } ] }