diff options
author | Priyank Maheshwari <priyank.maheshwari@est.tech> | 2023-03-15 09:37:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2023-03-15 09:37:04 +0000 |
commit | 1469741d2922cc1c28270cd52a31ad4cb3caa037 (patch) | |
tree | fd1f4795bcc31e0be4f495ad52bbe67ae55e949e /cps-ncmp-events/src | |
parent | 530d4d41f3e3deb2b6bf36e0345bdc9153c0611b (diff) | |
parent | 7549776fb3b82de2d14ae60e1bddf74bf62f8f79 (diff) |
Merge "Forward Subscription Information to DMI Plugin(s)"
Diffstat (limited to 'cps-ncmp-events/src')
-rw-r--r-- | cps-ncmp-events/src/main/resources/schemas/avc-subscription-event-v1.json | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/cps-ncmp-events/src/main/resources/schemas/avc-subscription-event-v1.json b/cps-ncmp-events/src/main/resources/schemas/avc-subscription-event-v1.json index 5ab446cbbe..feff48c36a 100644 --- a/cps-ncmp-events/src/main/resources/schemas/avc-subscription-event-v1.json +++ b/cps-ncmp-events/src/main/resources/schemas/avc-subscription-event-v1.json @@ -29,6 +29,7 @@ "event": { "description": "The event content.", "type": "object", + "javaType": "InnerSubscriptionEvent", "properties": { "subscription": { "description": "The subscription details.", @@ -88,12 +89,26 @@ ], "predicates": { "description": "Additional values to be added into the subscription", - "existingJavaType" : "java.util.Map<String,Object>", - "type" : "object" - } + "type" : "object", + "properties": { + "targets": { + "description": "CM Handles to be targeted by the subscription", + "type" : "array" + }, + "datastore": { + "description": "datastore which is to be used by the subscription", + "type": "string" + }, + "xpath-filter": { + "description": "filter to be applied to the CM Handles through this event", + "type": "string" + } + }, + "required": ["datastore"] } - }, - "required": [ + } + }, + "required": [ "subscription", "dataType" ] |