aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJvD_Ericsson <jeff.van.dam@est.tech>2023-11-01 11:39:12 +0000
committerJvD_Ericsson <jeff.van.dam@est.tech>2023-11-02 15:00:13 +0000
commit9d5f2dd2137fbf3b8502b2c158007afac90b5b12 (patch)
tree7d4cf2eedcf3606d5b68d8873581b94c8b46bb23
parente5c66c7fec638412e10d5abef14d2a7afc86cb23 (diff)
Add trust level notification schema
Issue-ID: CPS-1910 Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech> Change-Id: If7265e0020b2ba247aaf64c9c0820e3cfdb23583
-rw-r--r--cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/attribute-value-change-event-schema-1.0.0.json56
1 files changed, 56 insertions, 0 deletions
diff --git a/cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/attribute-value-change-event-schema-1.0.0.json b/cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/attribute-value-change-event-schema-1.0.0.json
new file mode 100644
index 000000000..9dee00e21
--- /dev/null
+++ b/cps-ncmp-events/src/main/resources/schemas/ncmpdataavc/attribute-value-change-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:attribute-value-change-event-schema:1.0.0",
+ "$ref": "#/definitions/AttributeValueChangeEvent",
+ "definitions": {
+ "AttributeValueChangeEvent": {
+ "javaType": "org.onap.cps.ncmp.events.avc.ncmp_to_client.AttributeValueChangeEvent",
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "data": {
+ "$ref": "#/definitions/Data"
+ }
+ },
+ "required": [
+ "data"
+ ],
+ "title": "AttributeValueChangeEvent"
+ },
+ "Data": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "attributeValueChange": {
+ "type": "array",
+ "items": {
+ "$ref": "#/definitions/AttributeValueChange"
+ }
+ }
+ },
+ "required": [
+ "attributeValueChange"
+ ],
+ "title": "Data"
+ },
+ "AttributeValueChange": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "attributeName": {
+ "type": "string"
+ },
+ "oldAttributeValue": {
+ "type": "string"
+ },
+ "newAttributeValue": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "attributeName"
+ ],
+ "title": "AttributeValueChange"
+ }
+ }
+} \ No newline at end of file