blob: c20ea9ad15cc63dd277d893d0c90ffc8b6e99608 (
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
25
26
27
28
29
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "instanceIds that may be associated with a particular request",
"type": "object",
"properties": {
"networkInstanceId": {
"description": "UUID for the network instance (if any)",
"type": "string"
},
"serviceInstanceId": {
"description": "UUID for the service instance",
"type": "string"
},
"vfModuleInstanceId": {
"description": "UUID for the vfModule instance (if any)",
"type": "string"
},
"vnfInstanceId": {
"description": "UUID for the vnf instance (if any)",
"type": "string"
},
"volumeGroupInstanceId": {
"description": "UUID for the volume group instance (if any)",
"type": "string"
}
}
}
|