diff options
author | Lee Anjella Macabuhay <lee.anjella.macabuhay@est.tech> | 2024-08-01 18:51:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-08-01 18:51:25 +0000 |
commit | 81bf6fb1badc3c41d41c501330bc2a462f20c786 (patch) | |
tree | a3902370a93cf05e591bf9db2bfc85494acc266d /cps-ncmp-events/src/main | |
parent | f220a361b49d5131159dfec42aa0f87ca1cab1cc (diff) | |
parent | f11f294188ac8f1891c4468e2242462127c73930 (diff) |
Merge "Handle duplicate targets NcmpOut event"
Diffstat (limited to 'cps-ncmp-events/src/main')
-rw-r--r-- | cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json b/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json index 0c8d02a613..0e6e29049c 100644 --- a/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json +++ b/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json @@ -28,25 +28,19 @@ "description": "The unique subscription id" }, "acceptedTargets": { - "type": "array", - "description": "List of accepted targets", - "items": { - "type": "string" - } + "type": "object", + "existingJavaType": "java.util.Collection<String>", + "description": "Unique Collection of accepted targets" }, "rejectedTargets": { - "type": "array", - "description": "List of rejected targets", - "items": { - "type": "string" - } + "type": "object", + "existingJavaType": "java.util.Collection<String>", + "description": "Unique Collection of rejected targets" }, "pendingTargets": { - "type": "array", - "description": "List of pending targets", - "items": { - "type": "string" - } + "type": "object", + "existingJavaType": "java.util.Collection<String>", + "description": "Unique Collection of pending targets" } }, "required": [ |