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