blob: 407551f4fd3c9f45e1fc4c89826188b770f53bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"$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
}
}
}
|