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