From bf7b160ae3697e5a24e3999caaee244f90c16e5c Mon Sep 17 00:00:00 2001 From: jameskanmsft Date: Mon, 6 Oct 2025 11:38:39 -0700 Subject: [PATCH] Remove connection definition from schema.json Removed 'connection' definition from schema. --- .../definition/1.0.0/schema.json | 29 +------------------ 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/fabric/item/operationsAgents/definition/1.0.0/schema.json b/fabric/item/operationsAgents/definition/1.0.0/schema.json index 0530241b..69f8931f 100644 --- a/fabric/item/operationsAgents/definition/1.0.0/schema.json +++ b/fabric/item/operationsAgents/definition/1.0.0/schema.json @@ -102,15 +102,11 @@ "items": { "$ref": "#/definitions/parameter" } - }, - "connection": { - "$ref": "#/definitions/connection" } }, "required": [ "id", - "kind", - "connection" + "kind" ] }, "parameter": { @@ -127,29 +123,6 @@ "name" ], "additionalProperties": false - }, - "connection": { - "type": "object", - "properties": { - "flowActionUid": { - "type": "string", - "format": "uuid" - }, - "activatorWorkspaceId": { - "type": "string", - "format": "uuid" - }, - "activatorArtifactId": { - "type": "string", - "format": "uuid" - } - }, - "required": [ - "flowActionUid", - "activatorWorkspaceId", - "activatorArtifactId" - ], - "additionalProperties": false } } }