1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "urn:cps:org.onap.cps.ncmp.events:subscription-event-outcome-schema:1.0.0",
"$ref": "#/definitions/SubscriptionEventOutcome",
"definitions": {
"SubscriptionEventOutcome": {
"description": "The payload for avc subscription event outcome message.",
"type": "object",
"javaType": "org.onap.cps.ncmp.events.avcsubscription1_0_0.ncmp_to_client.SubscriptionEventOutcome",
"additionalProperties": false,
"properties": {
"data": {
"$ref": "#/definitions/data"
}
},
"required": [
"data"
]
},
"data": {
"type": "object",
"description": "The actual data containing information about the pending and rejected targets",
"additionalProperties": false,
"properties": {
"statusCode": {
"type": "integer"
},
"statusMessage": {
"type": "string"
},
"additionalInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
"rejected": {
"$ref": "#/definitions/additionalInfoDetails"
},
"pending": {
"$ref": "#/definitions/additionalInfoDetails"
}
}
}
},
"required": [
"statusCode",
"statusMessage"
]
},
"additionalInfoDetails": {
"type": "array",
"items": {
"type": "object",
"description": "Details for the target cmhandles",
"additionalProperties": false,
"properties": {
"details": {
"type": "string"
},
"targets": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
|