{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateConnectionCommon",
"title": "CreateConnectionCommon",
"allOf": [
{
"$ref": "#/components/schemas/ConnectionCommon"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"$ref": "#/components/schemas/ConnectionName"
},
"enabled_clients": {
"type": "array",
"description": "Use of this property is NOT RECOMMENDED. Use the PATCH /v2/connections/{id}/clients endpoint to enable the connection for a set of clients.",
"items": {
"type": "string",
"description": "The id of the client for which the connection is to be enabled.",
"format": "client-id"
}
}
}
}
],
"required": [
"name"
]
}