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