-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.json
68 lines (68 loc) · 1.34 KB
/
configuration.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[
{
"key": "baseurl",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Base URI",
"required": true,
"placeholder": "https://customername.powerschool.com"
}
},
{
"key": "apiKey",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Client Key",
"required": true
}
},
{
"key": "apiSecret",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Client Secret",
"type": "password",
"required": true
}
},
{
"key": "expansions",
"type": "input",
"defaultValue": "demographics,school_enrollment,contact_info",
"templateOptions": {
"label": "Expansions",
"required": true
}
},
{
"key": "extensions",
"type": "input",
"defaultValue": "",
"templateOptions": {
"label": "Extensions",
"required": false
}
},
{
"key": "filter",
"type": "input",
"defaultValue": "name.last_name==*;school_enrollment.enroll_status_code==(-1,0)",
"templateOptions": {
"label": "Filter",
"required": false
}
},
{
"key": "pageSize",
"type": "input",
"defaultValue": "100",
"templateOptions": {
"label": "Page Size",
"required": true,
"placeholder": "Value should between 100 and 1000"
}
}
]