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