summaryrefslogtreecommitdiffstats
path: root/cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/avc-event-schema-1.0.0.json
diff options
context:
space:
mode:
authorJvD_Ericsson <jeff.van.dam@est.tech>2023-11-27 15:58:54 +0000
committerJvD_Ericsson <jeff.van.dam@est.tech>2023-11-28 11:27:19 +0000
commit2e71615fa27cefd1aee3fb85d04907f3d95d5d14 (patch)
treea262419342396412c89d18a00635e7415fa01d50 /cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/avc-event-schema-1.0.0.json
parente1f12d7e903c6bb3071f2848c939ccb4afb939ba (diff)
Publish trust level notification event
- Add mapper that maps attribute value change event to cloud event - Add publisher that publish the cloud event from ncmp to client - Handle notifications for the uses cases below - Initial registration case - Device heart beat consumer case - Dmi status changes within dmi watchdog case - Added tests for mapper, publisher, and trustLevelManager - Added test for dmi watchdog Issue-ID: CPS-1910 Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech> Change-Id: I7c0798346a221e703da58902b9d631115de8d91a Signed-off-by: halil.cakal <halil.cakal@est.tech> Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Diffstat (limited to 'cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/avc-event-schema-1.0.0.json')
-rw-r--r--cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/avc-event-schema-1.0.0.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/avc-event-schema-1.0.0.json b/cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/avc-event-schema-1.0.0.json
new file mode 100644
index 000000000..d24ec2c73
--- /dev/null
+++ b/cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/avc-event-schema-1.0.0.json
@@ -0,0 +1,56 @@
+{
+ "$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": {
+ "AvcEvent": {
+ "javaType": "org.onap.cps.ncmp.events.avc.ncmp_to_client.AvcEvent",
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "$ref": "#/definitions/Data"
+ }
+ },
+ "required": [
+ "data"
+ ],
+ "title": "AvcEvent"
+ },
+ "Data": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "attributeValueChange": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/Avc"
+ }
+ }
+ },
+ "required": [
+ "avc"
+ ],
+ "title": "Data"
+ },
+ "Avc": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "attributeName": {
+ "type": "string"
+ },
+ "oldAttributeValue": {
+ "type": "string"
+ },
+ "newAttributeValue": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "attributeName"
+ ],
+ "title": "avc"
+ }
+ }
+} \ No newline at end of file