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