-
Notifications
You must be signed in to change notification settings - Fork 5
/
Member_configuration_response.dtd
47 lines (46 loc) · 1.25 KB
/
Member_configuration_response.dtd
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://github.com/route4me/route4me-json-schemas/blob/master/Member_configuration_response.dtd",
"title": "Member Configuration Response",
"type": "object",
"description": "Response from a member configuration request. See examples in the folder https://github.com/route4me/route4me-curl/tree/master/Windows/MemberConfiguration",
"properties": {
"result": {
"type": "string",
"title": "Result",
"description": "If equal to 'OK', the request process finished successfully."
},
"data": {
"type": "array",
"items": {
"member_id": {
"type": "string",
"title": "Member ID",
"description": "Member ID"
},
"config_key": {
"type": "string",
"title": "Config Key",
"description": "Config key"
},
"config_value": {
"type": "string",
"title": "Config Value",
"description": "Config value"
}
,
"is_hidden_value": {
"type": "boolean",
"title": "Is Hidden Value",
"description": "If true, the config key value is hidden"
}
,
"can_unhide_value": {
"type": "boolean",
"title": "Can Unhide Value",
"description": "If true, the configuration key value can be visible"
}
}
}
}
}