JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2019-09/schema", |
JvD_Ericsson | 2e71615 | 2023-11-27 15:58:54 +0000 | [diff] [blame] | 3 | "$id": "urn:cps:org.onap.cps.ncmp.events:avc-event-schema:1.0.0", |
| 4 | "$ref": "#/definitions/AvcEvent", |
JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 5 | "definitions": { |
JvD_Ericsson | 2e71615 | 2023-11-27 15:58:54 +0000 | [diff] [blame] | 6 | "AvcEvent": { |
| 7 | "javaType": "org.onap.cps.ncmp.events.avc.ncmp_to_client.AvcEvent", |
JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 8 | "type": "object", |
| 9 | "additionalProperties": false, |
| 10 | "properties": { |
| 11 | "data": { |
| 12 | "$ref": "#/definitions/Data" |
| 13 | } |
| 14 | }, |
| 15 | "required": [ |
| 16 | "data" |
| 17 | ], |
JvD_Ericsson | 2e71615 | 2023-11-27 15:58:54 +0000 | [diff] [blame] | 18 | "title": "AvcEvent" |
JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 19 | }, |
| 20 | "Data": { |
| 21 | "type": "object", |
| 22 | "additionalProperties": false, |
| 23 | "properties": { |
| 24 | "attributeValueChange": { |
| 25 | "type": "array", |
| 26 | "items": { |
JvD_Ericsson | 2e71615 | 2023-11-27 15:58:54 +0000 | [diff] [blame] | 27 | "$ref": "#/definitions/Avc" |
JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 28 | } |
| 29 | } |
| 30 | }, |
| 31 | "required": [ |
JvD_Ericsson | 2e71615 | 2023-11-27 15:58:54 +0000 | [diff] [blame] | 32 | "avc" |
JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 33 | ], |
| 34 | "title": "Data" |
| 35 | }, |
JvD_Ericsson | 2e71615 | 2023-11-27 15:58:54 +0000 | [diff] [blame] | 36 | "Avc": { |
JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 37 | "type": "object", |
| 38 | "additionalProperties": false, |
| 39 | "properties": { |
| 40 | "attributeName": { |
| 41 | "type": "string" |
| 42 | }, |
| 43 | "oldAttributeValue": { |
| 44 | "type": "string" |
| 45 | }, |
| 46 | "newAttributeValue": { |
| 47 | "type": "string" |
| 48 | } |
| 49 | }, |
| 50 | "required": [ |
| 51 | "attributeName" |
| 52 | ], |
JvD_Ericsson | 2e71615 | 2023-11-27 15:58:54 +0000 | [diff] [blame] | 53 | "title": "avc" |
JvD_Ericsson | 9d5f2dd | 2023-11-01 11:39:12 +0000 | [diff] [blame] | 54 | } |
| 55 | } |
| 56 | } |