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