diff options
author | mpriyank <priyank.maheshwari@est.tech> | 2024-05-31 09:46:11 +0100 |
---|---|---|
committer | mpriyank <priyank.maheshwari@est.tech> | 2024-05-31 09:46:16 +0100 |
commit | daa92d74b41f4b3e1ee038532d2893bdec799bc0 (patch) | |
tree | bef74692232d22fbc037391185570578bb85eed9 /cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/cm-notification-subscription-ncmp-out-event-schema-1.0.0.json | |
parent | 7cb64300ddd10a9e9f0270a8c4832263e20d8ad3 (diff) |
CM SUBSCRIPTION: Update schemas
- updated the cm subscription schemas with proper case as agreed before
for the events
- fixed the tests to reflect the camelCase change
Issue-ID: CPS-2245
Change-Id: I64fb8b27a5f64280dfa19d86ae310e6b5309de39
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
Diffstat (limited to 'cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/cm-notification-subscription-ncmp-out-event-schema-1.0.0.json')
-rw-r--r-- | cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/cm-notification-subscription-ncmp-out-event-schema-1.0.0.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/cm-notification-subscription-ncmp-out-event-schema-1.0.0.json b/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/cm-notification-subscription-ncmp-out-event-schema-1.0.0.json index d9db3ffb97..d75e53cdfc 100644 --- a/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/cm-notification-subscription-ncmp-out-event-schema-1.0.0.json +++ b/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/cm-notification-subscription-ncmp-out-event-schema-1.0.0.json @@ -27,21 +27,21 @@ "type": "string", "description": "The unique subscription id" }, - "accepted-targets": { + "acceptedTargets": { "type": "array", "description": "List of accepted targets", "items": { "type": "string" } }, - "rejected-targets": { + "rejectedTargets": { "type": "array", "description": "List of rejected targets", "items": { "type": "string" } }, - "pending-targets": { + "pendingTargets": { "type": "array", "description": "List of pending targets", "items": { @@ -50,9 +50,9 @@ } }, "required": [ - "accepted-targets", - "pending-targets", - "rejected-targets", + "acceptedTargets", + "pendingTargets", + "rejectedTargets", "subscriptionId" ], "title": "Data" |