diff options
author | Daniel Hanrahan <daniel.hanrahan@est.tech> | 2024-07-05 10:23:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-07-05 10:23:48 +0000 |
commit | c1c26ec8a97ce7de7d976665ae0c147fbf9ad80d (patch) | |
tree | e1273a27cd58f3e7ce617c48bf4e5418edb74cc7 /cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json | |
parent | 82053f446aa1eb35e2a05e2557431497b15b031b (diff) | |
parent | bac230bdbe224023d424eda2cd2ef7422f5c3ed6 (diff) |
Merge "refactor cmsubscription code"
Diffstat (limited to 'cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json')
-rw-r--r-- | cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json | 63 |
1 files changed, 63 insertions, 0 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 new file mode 100644 index 0000000000..0c8d02a613 --- /dev/null +++ b/cps-ncmp-events/src/main/resources/schemas/cmnotificationsubscription/ncmp-out-event-schema-1.0.0.json @@ -0,0 +1,63 @@ +{ + "$schema": "https://json-schema.org/draft/2019-09/schema", + "$id": "urn:cps:org.onap.cps.ncmp.events:cm-notification-subscription-ncmp-out-event-schema:1.0.0", + "$ref": "#/definitions/NcmpOutEvent", + "definitions": { + "NcmpOutEvent": { + "type": "object", + "description": "The payload applied cm subscription merge event coming out from NCMP.", + "javaType": "org.onap.cps.ncmp.impl.cmnotificationsubscription_1_0_0.ncmp_to_client.NcmpOutEvent", + "additionalProperties": false, + "properties": { + "data": { + "$ref": "#/definitions/Data" + } + }, + "required": [ + "data" + ], + "title": "NcmpOutEvent" + }, + "Data": { + "type": "object", + "description": "Information about the targets and subscription", + "additionalProperties": false, + "properties": { + "subscriptionId": { + "type": "string", + "description": "The unique subscription id" + }, + "acceptedTargets": { + "type": "array", + "description": "List of accepted targets", + "items": { + "type": "string" + } + }, + "rejectedTargets": { + "type": "array", + "description": "List of rejected targets", + "items": { + "type": "string" + } + }, + "pendingTargets": { + "type": "array", + "description": "List of pending targets", + "items": { + "type": "string" + } + } + }, + "required": [ + "acceptedTargets", + "pendingTargets", + "rejectedTargets", + "subscriptionId" + ], + "title": "Data" + } + } + + +}
\ No newline at end of file |