blob: df787378b9eaa6df916af15bb63a61ec55599f95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "fields providing information about the subscriber associated with the request",
"type": "object",
"properties": {
"globalSubscriberId": {
"description": "global Customer Id understood by A&AI",
"type": "string"
},
"subscriberCommonSiteId": {
"description": "id representing the location of the subscriber",
"type": "string"
},
"subscriberName": {
"description": "name of the customer or subscriber",
"type": "string"
}
}
}
|