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