-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
30 lines (27 loc) · 1.43 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://plugin.powerschool.pearson.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://plugin.powerschool.pearson.com plugin.xsd"
name="PSDataAccess"
version="1.0"
description="Basic data access example plugin">
<oauth></oauth>
<access_request>
<field table="messagekeymap" field="languageisocode" access="ViewOnly" />
<field table="schools" field="high_grade" access="ViewOnly" />
<field table="schools" field="low_grade" access="ViewOnly" />
<field table="schools" field="school_number" access="ViewOnly" />
<field table="sections" field="dcid" access="ViewOnly" />
<field table="students" field="dcid" access="ViewOnly" />
<field table="students" field="first_name" access="ViewOnly" />
<field table="students" field="gender" access="ViewOnly" />
<field table="students" field="grade_level" access="ViewOnly" />
<field table="students" field="id" access="ViewOnly" />
<field table="students" field="last_name" access="ViewOnly" />
<field table="students" field="lastfirst" access="ViewOnly" />
<field table="students" field="student_number" access="ViewOnly" />
</access_request>
<publisher name="Example Plugin">
<contact email="plugin@example.com"/>
</publisher>
</plugin>