mpriyank | 87f0b00 | 2023-05-04 11:24:29 +0100 | [diff] [blame^] | 1 | { |
| 2 | "$schema": "https://json-schema.org/draft/2019-09/schema", |
| 3 | "$id": "urn:cps:org.onap.cps.ncmp.events:avc-event-schema:v1", |
| 4 | "$ref": "#/definitions/AvcEvent", |
| 5 | "definitions": { |
| 6 | "AvcEvent": { |
| 7 | "description": "The payload for AVC event.", |
| 8 | "type": "object", |
| 9 | "javaType" : "org.onap.cps.ncmp.events.avc.v1.AvcEvent", |
| 10 | "properties": { |
| 11 | "event": { |
| 12 | "description": "The AVC event content.", |
| 13 | "type": "object", |
| 14 | "existingJavaType": "java.lang.Object", |
| 15 | "additionalProperties": false |
| 16 | } |
| 17 | }, |
| 18 | "required": [ |
| 19 | "event" |
| 20 | ], |
| 21 | "additionalProperties": false |
| 22 | } |
| 23 | } |
| 24 | } |