summaryrefslogtreecommitdiffstats
path: root/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json
diff options
context:
space:
mode:
authormpriyank <priyank.maheshwari@est.tech>2023-06-16 15:55:52 +0100
committermpriyank <priyank.maheshwari@est.tech>2023-06-19 11:54:30 +0100
commit3032261ec743bde6eb136cd2030774c3dc358fa9 (patch)
tree6008f44c0c0274d6f22e653ed31da50f12774356 /cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json
parent08898672e0de04238acdedea4266c58f17c2b7e0 (diff)
DMI Data AVC to cloud events
- DMI Data AVC to be consumed as CloudEvents now - Removed the schema header as it is taken care by cloudevent headers - Implemented naming and packaging comments on the schema - Test cases refactoring Issue-ID: CPS-1719 Change-Id: I9864f90446720fe903fb3c1502d86035d886751d Signed-off-by: mpriyank <priyank.maheshwari@est.tech>
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.json107
1 files changed, 0 insertions, 107 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
deleted file mode 100644
index 7e975c9b9..000000000
--- a/cps-ncmp-events/src/main/resources/schemas/dmidataavc/avc-event-schema-v1.json
+++ /dev/null
@@ -1,107 +0,0 @@
-{
- "$schema": "https://json-schema.org/draft/2019-09/schema",
- "$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",
- "properties": {
- "event": {
- "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": [
- "event"
- ],
- "additionalProperties": false
- }
- }
-} \ No newline at end of file