You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/control-plane/control-plane-core/src/main/java/org/eclipse/edc/connector/controlplane/discovery/DiscoveryServiceImpl.java
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -70,27 +70,32 @@ public ServiceResult<List<DiscoveryResponse>> discover(String participantContext
Copy file name to clipboardExpand all lines: core/control-plane/control-plane-core/src/test/java/org/eclipse/edc/connector/controlplane/discovery/DiscoveryServiceImplTest.java
Copy file name to clipboardExpand all lines: core/control-plane/control-plane-transform/src/main/java/org/eclipse/edc/connector/controlplane/transform/edc/discovery/from/JsonObjectFromDiscoveryResponseTransformer.java
Copy file name to clipboardExpand all lines: core/control-plane/control-plane-transform/src/test/java/org/eclipse/edc/connector/controlplane/transform/edc/discovery/from/JsonObjectFromDiscoveryResponseTransformerTest.java
Copy file name to clipboardExpand all lines: extensions/common/api/management-api-schema-validator/src/main/resources/schema/management/v4/discovery-response-schema.json
+20-4Lines changed: 20 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,8 @@
27
27
"type": "string",
28
28
"description": "The DSP protocol version shared by the local profile and the counter party entry."
29
29
},
30
-
"counterPartyPath": {
31
-
"type": "string",
32
-
"description": "The path under the counter party's base URL where the matching DSP version is exposed, as returned in the well-known versions document."
30
+
"counterParty": {
31
+
"$ref": "#/definitions/CounterParty"
33
32
},
34
33
"binding": {
35
34
"type": "string",
@@ -40,9 +39,26 @@
40
39
"@type",
41
40
"profile",
42
41
"version",
43
-
"counterPartyPath",
42
+
"counterParty",
44
43
"binding"
45
44
]
45
+
},
46
+
"CounterParty": {
47
+
"type": "object",
48
+
"description": "Counter party coordinates for a matched protocol version.",
49
+
"properties": {
50
+
"path": {
51
+
"type": "string",
52
+
"description": "The path under the counter party's base URL where the matching DSP version is exposed, as returned in the well-known versions document."
53
+
},
54
+
"dataServiceEndpoint": {
55
+
"type": "string",
56
+
"description": "The counter party's data service endpoint URL."
Copy file name to clipboardExpand all lines: extensions/control-plane/api/management-api-v5/discovery-api-v5/src/test/java/org/eclipse/edc/connector/controlplane/api/management/discovery/v5/DiscoveryApiV5ControllerTest.java
Copy file name to clipboardExpand all lines: system-tests/management-api/management-api-test-runner/src/test/java/org/eclipse/edc/test/e2e/managementapi/v5/DiscoveryApiV5EndToEndTest.java
0 commit comments