-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAddressbook_v4_search_response.dtd
More file actions
37 lines (37 loc) · 1.02 KB
/
Addressbook_v4_search_response.dtd
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://github.com/route4me/route4me-json-schemas/blob/master/Addressbook_v4_search_response.dtd",
"title": "Addressbook v4 Search Response",
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"oneOf": [
{"$ref": "https://github.com/route4me/route4me-json-schemas/blob/master/Addressbook_v4_response.dtd"},
{
"type": "array",
"items" : {"type": "string"}
}
]
},
"description": "An array of the address book contacts as JSON objects or as an array of the field values"
},
"total": {
"type": "integer",
"title": "Total",
"description": "Total number of the returned address book contacts."
},
"fields": {
"type": "array",
"items": {"type": "string"},
"title": "Fields",
"description": "An array of the selected fields to be shown"
},
"index_query": {
"type": "string",
"title": "Index Query",
"description": "The contacts query in the JSON format"
}
}
}