diff options
author | mpriyank <priyank.maheshwari@est.tech> | 2024-11-08 11:01:59 +0000 |
---|---|---|
committer | mpriyank <priyank.maheshwari@est.tech> | 2024-11-11 10:46:26 +0000 |
commit | a9a031360798d0d63d60d9df00c3822e40673d31 (patch) | |
tree | 086154928979be02088151c0fcb31a18d9b773ea /docs/schemas/dmidataavc/avc-event-schema-1.0.0.json | |
parent | 76b4ff600dfefd2bea79a43431e36698e86c4a5a (diff) |
CM Data Notifications RTD
- Added RTD for CM Data Notifications and left a note about the key
usage.
Issue-ID: CPS-2436
Change-Id: Id1592c85009b945d1785350d54ae8884fcc8bebd
Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
Diffstat (limited to 'docs/schemas/dmidataavc/avc-event-schema-1.0.0.json')
-rw-r--r-- | docs/schemas/dmidataavc/avc-event-schema-1.0.0.json | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/docs/schemas/dmidataavc/avc-event-schema-1.0.0.json b/docs/schemas/dmidataavc/avc-event-schema-1.0.0.json new file mode 100644 index 0000000000..474520d142 --- /dev/null +++ b/docs/schemas/dmidataavc/avc-event-schema-1.0.0.json @@ -0,0 +1,88 @@ +{ + "$schema": "https://json-schema.org/draft/2019-09/schema", + "$id": "urn:cps:org.onap.cps.ncmp.events:avc-event-schema:1.0.0", + "$ref": "#/definitions/AvcEvent", + "definitions": { + "Edit": { + "additionalProperties": false, + "properties": { + "edit-id": { + "type": "string" + }, + "operation": { + "type": "string" + }, + "target": { + "type": "string" + }, + "value": { + "type": "object", + "existingJavaType": "java.lang.Object" + } + }, + "required": [ + "edit-id", + "operation", + "target" + ] + }, + "AvcEvent": { + "description": "The payload for AVC event.", + "type": "object", + "javaType": "org.onap.cps.ncmp.events.avc1_0_0.AvcEvent", + "properties": { + "data": { + "description": "The AVC event content compliant with RFC8641 format", + "type": "object", + "additionalProperties": false, + "properties": { + "push-change-update": { + "type": "object", + "additionalProperties": false, + "properties": { + "datastore-changes": { + "type": "object", + "additionalProperties": false, + "properties": { + "ietf-yang-patch:yang-patch": { + "type": "object", + "additionalProperties": false, + "properties": { + "patch-id": { + "type": "string" + }, + "edit": { + "type": "array", + "items": { + "$ref": "#/definitions/Edit" + } + } + }, + "required": [ + "patch-id", + "edit" + ] + } + }, + "required": [ + "ietf-yang-patch:yang-patch" + ] + } + }, + "required": [ + "datastore-changes" + ] + } + }, + "required": [ + "push-change-update" + ] + } + }, + "required": [ + "data" + ], + "additionalProperties": false + } + } +}
\ No newline at end of file |