| { |
| "$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": { |
| "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.", |
| "type": "object", |
| "existingJavaType": "java.lang.Object", |
| "additionalProperties": false |
| } |
| }, |
| "required": [ |
| "event" |
| ], |
| "additionalProperties": false |
| } |
| } |
| } |