blob: fc0f02c8847ea9d574930cca94dcf67d74b2cac6 (
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"
}
}
}
|