summaryrefslogtreecommitdiffstats
path: root/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json
diff options
context:
space:
mode:
Diffstat (limited to 'cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json')
-rw-r--r--cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json91
1 files changed, 87 insertions, 4 deletions
diff --git a/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json b/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json
index 407551f4f..7e975c9b9 100644
--- a/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json
+++ b/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json
@@ -3,16 +3,99 @@
"$id": "urn:cps:org.onap.cps.ncmp.events:avc-event-schema:v1",
"$ref": "#/definitions/AvcEvent",
"definitions": {
+ "Edit": {
+ "javaType": "org.onap.cps.ncmp.events.avc.v1.Edit",
+ "additionalProperties": false,
+ "properties": {
+ "edit-id": {
+ "type": "string"
+ },
+ "operation": {
+ "type": "string"
+ },
+ "target": {
+ "type": "string"
+ },
+ "value": {
+ "$ref": "#/definitions/Value"
+ }
+ },
+ "required": [
+ "edit-id",
+ "operation",
+ "target"
+ ]
+ },
+ "Value": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "attributes": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "existingJavaType": "java.util.Map<String,Object>",
+ "additionalProperties": false,
+ "properties": {
+ "isHoAllowed": {
+ "type": "boolean"
+ }
+ }
+ }
+ }
+ }
+ },
"AvcEvent": {
"description": "The payload for AVC event.",
"type": "object",
- "javaType" : "org.onap.cps.ncmp.events.avc.v1.AvcEvent",
+ "javaType": "org.onap.cps.ncmp.events.avc.v1.AvcEvent",
"properties": {
"event": {
- "description": "The AVC event content.",
+ "description": "The AVC event content compliant with RFC8641 format",
"type": "object",
- "existingJavaType": "java.lang.Object",
- "additionalProperties": false
+ "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": [