{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateConnectionDetails", "title": "CreateConnectionDetails", "type": "object", "required": [ "displayName", "compartmentId", "connectionType", "technologyType" ], "properties": { "displayName": { "type": "string", "example": "example_value" }, "description": { "type": "string", "example": "A sample description." }, "compartmentId": { "type": "string", "example": "500123" }, "connectionType": { "type": "string", "example": "example_value" }, "technologyType": { "type": "string", "example": "example_value" }, "freeformTags": { "type": "object", "additionalProperties": { "type": "string" }, "example": "example_value" } } }