This commit is contained in:
Gene Garcia 2020-11-12 11:14:18 -05:00
Родитель b1f3a7a5dc
Коммит 63d2f462ac
29 изменённых файлов: 5255 добавлений и 10 удалений

3
.vs/ProjectSettings.json Normal file
Просмотреть файл

@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

Двоичные данные
.vs/slnx.sqlite Normal file

Двоичный файл не отображается.

Двоичные данные
OneRoster_to_SDS/Get_OR_via_API.zip Normal file

Двоичный файл не отображается.

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -0,0 +1,2 @@
# Integration Solution: OneRoster to SDS
This solution demonstrates the use of Azure Data Factory to orchestrate the scheduled extraction of roster data via OneRoster API.

Двоичные данные
OneRoster_to_SDS/etl.jpg Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 103 KiB

Просмотреть файл

@ -1,14 +1,6 @@
# Project
# Open Edu Integration
> This repo has been populated by an initial template to help get you started. Please
> make sure to update the content to build a great experience for community-building.
As the maintainer of this project, please make a few updates:
- Improving this README.MD file to provide a great experience
- Updating SUPPORT.MD with content about this project's support experience
- Understanding the security reporting process in SECURITY.MD
- Remove this section from the README
Provides open-source ETL solutions for the EdTech community, built with Azure Data Factory.
## Contributing

Просмотреть файл

@ -0,0 +1,3 @@
# Integration Solution: Validate and upload to SDS
This solution demonstrates the use of Azure Data Factory to orchestrate the scheduled validation and upload of SDS csv files to SDS profiles.

Двоичные данные
Validate_and_upload_to_SDS/Validate_and_upload_to_SDS.docx Normal file

Двоичный файл не отображается.

Двоичные данные
Validate_and_upload_to_SDS/Validate_and_upload_to_SDS.pdf Normal file

Двоичный файл не отображается.

Двоичные данные
Validate_and_upload_to_SDS/sync_all.zip Normal file

Двоичный файл не отображается.

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -0,0 +1,451 @@
{
"metadata": {
"saveOutput": true,
"language_info": {
"name": "python"
}
},
"nbformat": 4,
"nbformat_minor": 2,
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## This notebook provides basic queries for exploring data issues regarding the ETL process for integration with SDS.\n",
"\n",
"You'll need to have an instance of Synapse workspace in Azure, and will need to grant your synapse instance the role assignment \"Storage Blob Data Contributor\" for your storage account.\n",
""
],
"attachments": {}
},
{
"cell_type": "code",
"execution_count": 57,
"outputs": [],
"metadata": {},
"source": [
"data_path = 'abfss://sds@stcontososdsetl.dfs.core.windows.net/2020-10-05T1150_09/profile1'\n",
"\n",
"# Load the inbound data\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/school.csv', header='true'), 'school')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/section.csv', header='true'), 'section')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/teacher.csv', header='true'), 'teacher')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/teacherroster.csv', header='true'), 'teacherroster')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/student.csv', header='true'), 'student')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/studentenrollment.csv', header='true'), 'studentenrollment')\n",
"\n",
"# Load the directly invalidated data (data with missing required fields)\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/invalid/invalid_school_records.csv', header='true'), 'i_school')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/invalid/invalid_section_records.csv', header='true'), 'i_section')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/invalid/invalid_teacher_records.csv', header='true'), 'i_teacher')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/invalid/invalid_teacherroster_records.csv', header='true'), 'i_teacherroster')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/invalid/invalid_studentenrollment_records.csv', header='true'), 'i_studentenrollment')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/invalid/invalid_student_records.csv', header='true'), 'i_student')\n",
"\n",
"# Now load the validated data\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/validated/school.csv', header='true'), 'v_school')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/validated/section.csv', header='true'), 'v_section')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/validated/teacher.csv', header='true'), 'v_teacher')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/validated/teacherroster.csv', header='true'), 'v_teacherroster')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/validated/studentenrollment.csv', header='true'), 'v_studentenrollment')\n",
"sqlContext.registerDataFrameAsTable(spark.read.csv(f'{data_path}/validated/student.csv', header='true'), 'v_student')"
],
"attachments": {}
},
{
"cell_type": "code",
"execution_count": 58,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 61,
"data": {
"text/plain": "schools: 6 -> 6 (0)\nsections: 156 -> 142 (14)\nteachers: 12 -> 11 (1)\nteacherroster: 154 -> 142 (12)\nstudent: 60 -> 60 (0)\nstudentenrollment: 720 -> 650 (70)"
},
"metadata": {}
}
],
"metadata": {},
"source": [
"school_count = sqlContext.sql('select count(*) x from school').first()['x']\n",
"teacher_count = sqlContext.sql('select count(*) x from teacher').first()['x']\n",
"teacherroster_count = sqlContext.sql('select count(*) x from teacherroster').first()['x']\n",
"section_count = sqlContext.sql('select count(*) x from section').first()['x']\n",
"student_count = sqlContext.sql('select count(*) x from student').first()['x']\n",
"studentenrollment_count = sqlContext.sql('select count(*) x from studentenrollment').first()['x']\n",
"\n",
"v_school_count = sqlContext.sql('select count(*) x from v_school').first()['x']\n",
"v_teacher_count = sqlContext.sql('select count(*) x from v_teacher').first()['x']\n",
"v_teacherroster_count = sqlContext.sql('select count(*) x from v_teacherroster').first()['x']\n",
"v_section_count = sqlContext.sql('select count(*) x from v_section').first()['x']\n",
"v_student_count = sqlContext.sql('select count(*) x from v_student').first()['x']\n",
"v_studentenrollment_count = sqlContext.sql('select count(*) x from v_studentenrollment').first()['x']\n",
"\n",
"print(f'schools: {school_count} -> {v_school_count} ({school_count - v_school_count})\\nsections: {section_count} -> {v_section_count} ({section_count - v_section_count})\\nteachers: {teacher_count} -> {v_teacher_count} ({teacher_count - v_teacher_count})\\nteacherroster: {teacherroster_count} -> {v_teacherroster_count} ({teacherroster_count-v_teacherroster_count})\\nstudent: {student_count} -> {v_student_count} ({student_count-v_student_count})\\nstudentenrollment: {studentenrollment_count} -> {v_studentenrollment_count} ({studentenrollment_count-v_studentenrollment_count})')"
],
"attachments": {}
},
{
"cell_type": "code",
"execution_count": 59,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 62,
"data": {
"application/json": {
"table": {
"rows": [
{
"Term SIS ID": "term5",
"Term Name": "Fall Semester",
"Term StartDate": "9/1/2019",
"Course Number": "47",
"Term EndDate": "12/22/2019",
"Section Number": "106",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Technology - Programming",
"SIS ID": "106",
"Course SIS ID": "course47",
"Course Subject": "Technology - Programming",
"Section Name": "Technology - Programming 106",
"Course Name": "Technology - Programming",
"Status": "Active"
},
{
"Term SIS ID": "term5",
"Term Name": "Fall Semester",
"Term StartDate": "9/1/2019",
"Course Number": "43",
"Term EndDate": "12/22/2019",
"Section Number": "108",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering English Language",
"SIS ID": "108",
"Course SIS ID": "course43",
"Course Subject": "English Language",
"Section Name": "English Language 108",
"Course Name": "English Language",
"Status": "Active"
},
{
"Term SIS ID": "term5",
"Term Name": "Fall Semester",
"Term StartDate": "9/1/2019",
"Course Number": "44",
"Term EndDate": "12/22/2019",
"Section Number": "110",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering History - World History",
"SIS ID": "110",
"Course SIS ID": "course44",
"Course Subject": "History - World History",
"Section Name": "History - World History 110",
"Course Name": "History - World History",
"Status": "Active"
},
{
"Term SIS ID": "term5",
"Term Name": "Fall Semester",
"Term StartDate": "9/1/2019",
"Course Number": "49",
"Term EndDate": "12/22/2019",
"Section Number": "112",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Art",
"SIS ID": "112",
"Course SIS ID": "course49",
"Course Subject": "Art",
"Section Name": "Art 112",
"Course Name": "Art",
"Status": "Active"
},
{
"Term SIS ID": "term5",
"Term Name": "Fall Semester",
"Term StartDate": "9/1/2019",
"Course Number": "45",
"Term EndDate": "12/22/2019",
"Section Number": "114",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Science Biology",
"SIS ID": "114",
"Course SIS ID": "course45",
"Course Subject": "Science Biology",
"Section Name": "Science Biology 114",
"Course Name": "Science Biology",
"Status": "Active"
},
{
"Term SIS ID": "term5",
"Term Name": "Fall Semester",
"Term StartDate": "9/1/2019",
"Course Number": "45",
"Term EndDate": "12/22/2019",
"Section Number": "116",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Science Biology",
"SIS ID": "116",
"Course SIS ID": "course45",
"Course Subject": "Science Biology",
"Section Name": "Science Biology 116",
"Course Name": "Science Biology",
"Status": "Active"
},
{
"Term SIS ID": "term6",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "43",
"Term EndDate": "5/30/2020",
"Section Number": "119",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering English Language",
"SIS ID": "119",
"Course SIS ID": "course43",
"Course Subject": "English Language",
"Section Name": "English Language 119",
"Course Name": "English Language",
"Status": "Active"
},
{
"Term SIS ID": "term6",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "41",
"Term EndDate": "5/30/2020",
"Section Number": "121",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Math - Algebra",
"SIS ID": "121",
"Course SIS ID": "course41",
"Course Subject": "Math - Algebra",
"Section Name": "Math - Algebra 121",
"Course Name": "Math - Algebra",
"Status": "Active"
},
{
"Term SIS ID": "term6",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "44",
"Term EndDate": "5/30/2020",
"Section Number": "123",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering History - World History",
"SIS ID": "123",
"Course SIS ID": "course44",
"Course Subject": "History - World History",
"Section Name": "History - World History 123",
"Course Name": "History - World History",
"Status": "Active"
},
{
"Term SIS ID": "term6",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "50",
"Term EndDate": "5/30/2020",
"Section Number": "125",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Music",
"SIS ID": "125",
"Course SIS ID": "course50",
"Course Subject": "Music",
"Section Name": "Music 125",
"Course Name": "Music",
"Status": "Active"
},
{
"Term SIS ID": "term6",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "49",
"Term EndDate": "5/30/2020",
"Section Number": "127",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Art",
"SIS ID": "127",
"Course SIS ID": "course49",
"Course Subject": "Art",
"Section Name": "Art 127",
"Course Name": "Art",
"Status": "Active"
},
{
"Term SIS ID": "term6",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "46",
"Term EndDate": "5/30/2020",
"Section Number": "129",
"School SIS ID": "sch5",
"Periods": "2",
"Course Description": "Instruction covering Health",
"SIS ID": "129",
"Course SIS ID": "course46",
"Course Subject": "Health",
"Section Name": "Health 129",
"Course Name": "Health",
"Status": "Active"
},
{
"Term SIS ID": "term10",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "84",
"Term EndDate": "5/30/2020",
"Section Number": "222",
"School SIS ID": "sch9",
"Periods": "2",
"Course Description": "Instruction covering History - World History",
"SIS ID": "222",
"Course SIS ID": "course84",
"Course Subject": "History - World History",
"Section Name": "History - World History 222",
"Course Name": "History - World History",
"Status": "Active"
},
{
"Term SIS ID": "term10",
"Term Name": "Spring Semester",
"Term StartDate": "1/21/2020",
"Course Number": "89",
"Term EndDate": "5/30/2020",
"Section Number": "233",
"School SIS ID": "sch9",
"Periods": "2",
"Course Description": "Instruction covering Art",
"SIS ID": "233",
"Course SIS ID": "course89",
"Course Subject": "Art",
"Section Name": "Art 233",
"Course Name": "Art",
"Status": "Active"
}
],
"schema": {
"SIS ID": "string",
"School SIS ID": "string",
"Section Name": "string",
"Section Number": "string",
"Term SIS ID": "string",
"Term Name": "string",
"Term StartDate": "string",
"Term EndDate": "string",
"Course SIS ID": "string",
"Course Name": "string",
"Course Number": "string",
"Course Description": "string",
"Course Subject": "string",
"Periods": "string",
"Status": "string"
}
},
"isSummary": false,
"language": "scala"
}
},
"metadata": {}
}
],
"metadata": {
"diagram": {
"activateDiagramType": 1,
"chartConfig": {
"category": "bar",
"keys": [
"SIS ID"
],
"values": [
"SIS ID"
],
"yLabel": "SIS ID",
"xLabel": "SIS ID",
"aggregation": "COUNT",
"aggByBackend": false
},
"aggData": "{\"SIS ID\":{\"106\":1,\"108\":1,\"110\":1,\"112\":1,\"114\":1,\"116\":1,\"119\":1,\"121\":1,\"123\":1,\"125\":1,\"127\":1,\"129\":1,\"222\":1,\"233\":1}}",
"isSummary": false,
"previewData": {
"filter": null
},
"isSql": false
}
},
"source": [
"# Get a list of all the sections that were found to be invalid (the delta between what came in and what is being sent to SDS)\n",
"section_delta = sqlContext.sql('select * from section where `SIS ID` not in (select `SIS ID` from v_section)')\n",
"display(section_delta)\n",
"# write out the delta to a file\n",
"#section_delta.write.mode('overwrite').csv(f'{data_path}/section_delta', header = 'true')"
],
"attachments": {}
},
{
"cell_type": "code",
"execution_count": 61,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 64,
"data": {
"text/plain": "Total of 14 sections with no assigned teacher.\n+------+-------------+--------------------+--------------+-----------+---------------+--------------+------------+-------------+--------------------+-------------+--------------------+--------------------+-------+------+--------------------+\n|SIS ID|School SIS ID| Section Name|Section Number|Term SIS ID| Term Name|Term StartDate|Term EndDate|Course SIS ID| Course Name|Course Number| Course Description| Course Subject|Periods|Status|teacherroster SIS ID|\n+------+-------------+--------------------+--------------+-----------+---------------+--------------+------------+-------------+--------------------+-------------+--------------------+--------------------+-------+------+--------------------+\n| 106| sch5|Technology - Prog...| 106| term5| Fall Semester| 9/1/2019| 12/22/2019| course47|Technology - Prog...| 47|Instruction cover...|Technology - Prog...| 2|Active| null|\n| 108| sch5|English Language 108| 108| term5| Fall Semester| 9/1/2019| 12/22/2019| course43| English Language| 43|Instruction cover...| English Language| 2|Active| null|\n| 110| sch5|History - World H...| 110| term5| Fall Semester| 9/1/2019| 12/22/2019| course44|History - World H...| 44|Instruction cover...|History - World H...| 2|Active| null|\n| 112| sch5| Art 112| 112| term5| Fall Semester| 9/1/2019| 12/22/2019| course49| Art| 49|Instruction cover...| Art| 2|Active| null|\n| 114| sch5| Science Biology 114| 114| term5| Fall Semester| 9/1/2019| 12/22/2019| course45| Science Biology| 45|Instruction cover...| Science Biology| 2|Active| null|\n| 116| sch5| Science Biology 116| 116| term5| Fall Semester| 9/1/2019| 12/22/2019| course45| Science Biology| 45|Instruction cover...| Science Biology| 2|Active| null|\n| 119| sch5|English Language 119| 119| term6|Spring Semester| 1/21/2020| 5/30/2020| course43| English Language| 43|Instruction cover...| English Language| 2|Active| null|\n| 121| sch5| Math - Algebra 121| 121| term6|Spring Semester| 1/21/2020| 5/30/2020| course41| Math - Algebra| 41|Instruction cover...| Math - Algebra| 2|Active| null|\n| 123| sch5|History - World H...| 123| term6|Spring Semester| 1/21/2020| 5/30/2020| course44|History - World H...| 44|Instruction cover...|History - World H...| 2|Active| null|\n| 125| sch5| Music 125| 125| term6|Spring Semester| 1/21/2020| 5/30/2020| course50| Music| 50|Instruction cover...| Music| 2|Active| null|\n| 127| sch5| Art 127| 127| term6|Spring Semester| 1/21/2020| 5/30/2020| course49| Art| 49|Instruction cover...| Art| 2|Active| null|\n| 129| sch5| Health 129| 129| term6|Spring Semester| 1/21/2020| 5/30/2020| course46| Health| 46|Instruction cover...| Health| 2|Active| null|\n| 222| sch9|History - World H...| 222| term10|Spring Semester| 1/21/2020| 5/30/2020| course84|History - World H...| 84|Instruction cover...|History - World H...| 2|Active| null|\n| 233| sch9| Art 233| 233| term10|Spring Semester| 1/21/2020| 5/30/2020| course89| Art| 89|Instruction cover...| Art| 2|Active| null|\n+------+-------------+--------------------+--------------+-----------+---------------+--------------+------------+-------------+--------------------+-------------+--------------------+--------------------+-------+------+--------------------+"
},
"metadata": {}
}
],
"metadata": {
"diagram": {
"activateDiagramType": 1,
"chartConfig": {
"category": "bar",
"keys": [
"School SIS ID"
],
"values": [
"School SIS ID"
],
"yLabel": "School SIS ID",
"xLabel": "School SIS ID",
"aggregation": "COUNT",
"aggByBackend": false
},
"aggData": "{\"School SIS ID\":{\"sch1\":26,\"sch2\":26}}",
"isSummary": false,
"previewData": {
"filter": null
},
"isSql": false
}
},
"source": [
"# show all sections and assigned teachers\n",
"#df = sqlContext.sql('select section.*, v_teacherroster.`SIS ID` as `teacherroster SIS ID` from section left join v_teacherroster on section.`SIS ID` = v_teacherroster.`Section SIS ID`')\n",
"\n",
"# get a list of sections that don't have a teacher assigned in teacherroster\n",
"df = sqlContext.sql('select section.*, v_teacherroster.`SIS ID` as `teacherroster SIS ID` from section left join v_teacherroster on section.`SIS ID` = v_teacherroster.`Section SIS ID` where v_teacherroster.`SIS ID` is null')\n",
"\n",
"\n",
"print(\"Total of \" + str(df.count()) + \" sections with no assigned teacher.\")\n",
"df.show(df.count())\n",
"\n",
"# write out the list of sections that don't have an assigned teacher\n",
"df.write.mode('overwrite').csv(f'{data_path}/sections_without_teachers', header = 'true')"
],
"attachments": {}
}
]
}

Просмотреть файл

@ -0,0 +1,2 @@
This is sample data generated utilizing a python data generator script.
The names and dates and other fields are randomly generated and entirely fictional.

Просмотреть файл

@ -0,0 +1,5 @@
SIS ID,Name,School Number,School NCES_ID,Grade Low,Grade High,State ID,Principal SIS ID,Principal Name,Principal Secondary Email,Address,City,State,Zip,Country,Phone,Zone
sch1,Gallagher Middle,1,1,9,12,1,02100,Dennis Boone,dennis.boone@contosoisd3.onmicrosoft.com,77763,North Maryview,WA,98074,US,+1-074-391-5000x806,1
sch2,King High,2,2,9,12,2,02100,Regina Carter,regina.carter@contosoisd3.onmicrosoft.com,1350,Lake Sarachester,WA,98074,US,656-115-9714x398,1
sch3,Sawyer High,3,3,9,12,3,02100,Joseph Erickson,joseph.erickson@contosoisd3.onmicrosoft.com,2747,South Josephton,WA,98074,US,151.702.8216x494,1
sch4,Abbott Elementary,4,4,9,12,4,02100,Andrew Richardson,andrew.richardson@contosoisd3.onmicrosoft.com,433,Michellehaven,WA,98074,US,583-714-6308x68716,1
1 SIS ID Name School Number School NCES_ID Grade Low Grade High State ID Principal SIS ID Principal Name Principal Secondary Email Address City State Zip Country Phone Zone
2 sch1 Gallagher Middle 1 1 9 12 1 02100 Dennis Boone dennis.boone@contosoisd3.onmicrosoft.com 77763 North Maryview WA 98074 US +1-074-391-5000x806 1
3 sch2 King High 2 2 9 12 2 02100 Regina Carter regina.carter@contosoisd3.onmicrosoft.com 1350 Lake Sarachester WA 98074 US 656-115-9714x398 1
4 sch3 Sawyer High 3 3 9 12 3 02100 Joseph Erickson joseph.erickson@contosoisd3.onmicrosoft.com 2747 South Josephton WA 98074 US 151.702.8216x494 1
5 sch4 Abbott Elementary 4 4 9 12 4 02100 Andrew Richardson andrew.richardson@contosoisd3.onmicrosoft.com 433 Michellehaven WA 98074 US 583-714-6308x68716 1

Просмотреть файл

@ -0,0 +1,105 @@
SIS ID,School SIS ID,Section Name,Section Number,Term SIS ID,Term Name,Term StartDate,Term EndDate,Course SIS ID,Course Name,Course Number,Course Description,Course Subject,Periods,Status
1,sch1,Math - Algebra 1,1,term1,Fall Semester,9/1/2019,12/22/2019,course1,Math - Algebra,1,Instruction covering Math - Algebra,Math - Algebra,2,Active
2,sch1,English Language 2,2,term1,Fall Semester,9/1/2019,12/22/2019,course3,English Language,3,Instruction covering English Language,English Language,2,Active
3,sch1,Science Biology 3,3,term1,Fall Semester,9/1/2019,12/22/2019,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
4,sch1,English Language 4,4,term1,Fall Semester,9/1/2019,12/22/2019,course3,English Language,3,Instruction covering English Language,English Language,2,Active
5,sch1,English Language 5,5,term1,Fall Semester,9/1/2019,12/22/2019,course3,English Language,3,Instruction covering English Language,English Language,2,Active
6,sch1,Art 6,6,term1,Fall Semester,9/1/2019,12/22/2019,course9,Art,9,Instruction covering Art,Art,2,Active
7,sch1,Physical Education 7,7,term1,Fall Semester,9/1/2019,12/22/2019,course8,Physical Education,8,Instruction covering Physical Education,Physical Education,2,Active
8,sch1,Math - Geometry 8,8,term1,Fall Semester,9/1/2019,12/22/2019,course2,Math - Geometry,2,Instruction covering Math - Geometry,Math - Geometry,2,Active
9,sch1,Science Biology 9,9,term1,Fall Semester,9/1/2019,12/22/2019,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
10,sch1,Physical Education 10,10,term1,Fall Semester,9/1/2019,12/22/2019,course8,Physical Education,8,Instruction covering Physical Education,Physical Education,2,Active
11,sch1,Science Biology 11,11,term1,Fall Semester,9/1/2019,12/22/2019,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
12,sch1,Math - Algebra 12,12,term1,Fall Semester,9/1/2019,12/22/2019,course1,Math - Algebra,1,Instruction covering Math - Algebra,Math - Algebra,2,Active
13,sch1,Music 13,13,term1,Fall Semester,9/1/2019,12/22/2019,course10,Music,10,Instruction covering Music,Music,2,Active
14,sch1,Art 14,14,term2,Spring Semester,1/21/2020,5/30/2020,course9,Art,9,Instruction covering Art,Art,2,Active
15,sch1,English Language 15,15,term2,Spring Semester,1/21/2020,5/30/2020,course3,English Language,3,Instruction covering English Language,English Language,2,Active
16,sch1,Music 16,16,term2,Spring Semester,1/21/2020,5/30/2020,course10,Music,10,Instruction covering Music,Music,2,Active
17,sch1,Technology - Programming 17,17,term2,Spring Semester,1/21/2020,5/30/2020,course7,Technology - Programming,7,Instruction covering Technology - Programming,Technology - Programming,2,Active
18,sch1,English Language 18,18,term2,Spring Semester,1/21/2020,5/30/2020,course3,English Language,3,Instruction covering English Language,English Language,2,Active
19,sch1,English Language 19,19,term2,Spring Semester,1/21/2020,5/30/2020,course3,English Language,3,Instruction covering English Language,English Language,2,Active
20,sch1,Technology - Programming 20,20,term2,Spring Semester,1/21/2020,5/30/2020,course7,Technology - Programming,7,Instruction covering Technology - Programming,Technology - Programming,2,Active
21,sch1,Science Biology 21,21,term2,Spring Semester,1/21/2020,5/30/2020,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
22,sch1,Health 22,22,term2,Spring Semester,1/21/2020,5/30/2020,course6,Health,6,Instruction covering Health,Health,2,Active
23,sch1,English Language 23,23,term2,Spring Semester,1/21/2020,5/30/2020,course3,English Language,3,Instruction covering English Language,English Language,2,Active
24,sch1,Math - Algebra 24,24,term2,Spring Semester,1/21/2020,5/30/2020,course1,Math - Algebra,1,Instruction covering Math - Algebra,Math - Algebra,2,Active
25,sch1,Music 25,25,term2,Spring Semester,1/21/2020,5/30/2020,course10,Music,10,Instruction covering Music,Music,2,Active
26,sch1,Music 26,26,term2,Spring Semester,1/21/2020,5/30/2020,course10,Music,10,Instruction covering Music,Music,2,Active
27,sch2,Health 27,27,term2,Fall Semester,9/1/2019,12/22/2019,course16,Health,16,Instruction covering Health,Health,2,Active
28,sch2,Science Biology 28,28,term2,Fall Semester,9/1/2019,12/22/2019,course15,Science Biology,15,Instruction covering Science Biology,Science Biology,2,Active
29,sch2,Math - Algebra 29,29,term2,Fall Semester,9/1/2019,12/22/2019,course11,Math - Algebra,11,Instruction covering Math - Algebra,Math - Algebra,2,Active
30,sch2,Health 30,30,term2,Fall Semester,9/1/2019,12/22/2019,course16,Health,16,Instruction covering Health,Health,2,Active
31,sch2,Math - Algebra 31,31,term2,Fall Semester,9/1/2019,12/22/2019,course11,Math - Algebra,11,Instruction covering Math - Algebra,Math - Algebra,2,Active
32,sch2,Technology - Programming 32,32,term2,Fall Semester,9/1/2019,12/22/2019,course17,Technology - Programming,17,Instruction covering Technology - Programming,Technology - Programming,2,Active
33,sch2,Physical Education 33,33,term2,Fall Semester,9/1/2019,12/22/2019,course18,Physical Education,18,Instruction covering Physical Education,Physical Education,2,Active
34,sch2,English Language 34,34,term2,Fall Semester,9/1/2019,12/22/2019,course13,English Language,13,Instruction covering English Language,English Language,2,Active
35,sch2,English Language 35,35,term2,Fall Semester,9/1/2019,12/22/2019,course13,English Language,13,Instruction covering English Language,English Language,2,Active
36,sch2,Math - Algebra 36,36,term2,Fall Semester,9/1/2019,12/22/2019,course11,Math - Algebra,11,Instruction covering Math - Algebra,Math - Algebra,2,Active
37,sch2,History - World History 37,37,term2,Fall Semester,9/1/2019,12/22/2019,course14,History - World History,14,Instruction covering History - World History,History - World History,2,Active
38,sch2,Math - Geometry 38,38,term2,Fall Semester,9/1/2019,12/22/2019,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
39,sch2,English Language 39,39,term2,Fall Semester,9/1/2019,12/22/2019,course13,English Language,13,Instruction covering English Language,English Language,2,Active
40,sch2,Health 40,40,term3,Spring Semester,1/21/2020,5/30/2020,course16,Health,16,Instruction covering Health,Health,2,Active
41,sch2,History - World History 41,41,term3,Spring Semester,1/21/2020,5/30/2020,course14,History - World History,14,Instruction covering History - World History,History - World History,2,Active
42,sch2,Art 42,42,term3,Spring Semester,1/21/2020,5/30/2020,course19,Art,19,Instruction covering Art,Art,2,Active
43,sch2,Technology - Programming 43,43,term3,Spring Semester,1/21/2020,5/30/2020,course17,Technology - Programming,17,Instruction covering Technology - Programming,Technology - Programming,2,Active
44,sch2,Math - Geometry 44,44,term3,Spring Semester,1/21/2020,5/30/2020,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
45,sch2,Science Biology 45,45,term3,Spring Semester,1/21/2020,5/30/2020,course15,Science Biology,15,Instruction covering Science Biology,Science Biology,2,Active
46,sch2,History - World History 46,46,term3,Spring Semester,1/21/2020,5/30/2020,course14,History - World History,14,Instruction covering History - World History,History - World History,2,Active
47,sch2,Math - Geometry 47,47,term3,Spring Semester,1/21/2020,5/30/2020,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
48,sch2,Math - Algebra 48,48,term3,Spring Semester,1/21/2020,5/30/2020,course11,Math - Algebra,11,Instruction covering Math - Algebra,Math - Algebra,2,Active
49,sch2,Physical Education 49,49,term3,Spring Semester,1/21/2020,5/30/2020,course18,Physical Education,18,Instruction covering Physical Education,Physical Education,2,Active
50,sch2,Music 50,50,term3,Spring Semester,1/21/2020,5/30/2020,course20,Music,20,Instruction covering Music,Music,2,Active
51,sch2,Math - Geometry 51,51,term3,Spring Semester,1/21/2020,5/30/2020,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
52,sch2,Math - Algebra 52,52,term3,Spring Semester,1/21/2020,5/30/2020,course11,Math - Algebra,11,Instruction covering Math - Algebra,Math - Algebra,2,Active
53,sch3,Music 53,53,term3,Fall Semester,9/1/2019,12/22/2019,course30,Music,30,Instruction covering Music,Music,2,Active
54,sch3,Math - Geometry 54,54,term3,Fall Semester,9/1/2019,12/22/2019,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
55,sch3,Technology - Programming 55,55,term3,Fall Semester,9/1/2019,12/22/2019,course27,Technology - Programming,27,Instruction covering Technology - Programming,Technology - Programming,2,Active
56,sch3,Math - Geometry 56,56,term3,Fall Semester,9/1/2019,12/22/2019,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
57,sch3,Math - Algebra 57,57,term3,Fall Semester,9/1/2019,12/22/2019,course21,Math - Algebra,21,Instruction covering Math - Algebra,Math - Algebra,2,Active
58,sch3,Music 58,58,term3,Fall Semester,9/1/2019,12/22/2019,course30,Music,30,Instruction covering Music,Music,2,Active
59,sch3,Math - Geometry 59,59,term3,Fall Semester,9/1/2019,12/22/2019,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
60,sch3,English Language 60,60,term3,Fall Semester,9/1/2019,12/22/2019,course23,English Language,23,Instruction covering English Language,English Language,2,Active
61,sch3,Art 61,61,term3,Fall Semester,9/1/2019,12/22/2019,course29,Art,29,Instruction covering Art,Art,2,Active
62,sch3,Math - Algebra 62,62,term3,Fall Semester,9/1/2019,12/22/2019,course21,Math - Algebra,21,Instruction covering Math - Algebra,Math - Algebra,2,Active
63,sch3,History - World History 63,63,term3,Fall Semester,9/1/2019,12/22/2019,course24,History - World History,24,Instruction covering History - World History,History - World History,2,Active
64,sch3,History - World History 64,64,term3,Fall Semester,9/1/2019,12/22/2019,course24,History - World History,24,Instruction covering History - World History,History - World History,2,Active
65,sch3,History - World History 65,65,term3,Fall Semester,9/1/2019,12/22/2019,course24,History - World History,24,Instruction covering History - World History,History - World History,2,Active
66,sch3,Technology - Programming 66,66,term4,Spring Semester,1/21/2020,5/30/2020,course27,Technology - Programming,27,Instruction covering Technology - Programming,Technology - Programming,2,Active
67,sch3,Math - Geometry 67,67,term4,Spring Semester,1/21/2020,5/30/2020,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
68,sch3,Health 68,68,term4,Spring Semester,1/21/2020,5/30/2020,course26,Health,26,Instruction covering Health,Health,2,Active
69,sch3,Art 69,69,term4,Spring Semester,1/21/2020,5/30/2020,course29,Art,29,Instruction covering Art,Art,2,Active
70,sch3,Health 70,70,term4,Spring Semester,1/21/2020,5/30/2020,course26,Health,26,Instruction covering Health,Health,2,Active
71,sch3,Health 71,71,term4,Spring Semester,1/21/2020,5/30/2020,course26,Health,26,Instruction covering Health,Health,2,Active
72,sch3,Music 72,72,term4,Spring Semester,1/21/2020,5/30/2020,course30,Music,30,Instruction covering Music,Music,2,Active
73,sch3,English Language 73,73,term4,Spring Semester,1/21/2020,5/30/2020,course23,English Language,23,Instruction covering English Language,English Language,2,Active
74,sch3,English Language 74,74,term4,Spring Semester,1/21/2020,5/30/2020,course23,English Language,23,Instruction covering English Language,English Language,2,Active
75,sch3,Science Biology 75,75,term4,Spring Semester,1/21/2020,5/30/2020,course25,Science Biology,25,Instruction covering Science Biology,Science Biology,2,Active
76,sch3,Health 76,76,term4,Spring Semester,1/21/2020,5/30/2020,course26,Health,26,Instruction covering Health,Health,2,Active
77,sch3,Math - Geometry 77,77,term4,Spring Semester,1/21/2020,5/30/2020,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
78,sch3,Math - Geometry 78,78,term4,Spring Semester,1/21/2020,5/30/2020,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
79,sch4,Math - Geometry 79,79,term4,Fall Semester,9/1/2019,12/22/2019,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
80,sch4,Health 80,80,term4,Fall Semester,9/1/2019,12/22/2019,course36,Health,36,Instruction covering Health,Health,2,Active
81,sch4,Science Biology 81,81,term4,Fall Semester,9/1/2019,12/22/2019,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
82,sch4,Music 82,82,term4,Fall Semester,9/1/2019,12/22/2019,course40,Music,40,Instruction covering Music,Music,2,Active
83,sch4,Music 83,83,term4,Fall Semester,9/1/2019,12/22/2019,course40,Music,40,Instruction covering Music,Music,2,Active
84,sch4,Math - Algebra 84,84,term4,Fall Semester,9/1/2019,12/22/2019,course31,Math - Algebra,31,Instruction covering Math - Algebra,Math - Algebra,2,Active
85,sch4,Science Biology 85,85,term4,Fall Semester,9/1/2019,12/22/2019,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
86,sch4,Math - Geometry 86,86,term4,Fall Semester,9/1/2019,12/22/2019,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
87,sch4,English Language 87,87,term4,Fall Semester,9/1/2019,12/22/2019,course33,English Language,33,Instruction covering English Language,English Language,2,Active
88,sch4,Science Biology 88,88,term4,Fall Semester,9/1/2019,12/22/2019,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
89,sch4,Math - Geometry 89,89,term4,Fall Semester,9/1/2019,12/22/2019,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
90,sch4,Physical Education 90,90,term4,Fall Semester,9/1/2019,12/22/2019,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
91,sch4,Math - Geometry 91,91,term4,Fall Semester,9/1/2019,12/22/2019,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
92,sch4,Math - Algebra 92,92,term5,Spring Semester,1/21/2020,5/30/2020,course31,Math - Algebra,31,Instruction covering Math - Algebra,Math - Algebra,2,Active
93,sch4,English Language 93,93,term5,Spring Semester,1/21/2020,5/30/2020,course33,English Language,33,Instruction covering English Language,English Language,2,Active
94,sch4,Math - Geometry 94,94,term5,Spring Semester,1/21/2020,5/30/2020,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
95,sch4,Music 95,95,term5,Spring Semester,1/21/2020,5/30/2020,course40,Music,40,Instruction covering Music,Music,2,Active
96,sch4,Physical Education 96,96,term5,Spring Semester,1/21/2020,5/30/2020,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
97,sch4,English Language 97,97,term5,Spring Semester,1/21/2020,5/30/2020,course33,English Language,33,Instruction covering English Language,English Language,2,Active
98,sch4,Music 98,98,term5,Spring Semester,1/21/2020,5/30/2020,course40,Music,40,Instruction covering Music,Music,2,Active
99,sch4,Science Biology 99,99,term5,Spring Semester,1/21/2020,5/30/2020,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
100,sch4,Art 100,100,term5,Spring Semester,1/21/2020,5/30/2020,course39,Art,39,Instruction covering Art,Art,2,Active
101,sch4,Art 101,101,term5,Spring Semester,1/21/2020,5/30/2020,course39,Art,39,Instruction covering Art,Art,2,Active
102,sch4,Physical Education 102,102,term5,Spring Semester,1/21/2020,5/30/2020,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
103,sch4,Physical Education 103,103,term5,Spring Semester,1/21/2020,5/30/2020,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
104,sch4,Math - Geometry 104,104,term5,Spring Semester,1/21/2020,5/30/2020,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
1 SIS ID School SIS ID Section Name Section Number Term SIS ID Term Name Term StartDate Term EndDate Course SIS ID Course Name Course Number Course Description Course Subject Periods Status
2 1 sch1 Math - Algebra 1 1 term1 Fall Semester 9/1/2019 12/22/2019 course1 Math - Algebra 1 Instruction covering Math - Algebra Math - Algebra 2 Active
3 2 sch1 English Language 2 2 term1 Fall Semester 9/1/2019 12/22/2019 course3 English Language 3 Instruction covering English Language English Language 2 Active
4 3 sch1 Science Biology 3 3 term1 Fall Semester 9/1/2019 12/22/2019 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
5 4 sch1 English Language 4 4 term1 Fall Semester 9/1/2019 12/22/2019 course3 English Language 3 Instruction covering English Language English Language 2 Active
6 5 sch1 English Language 5 5 term1 Fall Semester 9/1/2019 12/22/2019 course3 English Language 3 Instruction covering English Language English Language 2 Active
7 6 sch1 Art 6 6 term1 Fall Semester 9/1/2019 12/22/2019 course9 Art 9 Instruction covering Art Art 2 Active
8 7 sch1 Physical Education 7 7 term1 Fall Semester 9/1/2019 12/22/2019 course8 Physical Education 8 Instruction covering Physical Education Physical Education 2 Active
9 8 sch1 Math - Geometry 8 8 term1 Fall Semester 9/1/2019 12/22/2019 course2 Math - Geometry 2 Instruction covering Math - Geometry Math - Geometry 2 Active
10 9 sch1 Science Biology 9 9 term1 Fall Semester 9/1/2019 12/22/2019 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
11 10 sch1 Physical Education 10 10 term1 Fall Semester 9/1/2019 12/22/2019 course8 Physical Education 8 Instruction covering Physical Education Physical Education 2 Active
12 11 sch1 Science Biology 11 11 term1 Fall Semester 9/1/2019 12/22/2019 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
13 12 sch1 Math - Algebra 12 12 term1 Fall Semester 9/1/2019 12/22/2019 course1 Math - Algebra 1 Instruction covering Math - Algebra Math - Algebra 2 Active
14 13 sch1 Music 13 13 term1 Fall Semester 9/1/2019 12/22/2019 course10 Music 10 Instruction covering Music Music 2 Active
15 14 sch1 Art 14 14 term2 Spring Semester 1/21/2020 5/30/2020 course9 Art 9 Instruction covering Art Art 2 Active
16 15 sch1 English Language 15 15 term2 Spring Semester 1/21/2020 5/30/2020 course3 English Language 3 Instruction covering English Language English Language 2 Active
17 16 sch1 Music 16 16 term2 Spring Semester 1/21/2020 5/30/2020 course10 Music 10 Instruction covering Music Music 2 Active
18 17 sch1 Technology - Programming 17 17 term2 Spring Semester 1/21/2020 5/30/2020 course7 Technology - Programming 7 Instruction covering Technology - Programming Technology - Programming 2 Active
19 18 sch1 English Language 18 18 term2 Spring Semester 1/21/2020 5/30/2020 course3 English Language 3 Instruction covering English Language English Language 2 Active
20 19 sch1 English Language 19 19 term2 Spring Semester 1/21/2020 5/30/2020 course3 English Language 3 Instruction covering English Language English Language 2 Active
21 20 sch1 Technology - Programming 20 20 term2 Spring Semester 1/21/2020 5/30/2020 course7 Technology - Programming 7 Instruction covering Technology - Programming Technology - Programming 2 Active
22 21 sch1 Science Biology 21 21 term2 Spring Semester 1/21/2020 5/30/2020 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
23 22 sch1 Health 22 22 term2 Spring Semester 1/21/2020 5/30/2020 course6 Health 6 Instruction covering Health Health 2 Active
24 23 sch1 English Language 23 23 term2 Spring Semester 1/21/2020 5/30/2020 course3 English Language 3 Instruction covering English Language English Language 2 Active
25 24 sch1 Math - Algebra 24 24 term2 Spring Semester 1/21/2020 5/30/2020 course1 Math - Algebra 1 Instruction covering Math - Algebra Math - Algebra 2 Active
26 25 sch1 Music 25 25 term2 Spring Semester 1/21/2020 5/30/2020 course10 Music 10 Instruction covering Music Music 2 Active
27 26 sch1 Music 26 26 term2 Spring Semester 1/21/2020 5/30/2020 course10 Music 10 Instruction covering Music Music 2 Active
28 27 sch2 Health 27 27 term2 Fall Semester 9/1/2019 12/22/2019 course16 Health 16 Instruction covering Health Health 2 Active
29 28 sch2 Science Biology 28 28 term2 Fall Semester 9/1/2019 12/22/2019 course15 Science Biology 15 Instruction covering Science Biology Science Biology 2 Active
30 29 sch2 Math - Algebra 29 29 term2 Fall Semester 9/1/2019 12/22/2019 course11 Math - Algebra 11 Instruction covering Math - Algebra Math - Algebra 2 Active
31 30 sch2 Health 30 30 term2 Fall Semester 9/1/2019 12/22/2019 course16 Health 16 Instruction covering Health Health 2 Active
32 31 sch2 Math - Algebra 31 31 term2 Fall Semester 9/1/2019 12/22/2019 course11 Math - Algebra 11 Instruction covering Math - Algebra Math - Algebra 2 Active
33 32 sch2 Technology - Programming 32 32 term2 Fall Semester 9/1/2019 12/22/2019 course17 Technology - Programming 17 Instruction covering Technology - Programming Technology - Programming 2 Active
34 33 sch2 Physical Education 33 33 term2 Fall Semester 9/1/2019 12/22/2019 course18 Physical Education 18 Instruction covering Physical Education Physical Education 2 Active
35 34 sch2 English Language 34 34 term2 Fall Semester 9/1/2019 12/22/2019 course13 English Language 13 Instruction covering English Language English Language 2 Active
36 35 sch2 English Language 35 35 term2 Fall Semester 9/1/2019 12/22/2019 course13 English Language 13 Instruction covering English Language English Language 2 Active
37 36 sch2 Math - Algebra 36 36 term2 Fall Semester 9/1/2019 12/22/2019 course11 Math - Algebra 11 Instruction covering Math - Algebra Math - Algebra 2 Active
38 37 sch2 History - World History 37 37 term2 Fall Semester 9/1/2019 12/22/2019 course14 History - World History 14 Instruction covering History - World History History - World History 2 Active
39 38 sch2 Math - Geometry 38 38 term2 Fall Semester 9/1/2019 12/22/2019 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
40 39 sch2 English Language 39 39 term2 Fall Semester 9/1/2019 12/22/2019 course13 English Language 13 Instruction covering English Language English Language 2 Active
41 40 sch2 Health 40 40 term3 Spring Semester 1/21/2020 5/30/2020 course16 Health 16 Instruction covering Health Health 2 Active
42 41 sch2 History - World History 41 41 term3 Spring Semester 1/21/2020 5/30/2020 course14 History - World History 14 Instruction covering History - World History History - World History 2 Active
43 42 sch2 Art 42 42 term3 Spring Semester 1/21/2020 5/30/2020 course19 Art 19 Instruction covering Art Art 2 Active
44 43 sch2 Technology - Programming 43 43 term3 Spring Semester 1/21/2020 5/30/2020 course17 Technology - Programming 17 Instruction covering Technology - Programming Technology - Programming 2 Active
45 44 sch2 Math - Geometry 44 44 term3 Spring Semester 1/21/2020 5/30/2020 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
46 45 sch2 Science Biology 45 45 term3 Spring Semester 1/21/2020 5/30/2020 course15 Science Biology 15 Instruction covering Science Biology Science Biology 2 Active
47 46 sch2 History - World History 46 46 term3 Spring Semester 1/21/2020 5/30/2020 course14 History - World History 14 Instruction covering History - World History History - World History 2 Active
48 47 sch2 Math - Geometry 47 47 term3 Spring Semester 1/21/2020 5/30/2020 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
49 48 sch2 Math - Algebra 48 48 term3 Spring Semester 1/21/2020 5/30/2020 course11 Math - Algebra 11 Instruction covering Math - Algebra Math - Algebra 2 Active
50 49 sch2 Physical Education 49 49 term3 Spring Semester 1/21/2020 5/30/2020 course18 Physical Education 18 Instruction covering Physical Education Physical Education 2 Active
51 50 sch2 Music 50 50 term3 Spring Semester 1/21/2020 5/30/2020 course20 Music 20 Instruction covering Music Music 2 Active
52 51 sch2 Math - Geometry 51 51 term3 Spring Semester 1/21/2020 5/30/2020 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
53 52 sch2 Math - Algebra 52 52 term3 Spring Semester 1/21/2020 5/30/2020 course11 Math - Algebra 11 Instruction covering Math - Algebra Math - Algebra 2 Active
54 53 sch3 Music 53 53 term3 Fall Semester 9/1/2019 12/22/2019 course30 Music 30 Instruction covering Music Music 2 Active
55 54 sch3 Math - Geometry 54 54 term3 Fall Semester 9/1/2019 12/22/2019 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
56 55 sch3 Technology - Programming 55 55 term3 Fall Semester 9/1/2019 12/22/2019 course27 Technology - Programming 27 Instruction covering Technology - Programming Technology - Programming 2 Active
57 56 sch3 Math - Geometry 56 56 term3 Fall Semester 9/1/2019 12/22/2019 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
58 57 sch3 Math - Algebra 57 57 term3 Fall Semester 9/1/2019 12/22/2019 course21 Math - Algebra 21 Instruction covering Math - Algebra Math - Algebra 2 Active
59 58 sch3 Music 58 58 term3 Fall Semester 9/1/2019 12/22/2019 course30 Music 30 Instruction covering Music Music 2 Active
60 59 sch3 Math - Geometry 59 59 term3 Fall Semester 9/1/2019 12/22/2019 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
61 60 sch3 English Language 60 60 term3 Fall Semester 9/1/2019 12/22/2019 course23 English Language 23 Instruction covering English Language English Language 2 Active
62 61 sch3 Art 61 61 term3 Fall Semester 9/1/2019 12/22/2019 course29 Art 29 Instruction covering Art Art 2 Active
63 62 sch3 Math - Algebra 62 62 term3 Fall Semester 9/1/2019 12/22/2019 course21 Math - Algebra 21 Instruction covering Math - Algebra Math - Algebra 2 Active
64 63 sch3 History - World History 63 63 term3 Fall Semester 9/1/2019 12/22/2019 course24 History - World History 24 Instruction covering History - World History History - World History 2 Active
65 64 sch3 History - World History 64 64 term3 Fall Semester 9/1/2019 12/22/2019 course24 History - World History 24 Instruction covering History - World History History - World History 2 Active
66 65 sch3 History - World History 65 65 term3 Fall Semester 9/1/2019 12/22/2019 course24 History - World History 24 Instruction covering History - World History History - World History 2 Active
67 66 sch3 Technology - Programming 66 66 term4 Spring Semester 1/21/2020 5/30/2020 course27 Technology - Programming 27 Instruction covering Technology - Programming Technology - Programming 2 Active
68 67 sch3 Math - Geometry 67 67 term4 Spring Semester 1/21/2020 5/30/2020 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
69 68 sch3 Health 68 68 term4 Spring Semester 1/21/2020 5/30/2020 course26 Health 26 Instruction covering Health Health 2 Active
70 69 sch3 Art 69 69 term4 Spring Semester 1/21/2020 5/30/2020 course29 Art 29 Instruction covering Art Art 2 Active
71 70 sch3 Health 70 70 term4 Spring Semester 1/21/2020 5/30/2020 course26 Health 26 Instruction covering Health Health 2 Active
72 71 sch3 Health 71 71 term4 Spring Semester 1/21/2020 5/30/2020 course26 Health 26 Instruction covering Health Health 2 Active
73 72 sch3 Music 72 72 term4 Spring Semester 1/21/2020 5/30/2020 course30 Music 30 Instruction covering Music Music 2 Active
74 73 sch3 English Language 73 73 term4 Spring Semester 1/21/2020 5/30/2020 course23 English Language 23 Instruction covering English Language English Language 2 Active
75 74 sch3 English Language 74 74 term4 Spring Semester 1/21/2020 5/30/2020 course23 English Language 23 Instruction covering English Language English Language 2 Active
76 75 sch3 Science Biology 75 75 term4 Spring Semester 1/21/2020 5/30/2020 course25 Science Biology 25 Instruction covering Science Biology Science Biology 2 Active
77 76 sch3 Health 76 76 term4 Spring Semester 1/21/2020 5/30/2020 course26 Health 26 Instruction covering Health Health 2 Active
78 77 sch3 Math - Geometry 77 77 term4 Spring Semester 1/21/2020 5/30/2020 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
79 78 sch3 Math - Geometry 78 78 term4 Spring Semester 1/21/2020 5/30/2020 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
80 79 sch4 Math - Geometry 79 79 term4 Fall Semester 9/1/2019 12/22/2019 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
81 80 sch4 Health 80 80 term4 Fall Semester 9/1/2019 12/22/2019 course36 Health 36 Instruction covering Health Health 2 Active
82 81 sch4 Science Biology 81 81 term4 Fall Semester 9/1/2019 12/22/2019 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
83 82 sch4 Music 82 82 term4 Fall Semester 9/1/2019 12/22/2019 course40 Music 40 Instruction covering Music Music 2 Active
84 83 sch4 Music 83 83 term4 Fall Semester 9/1/2019 12/22/2019 course40 Music 40 Instruction covering Music Music 2 Active
85 84 sch4 Math - Algebra 84 84 term4 Fall Semester 9/1/2019 12/22/2019 course31 Math - Algebra 31 Instruction covering Math - Algebra Math - Algebra 2 Active
86 85 sch4 Science Biology 85 85 term4 Fall Semester 9/1/2019 12/22/2019 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
87 86 sch4 Math - Geometry 86 86 term4 Fall Semester 9/1/2019 12/22/2019 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
88 87 sch4 English Language 87 87 term4 Fall Semester 9/1/2019 12/22/2019 course33 English Language 33 Instruction covering English Language English Language 2 Active
89 88 sch4 Science Biology 88 88 term4 Fall Semester 9/1/2019 12/22/2019 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
90 89 sch4 Math - Geometry 89 89 term4 Fall Semester 9/1/2019 12/22/2019 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
91 90 sch4 Physical Education 90 90 term4 Fall Semester 9/1/2019 12/22/2019 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
92 91 sch4 Math - Geometry 91 91 term4 Fall Semester 9/1/2019 12/22/2019 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
93 92 sch4 Math - Algebra 92 92 term5 Spring Semester 1/21/2020 5/30/2020 course31 Math - Algebra 31 Instruction covering Math - Algebra Math - Algebra 2 Active
94 93 sch4 English Language 93 93 term5 Spring Semester 1/21/2020 5/30/2020 course33 English Language 33 Instruction covering English Language English Language 2 Active
95 94 sch4 Math - Geometry 94 94 term5 Spring Semester 1/21/2020 5/30/2020 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
96 95 sch4 Music 95 95 term5 Spring Semester 1/21/2020 5/30/2020 course40 Music 40 Instruction covering Music Music 2 Active
97 96 sch4 Physical Education 96 96 term5 Spring Semester 1/21/2020 5/30/2020 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
98 97 sch4 English Language 97 97 term5 Spring Semester 1/21/2020 5/30/2020 course33 English Language 33 Instruction covering English Language English Language 2 Active
99 98 sch4 Music 98 98 term5 Spring Semester 1/21/2020 5/30/2020 course40 Music 40 Instruction covering Music Music 2 Active
100 99 sch4 Science Biology 99 99 term5 Spring Semester 1/21/2020 5/30/2020 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
101 100 sch4 Art 100 100 term5 Spring Semester 1/21/2020 5/30/2020 course39 Art 39 Instruction covering Art Art 2 Active
102 101 sch4 Art 101 101 term5 Spring Semester 1/21/2020 5/30/2020 course39 Art 39 Instruction covering Art Art 2 Active
103 102 sch4 Physical Education 102 102 term5 Spring Semester 1/21/2020 5/30/2020 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
104 103 sch4 Physical Education 103 103 term5 Spring Semester 1/21/2020 5/30/2020 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
105 104 sch4 Math - Geometry 104 104 term5 Spring Semester 1/21/2020 5/30/2020 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active

Просмотреть файл

@ -0,0 +1,41 @@
SIS ID,School SIS ID,Username,Password,First Name,Last Name,Middle Name,Secondary Email,Student Number,Grade,State ID,Status,Birthdate,Graduation Year
st1,sch1,glendacosta1,i+0DQhwuIt,Glenda,Costa,Paula,glendacosta1@contosoisd3.onmicrosoft.com,1,12,123,Active,4/2/2004,2020
st2,sch1,tammyromero2,V3oPVJ5j_0,Tammy,Romero,Elizabeth,tammyromero2@contosoisd3.onmicrosoft.com,2,9,123,Active,4/2/2004,2020
st3,sch1,marywood3,AoX0ZPb!+u,Mary,Wood,Stephanie,marywood3@contosoisd3.onmicrosoft.com,3,11,123,Active,4/2/2004,2020
st4,sch1,josephkelley4,pwv0)jMz+E,Joseph,Kelley,Lisa,josephkelley4@contosoisd3.onmicrosoft.com,4,9,123,Active,4/2/2004,2020
st5,sch1,amberbuchanan5,^7S1TSoa#v,Amber,Buchanan,John,amberbuchanan5@contosoisd3.onmicrosoft.com,5,11,123,Active,4/2/2004,2020
st6,sch1,maxwelljones6,aZ9Qf(BD#4,Maxwell,Jones,Ryan,maxwelljones6@contosoisd3.onmicrosoft.com,6,10,123,Active,4/2/2004,2020
st7,sch1,rayjohnson7,#S4y7WqZHU,Ray,Johnson,David,rayjohnson7@contosoisd3.onmicrosoft.com,7,9,123,Active,4/2/2004,2020
st8,sch1,chadjones8,N!r#mxs0%2,Chad,Jones,James,chadjones8@contosoisd3.onmicrosoft.com,8,9,123,Active,4/2/2004,2020
st9,sch1,peggyvargas9,9OC*1VmCzj,Peggy,Vargas,Emily,peggyvargas9@contosoisd3.onmicrosoft.com,9,9,123,Active,4/2/2004,2020
st10,sch1,mauricekhan10,y_f8Py3iWo,Maurice,Khan,Michelle,mauricekhan10@contosoisd3.onmicrosoft.com,10,10,123,Active,4/2/2004,2020
st11,sch2,mikaylaharrison11,^24mFr&UD4,Mikayla,Harrison,Levi,mikaylaharrison11@contosoisd3.onmicrosoft.com,11,10,123,Active,4/2/2004,2020
st12,sch2,kevincook12,W(96^S^zZ9,Kevin,Cook,Walter,kevincook12@contosoisd3.onmicrosoft.com,12,11,123,Active,4/2/2004,2020
st13,sch2,stacythompson13,*Q2Kj_t##s,Stacy,Thompson,Ryan,stacythompson13@contosoisd3.onmicrosoft.com,13,9,123,Active,4/2/2004,2020
st14,sch2,elizabethking14,@SZLHn7@Z7,Elizabeth,King,Brittney,elizabethking14@contosoisd3.onmicrosoft.com,14,9,123,Active,4/2/2004,2020
st15,sch2,joshuaelliott15,N1B9uCh4#c,Joshua,Elliott,Cheryl,joshuaelliott15@contosoisd3.onmicrosoft.com,15,11,123,Active,4/2/2004,2020
st16,sch2,teresarobinson16,+8rBdold@U,Teresa,Robinson,Gregory,teresarobinson16@contosoisd3.onmicrosoft.com,16,11,123,Active,4/2/2004,2020
st17,sch2,ashleytodd17,f!70g$ymYV,Ashley,Todd,Melissa,ashleytodd17@contosoisd3.onmicrosoft.com,17,9,123,Active,4/2/2004,2020
st18,sch2,shelbyberger18,&twKWI(o2h,Shelby,Berger,Beth,shelbyberger18@contosoisd3.onmicrosoft.com,18,9,123,Active,4/2/2004,2020
st19,sch2,johngreen19,2#i4Lpr0EE,John,Green,Jamie,johngreen19@contosoisd3.onmicrosoft.com,19,9,123,Active,4/2/2004,2020
st20,sch2,andrewhudson20,iy_P8JPv!!,Andrew,Hudson,Reginald,andrewhudson20@contosoisd3.onmicrosoft.com,20,12,123,Active,4/2/2004,2020
st21,sch3,jasonclark21,dta4TCcgz^,Jason,Clark,Ann,jasonclark21@contosoisd3.onmicrosoft.com,21,12,123,Active,4/2/2004,2020
st22,sch3,michellerivera22,6a4qTuvw7$,Michelle,Rivera,Stephen,michellerivera22@contosoisd3.onmicrosoft.com,22,10,123,Active,4/2/2004,2020
st23,sch3,patriciaalexander23,%fAHHO*d6W,Patricia,Alexander,Lisa,patriciaalexander23@contosoisd3.onmicrosoft.com,23,10,123,Active,4/2/2004,2020
st24,sch3,matthewmassey24,*HOF9WmfU@,Matthew,Massey,Daniel,matthewmassey24@contosoisd3.onmicrosoft.com,24,11,123,Active,4/2/2004,2020
st25,sch3,alexissmith25,925mMksGq*,Alexis,Smith,Christopher,alexissmith25@contosoisd3.onmicrosoft.com,25,12,123,Active,4/2/2004,2020
st26,sch3,alexisherrera26,(K2Bi8m2L2,Alexis,Herrera,Savannah,alexisherrera26@contosoisd3.onmicrosoft.com,26,10,123,Active,4/2/2004,2020
st27,sch3,catherinecastro27,(0Lrbehfh6,Catherine,Castro,Melissa,catherinecastro27@contosoisd3.onmicrosoft.com,27,11,123,Active,4/2/2004,2020
st28,sch3,christopherli28,*8RKLder@Q,Christopher,Li,Michele,christopherli28@contosoisd3.onmicrosoft.com,28,11,123,Active,4/2/2004,2020
st29,sch3,jillgreen29,VoP3uPGj&1,Jill,Green,Penny,jillgreen29@contosoisd3.onmicrosoft.com,29,11,123,Active,4/2/2004,2020
st30,sch3,ericwood30,5nDmaBAE(h,Eric,Wood,Logan,ericwood30@contosoisd3.onmicrosoft.com,30,10,123,Active,4/2/2004,2020
st31,sch4,christinahicks31,Ez!xNbSm)9,Christina,Hicks,Alicia,christinahicks31@contosoisd3.onmicrosoft.com,31,11,123,Active,4/2/2004,2020
st32,sch4,stephanieortiz32,_PVS9JozgT,Stephanie,Ortiz,Rachel,stephanieortiz32@contosoisd3.onmicrosoft.com,32,9,123,Active,4/2/2004,2020
st33,sch4,patrickmarshall33,GlN_7YkF^k,Patrick,Marshall,Kimberly,patrickmarshall33@contosoisd3.onmicrosoft.com,33,10,123,Active,4/2/2004,2020
st34,sch4,travismata34,+64@6NCHfc,Travis,Mata,Andrea,travismata34@contosoisd3.onmicrosoft.com,34,12,123,Active,4/2/2004,2020
st35,sch4,sophiamontes35,n@zc8lVn3Z,Sophia,Montes,Evelyn,sophiamontes35@contosoisd3.onmicrosoft.com,35,10,123,Active,4/2/2004,2020
st36,sch4,catherinemendoza36,2TIrz6OwS#,Catherine,Mendoza,Alan,catherinemendoza36@contosoisd3.onmicrosoft.com,36,12,123,Active,4/2/2004,2020
st37,sch4,saranovak37,%iR48eI)u0,Sara,Novak,Sonya,saranovak37@contosoisd3.onmicrosoft.com,37,10,123,Active,4/2/2004,2020
st38,sch4,kevinhenry38,51i5UT+pR*,Kevin,Henry,Timothy,kevinhenry38@contosoisd3.onmicrosoft.com,38,10,123,Active,4/2/2004,2020
st39,sch4,hollywalker39,Tb48WrJ!@_,Holly,Walker,Erin,hollywalker39@contosoisd3.onmicrosoft.com,39,10,123,Active,4/2/2004,2020
st40,sch4,carolynstone40,!1Kc$lf*B7,Carolyn,Stone,Sara,carolynstone40@contosoisd3.onmicrosoft.com,40,11,123,Active,4/2/2004,2020
1 SIS ID School SIS ID Username Password First Name Last Name Middle Name Secondary Email Student Number Grade State ID Status Birthdate Graduation Year
2 st1 sch1 glendacosta1 i+0DQhwuIt Glenda Costa Paula glendacosta1@contosoisd3.onmicrosoft.com 1 12 123 Active 4/2/2004 2020
3 st2 sch1 tammyromero2 V3oPVJ5j_0 Tammy Romero Elizabeth tammyromero2@contosoisd3.onmicrosoft.com 2 9 123 Active 4/2/2004 2020
4 st3 sch1 marywood3 AoX0ZPb!+u Mary Wood Stephanie marywood3@contosoisd3.onmicrosoft.com 3 11 123 Active 4/2/2004 2020
5 st4 sch1 josephkelley4 pwv0)jMz+E Joseph Kelley Lisa josephkelley4@contosoisd3.onmicrosoft.com 4 9 123 Active 4/2/2004 2020
6 st5 sch1 amberbuchanan5 ^7S1TSoa#v Amber Buchanan John amberbuchanan5@contosoisd3.onmicrosoft.com 5 11 123 Active 4/2/2004 2020
7 st6 sch1 maxwelljones6 aZ9Qf(BD#4 Maxwell Jones Ryan maxwelljones6@contosoisd3.onmicrosoft.com 6 10 123 Active 4/2/2004 2020
8 st7 sch1 rayjohnson7 #S4y7WqZHU Ray Johnson David rayjohnson7@contosoisd3.onmicrosoft.com 7 9 123 Active 4/2/2004 2020
9 st8 sch1 chadjones8 N!r#mxs0%2 Chad Jones James chadjones8@contosoisd3.onmicrosoft.com 8 9 123 Active 4/2/2004 2020
10 st9 sch1 peggyvargas9 9OC*1VmCzj Peggy Vargas Emily peggyvargas9@contosoisd3.onmicrosoft.com 9 9 123 Active 4/2/2004 2020
11 st10 sch1 mauricekhan10 y_f8Py3iWo Maurice Khan Michelle mauricekhan10@contosoisd3.onmicrosoft.com 10 10 123 Active 4/2/2004 2020
12 st11 sch2 mikaylaharrison11 ^24mFr&UD4 Mikayla Harrison Levi mikaylaharrison11@contosoisd3.onmicrosoft.com 11 10 123 Active 4/2/2004 2020
13 st12 sch2 kevincook12 W(96^S^zZ9 Kevin Cook Walter kevincook12@contosoisd3.onmicrosoft.com 12 11 123 Active 4/2/2004 2020
14 st13 sch2 stacythompson13 *Q2Kj_t##s Stacy Thompson Ryan stacythompson13@contosoisd3.onmicrosoft.com 13 9 123 Active 4/2/2004 2020
15 st14 sch2 elizabethking14 @SZLHn7@Z7 Elizabeth King Brittney elizabethking14@contosoisd3.onmicrosoft.com 14 9 123 Active 4/2/2004 2020
16 st15 sch2 joshuaelliott15 N1B9uCh4#c Joshua Elliott Cheryl joshuaelliott15@contosoisd3.onmicrosoft.com 15 11 123 Active 4/2/2004 2020
17 st16 sch2 teresarobinson16 +8rBdold@U Teresa Robinson Gregory teresarobinson16@contosoisd3.onmicrosoft.com 16 11 123 Active 4/2/2004 2020
18 st17 sch2 ashleytodd17 f!70g$ymYV Ashley Todd Melissa ashleytodd17@contosoisd3.onmicrosoft.com 17 9 123 Active 4/2/2004 2020
19 st18 sch2 shelbyberger18 &twKWI(o2h Shelby Berger Beth shelbyberger18@contosoisd3.onmicrosoft.com 18 9 123 Active 4/2/2004 2020
20 st19 sch2 johngreen19 2#i4Lpr0EE John Green Jamie johngreen19@contosoisd3.onmicrosoft.com 19 9 123 Active 4/2/2004 2020
21 st20 sch2 andrewhudson20 iy_P8JPv!! Andrew Hudson Reginald andrewhudson20@contosoisd3.onmicrosoft.com 20 12 123 Active 4/2/2004 2020
22 st21 sch3 jasonclark21 dta4TCcgz^ Jason Clark Ann jasonclark21@contosoisd3.onmicrosoft.com 21 12 123 Active 4/2/2004 2020
23 st22 sch3 michellerivera22 6a4qTuvw7$ Michelle Rivera Stephen michellerivera22@contosoisd3.onmicrosoft.com 22 10 123 Active 4/2/2004 2020
24 st23 sch3 patriciaalexander23 %fAHHO*d6W Patricia Alexander Lisa patriciaalexander23@contosoisd3.onmicrosoft.com 23 10 123 Active 4/2/2004 2020
25 st24 sch3 matthewmassey24 *HOF9WmfU@ Matthew Massey Daniel matthewmassey24@contosoisd3.onmicrosoft.com 24 11 123 Active 4/2/2004 2020
26 st25 sch3 alexissmith25 925mMksGq* Alexis Smith Christopher alexissmith25@contosoisd3.onmicrosoft.com 25 12 123 Active 4/2/2004 2020
27 st26 sch3 alexisherrera26 (K2Bi8m2L2 Alexis Herrera Savannah alexisherrera26@contosoisd3.onmicrosoft.com 26 10 123 Active 4/2/2004 2020
28 st27 sch3 catherinecastro27 (0Lrbehfh6 Catherine Castro Melissa catherinecastro27@contosoisd3.onmicrosoft.com 27 11 123 Active 4/2/2004 2020
29 st28 sch3 christopherli28 *8RKLder@Q Christopher Li Michele christopherli28@contosoisd3.onmicrosoft.com 28 11 123 Active 4/2/2004 2020
30 st29 sch3 jillgreen29 VoP3uPGj&1 Jill Green Penny jillgreen29@contosoisd3.onmicrosoft.com 29 11 123 Active 4/2/2004 2020
31 st30 sch3 ericwood30 5nDmaBAE(h Eric Wood Logan ericwood30@contosoisd3.onmicrosoft.com 30 10 123 Active 4/2/2004 2020
32 st31 sch4 christinahicks31 Ez!xNbSm)9 Christina Hicks Alicia christinahicks31@contosoisd3.onmicrosoft.com 31 11 123 Active 4/2/2004 2020
33 st32 sch4 stephanieortiz32 _PVS9JozgT Stephanie Ortiz Rachel stephanieortiz32@contosoisd3.onmicrosoft.com 32 9 123 Active 4/2/2004 2020
34 st33 sch4 patrickmarshall33 GlN_7YkF^k Patrick Marshall Kimberly patrickmarshall33@contosoisd3.onmicrosoft.com 33 10 123 Active 4/2/2004 2020
35 st34 sch4 travismata34 +64@6NCHfc Travis Mata Andrea travismata34@contosoisd3.onmicrosoft.com 34 12 123 Active 4/2/2004 2020
36 st35 sch4 sophiamontes35 n@zc8lVn3Z Sophia Montes Evelyn sophiamontes35@contosoisd3.onmicrosoft.com 35 10 123 Active 4/2/2004 2020
37 st36 sch4 catherinemendoza36 2TIrz6OwS# Catherine Mendoza Alan catherinemendoza36@contosoisd3.onmicrosoft.com 36 12 123 Active 4/2/2004 2020
38 st37 sch4 saranovak37 %iR48eI)u0 Sara Novak Sonya saranovak37@contosoisd3.onmicrosoft.com 37 10 123 Active 4/2/2004 2020
39 st38 sch4 kevinhenry38 51i5UT+pR* Kevin Henry Timothy kevinhenry38@contosoisd3.onmicrosoft.com 38 10 123 Active 4/2/2004 2020
40 st39 sch4 hollywalker39 Tb48WrJ!@_ Holly Walker Erin hollywalker39@contosoisd3.onmicrosoft.com 39 10 123 Active 4/2/2004 2020
41 st40 sch4 carolynstone40 !1Kc$lf*B7 Carolyn Stone Sara carolynstone40@contosoisd3.onmicrosoft.com 40 11 123 Active 4/2/2004 2020

Просмотреть файл

@ -0,0 +1,481 @@
Section SIS ID,SIS ID
1,st1
2,st1
3,st1
4,st1
5,st1
6,st1
14,st1
15,st1
16,st1
17,st1
18,st1
19,st1
1,st2
2,st2
3,st2
4,st2
5,st2
6,st2
14,st2
15,st2
16,st2
17,st2
18,st2
19,st2
1,st3
2,st3
3,st3
4,st3
5,st3
6,st3
14,st3
15,st3
16,st3
17,st3
18,st3
19,st3
1,st4
2,st4
3,st4
4,st4
5,st4
6,st4
14,st4
15,st4
16,st4
17,st4
18,st4
19,st4
1,st5
2,st5
3,st5
4,st5
5,st5
6,st5
14,st5
15,st5
16,st5
17,st5
18,st5
19,st5
7,st6
8,st6
9,st6
10,st6
11,st6
12,st6
20,st6
21,st6
22,st6
23,st6
24,st6
25,st6
7,st7
8,st7
9,st7
10,st7
11,st7
12,st7
20,st7
21,st7
22,st7
23,st7
24,st7
25,st7
7,st8
8,st8
9,st8
10,st8
11,st8
12,st8
20,st8
21,st8
22,st8
23,st8
24,st8
25,st8
7,st9
8,st9
9,st9
10,st9
11,st9
12,st9
20,st9
21,st9
22,st9
23,st9
24,st9
25,st9
7,st10
8,st10
9,st10
10,st10
11,st10
12,st10
20,st10
21,st10
22,st10
23,st10
24,st10
25,st10
27,st11
28,st11
29,st11
30,st11
31,st11
32,st11
40,st11
41,st11
42,st11
43,st11
44,st11
45,st11
27,st12
28,st12
29,st12
30,st12
31,st12
32,st12
40,st12
41,st12
42,st12
43,st12
44,st12
45,st12
27,st13
28,st13
29,st13
30,st13
31,st13
32,st13
40,st13
41,st13
42,st13
43,st13
44,st13
45,st13
27,st14
28,st14
29,st14
30,st14
31,st14
32,st14
40,st14
41,st14
42,st14
43,st14
44,st14
45,st14
27,st15
28,st15
29,st15
30,st15
31,st15
32,st15
40,st15
41,st15
42,st15
43,st15
44,st15
45,st15
33,st16
34,st16
35,st16
36,st16
37,st16
38,st16
46,st16
47,st16
48,st16
49,st16
50,st16
51,st16
33,st17
34,st17
35,st17
36,st17
37,st17
38,st17
46,st17
47,st17
48,st17
49,st17
50,st17
51,st17
33,st18
34,st18
35,st18
36,st18
37,st18
38,st18
46,st18
47,st18
48,st18
49,st18
50,st18
51,st18
33,st19
34,st19
35,st19
36,st19
37,st19
38,st19
46,st19
47,st19
48,st19
49,st19
50,st19
51,st19
33,st20
34,st20
35,st20
36,st20
37,st20
38,st20
46,st20
47,st20
48,st20
49,st20
50,st20
51,st20
53,st21
54,st21
55,st21
56,st21
57,st21
58,st21
66,st21
67,st21
68,st21
69,st21
70,st21
71,st21
53,st22
54,st22
55,st22
56,st22
57,st22
58,st22
66,st22
67,st22
68,st22
69,st22
70,st22
71,st22
53,st23
54,st23
55,st23
56,st23
57,st23
58,st23
66,st23
67,st23
68,st23
69,st23
70,st23
71,st23
53,st24
54,st24
55,st24
56,st24
57,st24
58,st24
66,st24
67,st24
68,st24
69,st24
70,st24
71,st24
53,st25
54,st25
55,st25
56,st25
57,st25
58,st25
66,st25
67,st25
68,st25
69,st25
70,st25
71,st25
59,st26
60,st26
61,st26
62,st26
63,st26
64,st26
72,st26
73,st26
74,st26
75,st26
76,st26
77,st26
59,st27
60,st27
61,st27
62,st27
63,st27
64,st27
72,st27
73,st27
74,st27
75,st27
76,st27
77,st27
59,st28
60,st28
61,st28
62,st28
63,st28
64,st28
72,st28
73,st28
74,st28
75,st28
76,st28
77,st28
59,st29
60,st29
61,st29
62,st29
63,st29
64,st29
72,st29
73,st29
74,st29
75,st29
76,st29
77,st29
59,st30
60,st30
61,st30
62,st30
63,st30
64,st30
72,st30
73,st30
74,st30
75,st30
76,st30
77,st30
79,st31
80,st31
81,st31
82,st31
83,st31
84,st31
92,st31
93,st31
94,st31
95,st31
96,st31
97,st31
79,st32
80,st32
81,st32
82,st32
83,st32
84,st32
92,st32
93,st32
94,st32
95,st32
96,st32
97,st32
79,st33
80,st33
81,st33
82,st33
83,st33
84,st33
92,st33
93,st33
94,st33
95,st33
96,st33
97,st33
79,st34
80,st34
81,st34
82,st34
83,st34
84,st34
92,st34
93,st34
94,st34
95,st34
96,st34
97,st34
79,st35
80,st35
81,st35
82,st35
83,st35
84,st35
92,st35
93,st35
94,st35
95,st35
96,st35
97,st35
85,st36
86,st36
87,st36
88,st36
89,st36
90,st36
98,st36
99,st36
100,st36
101,st36
102,st36
103,st36
85,st37
86,st37
87,st37
88,st37
89,st37
90,st37
98,st37
99,st37
100,st37
101,st37
102,st37
103,st37
85,st38
86,st38
87,st38
88,st38
89,st38
90,st38
98,st38
99,st38
100,st38
101,st38
102,st38
103,st38
85,st39
86,st39
87,st39
88,st39
89,st39
90,st39
98,st39
99,st39
100,st39
101,st39
102,st39
103,st39
85,st40
86,st40
87,st40
88,st40
89,st40
90,st40
98,st40
99,st40
100,st40
101,st40
102,st40
103,st40
1 Section SIS ID SIS ID
2 1 st1
3 2 st1
4 3 st1
5 4 st1
6 5 st1
7 6 st1
8 14 st1
9 15 st1
10 16 st1
11 17 st1
12 18 st1
13 19 st1
14 1 st2
15 2 st2
16 3 st2
17 4 st2
18 5 st2
19 6 st2
20 14 st2
21 15 st2
22 16 st2
23 17 st2
24 18 st2
25 19 st2
26 1 st3
27 2 st3
28 3 st3
29 4 st3
30 5 st3
31 6 st3
32 14 st3
33 15 st3
34 16 st3
35 17 st3
36 18 st3
37 19 st3
38 1 st4
39 2 st4
40 3 st4
41 4 st4
42 5 st4
43 6 st4
44 14 st4
45 15 st4
46 16 st4
47 17 st4
48 18 st4
49 19 st4
50 1 st5
51 2 st5
52 3 st5
53 4 st5
54 5 st5
55 6 st5
56 14 st5
57 15 st5
58 16 st5
59 17 st5
60 18 st5
61 19 st5
62 7 st6
63 8 st6
64 9 st6
65 10 st6
66 11 st6
67 12 st6
68 20 st6
69 21 st6
70 22 st6
71 23 st6
72 24 st6
73 25 st6
74 7 st7
75 8 st7
76 9 st7
77 10 st7
78 11 st7
79 12 st7
80 20 st7
81 21 st7
82 22 st7
83 23 st7
84 24 st7
85 25 st7
86 7 st8
87 8 st8
88 9 st8
89 10 st8
90 11 st8
91 12 st8
92 20 st8
93 21 st8
94 22 st8
95 23 st8
96 24 st8
97 25 st8
98 7 st9
99 8 st9
100 9 st9
101 10 st9
102 11 st9
103 12 st9
104 20 st9
105 21 st9
106 22 st9
107 23 st9
108 24 st9
109 25 st9
110 7 st10
111 8 st10
112 9 st10
113 10 st10
114 11 st10
115 12 st10
116 20 st10
117 21 st10
118 22 st10
119 23 st10
120 24 st10
121 25 st10
122 27 st11
123 28 st11
124 29 st11
125 30 st11
126 31 st11
127 32 st11
128 40 st11
129 41 st11
130 42 st11
131 43 st11
132 44 st11
133 45 st11
134 27 st12
135 28 st12
136 29 st12
137 30 st12
138 31 st12
139 32 st12
140 40 st12
141 41 st12
142 42 st12
143 43 st12
144 44 st12
145 45 st12
146 27 st13
147 28 st13
148 29 st13
149 30 st13
150 31 st13
151 32 st13
152 40 st13
153 41 st13
154 42 st13
155 43 st13
156 44 st13
157 45 st13
158 27 st14
159 28 st14
160 29 st14
161 30 st14
162 31 st14
163 32 st14
164 40 st14
165 41 st14
166 42 st14
167 43 st14
168 44 st14
169 45 st14
170 27 st15
171 28 st15
172 29 st15
173 30 st15
174 31 st15
175 32 st15
176 40 st15
177 41 st15
178 42 st15
179 43 st15
180 44 st15
181 45 st15
182 33 st16
183 34 st16
184 35 st16
185 36 st16
186 37 st16
187 38 st16
188 46 st16
189 47 st16
190 48 st16
191 49 st16
192 50 st16
193 51 st16
194 33 st17
195 34 st17
196 35 st17
197 36 st17
198 37 st17
199 38 st17
200 46 st17
201 47 st17
202 48 st17
203 49 st17
204 50 st17
205 51 st17
206 33 st18
207 34 st18
208 35 st18
209 36 st18
210 37 st18
211 38 st18
212 46 st18
213 47 st18
214 48 st18
215 49 st18
216 50 st18
217 51 st18
218 33 st19
219 34 st19
220 35 st19
221 36 st19
222 37 st19
223 38 st19
224 46 st19
225 47 st19
226 48 st19
227 49 st19
228 50 st19
229 51 st19
230 33 st20
231 34 st20
232 35 st20
233 36 st20
234 37 st20
235 38 st20
236 46 st20
237 47 st20
238 48 st20
239 49 st20
240 50 st20
241 51 st20
242 53 st21
243 54 st21
244 55 st21
245 56 st21
246 57 st21
247 58 st21
248 66 st21
249 67 st21
250 68 st21
251 69 st21
252 70 st21
253 71 st21
254 53 st22
255 54 st22
256 55 st22
257 56 st22
258 57 st22
259 58 st22
260 66 st22
261 67 st22
262 68 st22
263 69 st22
264 70 st22
265 71 st22
266 53 st23
267 54 st23
268 55 st23
269 56 st23
270 57 st23
271 58 st23
272 66 st23
273 67 st23
274 68 st23
275 69 st23
276 70 st23
277 71 st23
278 53 st24
279 54 st24
280 55 st24
281 56 st24
282 57 st24
283 58 st24
284 66 st24
285 67 st24
286 68 st24
287 69 st24
288 70 st24
289 71 st24
290 53 st25
291 54 st25
292 55 st25
293 56 st25
294 57 st25
295 58 st25
296 66 st25
297 67 st25
298 68 st25
299 69 st25
300 70 st25
301 71 st25
302 59 st26
303 60 st26
304 61 st26
305 62 st26
306 63 st26
307 64 st26
308 72 st26
309 73 st26
310 74 st26
311 75 st26
312 76 st26
313 77 st26
314 59 st27
315 60 st27
316 61 st27
317 62 st27
318 63 st27
319 64 st27
320 72 st27
321 73 st27
322 74 st27
323 75 st27
324 76 st27
325 77 st27
326 59 st28
327 60 st28
328 61 st28
329 62 st28
330 63 st28
331 64 st28
332 72 st28
333 73 st28
334 74 st28
335 75 st28
336 76 st28
337 77 st28
338 59 st29
339 60 st29
340 61 st29
341 62 st29
342 63 st29
343 64 st29
344 72 st29
345 73 st29
346 74 st29
347 75 st29
348 76 st29
349 77 st29
350 59 st30
351 60 st30
352 61 st30
353 62 st30
354 63 st30
355 64 st30
356 72 st30
357 73 st30
358 74 st30
359 75 st30
360 76 st30
361 77 st30
362 79 st31
363 80 st31
364 81 st31
365 82 st31
366 83 st31
367 84 st31
368 92 st31
369 93 st31
370 94 st31
371 95 st31
372 96 st31
373 97 st31
374 79 st32
375 80 st32
376 81 st32
377 82 st32
378 83 st32
379 84 st32
380 92 st32
381 93 st32
382 94 st32
383 95 st32
384 96 st32
385 97 st32
386 79 st33
387 80 st33
388 81 st33
389 82 st33
390 83 st33
391 84 st33
392 92 st33
393 93 st33
394 94 st33
395 95 st33
396 96 st33
397 97 st33
398 79 st34
399 80 st34
400 81 st34
401 82 st34
402 83 st34
403 84 st34
404 92 st34
405 93 st34
406 94 st34
407 95 st34
408 96 st34
409 97 st34
410 79 st35
411 80 st35
412 81 st35
413 82 st35
414 83 st35
415 84 st35
416 92 st35
417 93 st35
418 94 st35
419 95 st35
420 96 st35
421 97 st35
422 85 st36
423 86 st36
424 87 st36
425 88 st36
426 89 st36
427 90 st36
428 98 st36
429 99 st36
430 100 st36
431 101 st36
432 102 st36
433 103 st36
434 85 st37
435 86 st37
436 87 st37
437 88 st37
438 89 st37
439 90 st37
440 98 st37
441 99 st37
442 100 st37
443 101 st37
444 102 st37
445 103 st37
446 85 st38
447 86 st38
448 87 st38
449 88 st38
450 89 st38
451 90 st38
452 98 st38
453 99 st38
454 100 st38
455 101 st38
456 102 st38
457 103 st38
458 85 st39
459 86 st39
460 87 st39
461 88 st39
462 89 st39
463 90 st39
464 98 st39
465 99 st39
466 100 st39
467 101 st39
468 102 st39
469 103 st39
470 85 st40
471 86 st40
472 87 st40
473 88 st40
474 89 st40
475 90 st40
476 98 st40
477 99 st40
478 100 st40
479 101 st40
480 102 st40
481 103 st40

Просмотреть файл

@ -0,0 +1,9 @@
SIS ID,School SIS ID,Username,Password,First Name,Last Name,Middle Name,Secondary Email,Teacher Number,State ID,Status,Title,Qualification
t1,sch1,paigetaylor1,Ibz_1KVu^(,Paige,Taylor,Patricia,paigetaylor1@contosoisd3.onmicrosoft.com,1,123,Active,Teacher,EdLD
t2,sch1,stephenramirez2,b!4A#5tJ(0,Stephen,Ramirez,Renee,stephenramirez2@contosoisd3.onmicrosoft.com,2,123,Active,Teacher,EdLD
t3,sch2,travisholland3,!86rGPzrn&,Travis,Holland,Elizabeth,travisholland3@contosoisd3.onmicrosoft.com,3,123,Active,Teacher,EdLD
t4,sch2,erikariley4,y&5^T6s9@f,Erika,Riley,Lisa,erikariley4@contosoisd3.onmicrosoft.com,4,123,Active,Teacher,EdLD
t5,sch3,ashleyhayes5,uxm7uOlQU%,Ashley,Hayes,Kyle,ashleyhayes5@contosoisd3.onmicrosoft.com,5,123,Active,Teacher,EdLD
t6,sch3,williamjohnson6,teIS$*S7%3,William,Johnson,Dawn,williamjohnson6@contosoisd3.onmicrosoft.com,6,123,Active,Teacher,EdLD
t7,sch4,hayleydavis7,rw(ukfAq^4,Hayley,Davis,Amanda,hayleydavis7@contosoisd3.onmicrosoft.com,7,123,Active,Teacher,EdLD
t8,sch4,cynthiadunn8,09KS6QRN!d,Cynthia,Dunn,Anthony,cynthiadunn8@contosoisd3.onmicrosoft.com,8,123,Active,Teacher,EdLD
1 SIS ID School SIS ID Username Password First Name Last Name Middle Name Secondary Email Teacher Number State ID Status Title Qualification
2 t1 sch1 paigetaylor1 Ibz_1KVu^( Paige Taylor Patricia paigetaylor1@contosoisd3.onmicrosoft.com 1 123 Active Teacher EdLD
3 t2 sch1 stephenramirez2 b!4A#5tJ(0 Stephen Ramirez Renee stephenramirez2@contosoisd3.onmicrosoft.com 2 123 Active Teacher EdLD
4 t3 sch2 travisholland3 !86rGPzrn& Travis Holland Elizabeth travisholland3@contosoisd3.onmicrosoft.com 3 123 Active Teacher EdLD
5 t4 sch2 erikariley4 y&5^T6s9@f Erika Riley Lisa erikariley4@contosoisd3.onmicrosoft.com 4 123 Active Teacher EdLD
6 t5 sch3 ashleyhayes5 uxm7uOlQU% Ashley Hayes Kyle ashleyhayes5@contosoisd3.onmicrosoft.com 5 123 Active Teacher EdLD
7 t6 sch3 williamjohnson6 teIS$*S7%3 William Johnson Dawn williamjohnson6@contosoisd3.onmicrosoft.com 6 123 Active Teacher EdLD
8 t7 sch4 hayleydavis7 rw(ukfAq^4 Hayley Davis Amanda hayleydavis7@contosoisd3.onmicrosoft.com 7 123 Active Teacher EdLD
9 t8 sch4 cynthiadunn8 09KS6QRN!d Cynthia Dunn Anthony cynthiadunn8@contosoisd3.onmicrosoft.com 8 123 Active Teacher EdLD

Просмотреть файл

@ -0,0 +1,105 @@
Section SIS ID,SIS ID
1,t1
2,t2
3,t1
4,t2
5,t1
6,t2
7,t1
8,t2
9,t1
10,t2
11,t1
12,t2
13,t1
14,t1
15,t2
16,t1
17,t2
18,t1
19,t2
20,t1
21,t2
22,t1
23,t2
24,t1
25,t2
26,t1
27,t3
28,t4
29,t3
30,t4
31,t3
32,t4
33,t3
34,t4
35,t3
36,t4
37,t3
38,t4
39,t3
40,t3
41,t4
42,t3
43,t4
44,t3
45,t4
46,t3
47,t4
48,t3
49,t4
50,t3
51,t4
52,t3
53,t5
54,t6
55,t5
56,t6
57,t5
58,t6
59,t5
60,t6
61,t5
62,t6
63,t5
64,t6
65,t5
66,t5
67,t6
68,t5
69,t6
70,t5
71,t6
72,t5
73,t6
74,t5
75,t6
76,t5
77,t6
78,t5
79,t7
80,t8
81,t7
82,t8
83,t7
84,t8
85,t7
86,t8
87,t7
88,t8
89,t7
90,t8
91,t7
92,t7
93,t8
94,t7
95,t8
96,t7
97,t8
98,t7
99,t8
100,t7
101,t8
102,t7
103,t8
104,t7
1 Section SIS ID SIS ID
2 1 t1
3 2 t2
4 3 t1
5 4 t2
6 5 t1
7 6 t2
8 7 t1
9 8 t2
10 9 t1
11 10 t2
12 11 t1
13 12 t2
14 13 t1
15 14 t1
16 15 t2
17 16 t1
18 17 t2
19 18 t1
20 19 t2
21 20 t1
22 21 t2
23 22 t1
24 23 t2
25 24 t1
26 25 t2
27 26 t1
28 27 t3
29 28 t4
30 29 t3
31 30 t4
32 31 t3
33 32 t4
34 33 t3
35 34 t4
36 35 t3
37 36 t4
38 37 t3
39 38 t4
40 39 t3
41 40 t3
42 41 t4
43 42 t3
44 43 t4
45 44 t3
46 45 t4
47 46 t3
48 47 t4
49 48 t3
50 49 t4
51 50 t3
52 51 t4
53 52 t3
54 53 t5
55 54 t6
56 55 t5
57 56 t6
58 57 t5
59 58 t6
60 59 t5
61 60 t6
62 61 t5
63 62 t6
64 63 t5
65 64 t6
66 65 t5
67 66 t5
68 67 t6
69 68 t5
70 69 t6
71 70 t5
72 71 t6
73 72 t5
74 73 t6
75 74 t5
76 75 t6
77 76 t5
78 77 t6
79 78 t5
80 79 t7
81 80 t8
82 81 t7
83 82 t8
84 83 t7
85 84 t8
86 85 t7
87 86 t8
88 87 t7
89 88 t8
90 89 t7
91 90 t8
92 91 t7
93 92 t7
94 93 t8
95 94 t7
96 95 t8
97 96 t7
98 97 t8
99 98 t7
100 99 t8
101 100 t7
102 101 t8
103 102 t7
104 103 t8
105 104 t7

Просмотреть файл

@ -0,0 +1,8 @@
This is sample data generated utilizing a python data generator script.
The names and dates and other fields are randomly generated and entirely fictional.
There are several errors intentionally included in this data to facilitate the testing of error conditions.
Errors in the data include:
- students with no SIS ID
- sections that do not have a teacher assigned in teacherroster.csv
- teachers with no Username

Просмотреть файл

@ -0,0 +1,10 @@
SIS ID,Name,School Number,School NCES_ID,Grade Low,Grade High,State ID,Principal SIS ID,Principal Name,Principal Secondary Email,Address,City,State,Zip,Country,Phone,Zone
sch1,Gallagher Elementary,1,1,9,12,1,02100,Dennis Boone,dennis.boone@contosoisd3.onmicrosoft.com,77763,North Maryview,WA,98074,US,+1-074-391-5000x806,1
sch2,King High,2,2,9,12,2,02100,Regina Carter,regina.carter@contosoisd3.onmicrosoft.com,1350,Lake Sarachester,WA,98074,US,656-115-9714x398,1
sch3,Sawyer Elementary,3,3,9,12,3,02100,Joseph Erickson,joseph.erickson@contosoisd3.onmicrosoft.com,2747,South Josephton,WA,98074,US,151.702.8216x494,1
sch4,Abbott High,4,4,9,12,4,02100,Andrew Richardson,andrew.richardson@contosoisd3.onmicrosoft.com,433,Michellehaven,WA,98074,US,583-714-6308x68716,1
sch5,Thomas Elementary,5,5,9,12,5,02100,Eric Mcintyre,eric.mcintyre@contosoisd3.onmicrosoft.com,375,West Eric,WA,98074,US,+1-761-924-4908x026,1
sch6,Rogers Elementary,6,6,9,12,6,02100,Jessica Short,jessica.short@contosoisd3.onmicrosoft.com,10673,Larsonville,WA,98074,US,(853)359-1507x0922,1
sch7,Carter Elementary,7,7,9,12,7,02100,Willie Martin,willie.martin@contosoisd3.onmicrosoft.com,13006,Melissaton,WA,98074,US,8550908373,1
sch8,Ross High,8,8,9,12,8,02100,Frank Clark,frank.clark@contosoisd3.onmicrosoft.com,5422,East Rhonda,WA,98074,US,438.677.8842x8984,1
sch9,Jones Elementary,9,9,9,12,9,02100,Jessica Kim,jessica.kim@contosoisd3.onmicrosoft.com,5115,Port Danielfurt,WA,98074,US,863-147-9096,1
1 SIS ID Name School Number School NCES_ID Grade Low Grade High State ID Principal SIS ID Principal Name Principal Secondary Email Address City State Zip Country Phone Zone
2 sch1 Gallagher Elementary 1 1 9 12 1 02100 Dennis Boone dennis.boone@contosoisd3.onmicrosoft.com 77763 North Maryview WA 98074 US +1-074-391-5000x806 1
3 sch2 King High 2 2 9 12 2 02100 Regina Carter regina.carter@contosoisd3.onmicrosoft.com 1350 Lake Sarachester WA 98074 US 656-115-9714x398 1
4 sch3 Sawyer Elementary 3 3 9 12 3 02100 Joseph Erickson joseph.erickson@contosoisd3.onmicrosoft.com 2747 South Josephton WA 98074 US 151.702.8216x494 1
5 sch4 Abbott High 4 4 9 12 4 02100 Andrew Richardson andrew.richardson@contosoisd3.onmicrosoft.com 433 Michellehaven WA 98074 US 583-714-6308x68716 1
6 sch5 Thomas Elementary 5 5 9 12 5 02100 Eric Mcintyre eric.mcintyre@contosoisd3.onmicrosoft.com 375 West Eric WA 98074 US +1-761-924-4908x026 1
7 sch6 Rogers Elementary 6 6 9 12 6 02100 Jessica Short jessica.short@contosoisd3.onmicrosoft.com 10673 Larsonville WA 98074 US (853)359-1507x0922 1
8 sch7 Carter Elementary 7 7 9 12 7 02100 Willie Martin willie.martin@contosoisd3.onmicrosoft.com 13006 Melissaton WA 98074 US 8550908373 1
9 sch8 Ross High 8 8 9 12 8 02100 Frank Clark frank.clark@contosoisd3.onmicrosoft.com 5422 East Rhonda WA 98074 US 438.677.8842x8984 1
10 sch9 Jones Elementary 9 9 9 12 9 02100 Jessica Kim jessica.kim@contosoisd3.onmicrosoft.com 5115 Port Danielfurt WA 98074 US 863-147-9096 1

Просмотреть файл

@ -0,0 +1,235 @@
SIS ID,School SIS ID,Section Name,Section Number,Term SIS ID,Term Name,Term StartDate,Term EndDate,Course SIS ID,Course Name,Course Number,Course Description,Course Subject,Periods,Status
1,sch1,Math - Geometry 1,1,term1,Fall Semester,9/1/2019,12/22/2019,course2,Math - Geometry,2,Instruction covering Math - Geometry,Math - Geometry,2,Active
2,sch1,Technology - Programming 2,2,term1,Fall Semester,9/1/2019,12/22/2019,course7,Technology - Programming,7,Instruction covering Technology - Programming,Technology - Programming,2,Active
3,sch1,Science Biology 3,3,term1,Fall Semester,9/1/2019,12/22/2019,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
4,sch1,History - World History 4,4,term1,Fall Semester,9/1/2019,12/22/2019,course4,History - World History,4,Instruction covering History - World History,History - World History,2,Active
5,sch1,History - World History 5,5,term1,Fall Semester,9/1/2019,12/22/2019,course4,History - World History,4,Instruction covering History - World History,History - World History,2,Active
6,sch1,Physical Education 6,6,term1,Fall Semester,9/1/2019,12/22/2019,course8,Physical Education,8,Instruction covering Physical Education,Physical Education,2,Active
7,sch1,Art 7,7,term1,Fall Semester,9/1/2019,12/22/2019,course9,Art,9,Instruction covering Art,Art,2,Active
8,sch1,Science Biology 8,8,term1,Fall Semester,9/1/2019,12/22/2019,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
9,sch1,Music 9,9,term1,Fall Semester,9/1/2019,12/22/2019,course10,Music,10,Instruction covering Music,Music,2,Active
10,sch1,English Language 10,10,term1,Fall Semester,9/1/2019,12/22/2019,course3,English Language,3,Instruction covering English Language,English Language,2,Active
11,sch1,Physical Education 11,11,term1,Fall Semester,9/1/2019,12/22/2019,course8,Physical Education,8,Instruction covering Physical Education,Physical Education,2,Active
12,sch1,Science Biology 12,12,term1,Fall Semester,9/1/2019,12/22/2019,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
13,sch1,History - World History 13,13,term1,Fall Semester,9/1/2019,12/22/2019,course4,History - World History,4,Instruction covering History - World History,History - World History,2,Active
14,sch1,English Language 14,14,term2,Spring Semester,1/21/2020,5/30/2020,course3,English Language,3,Instruction covering English Language,English Language,2,Active
15,sch1,Technology - Programming 15,15,term2,Spring Semester,1/21/2020,5/30/2020,course7,Technology - Programming,7,Instruction covering Technology - Programming,Technology - Programming,2,Active
16,sch1,Math - Geometry 16,16,term2,Spring Semester,1/21/2020,5/30/2020,course2,Math - Geometry,2,Instruction covering Math - Geometry,Math - Geometry,2,Active
17,sch1,Music 17,17,term2,Spring Semester,1/21/2020,5/30/2020,course10,Music,10,Instruction covering Music,Music,2,Active
18,sch1,Math - Geometry 18,18,term2,Spring Semester,1/21/2020,5/30/2020,course2,Math - Geometry,2,Instruction covering Math - Geometry,Math - Geometry,2,Active
19,sch1,Physical Education 19,19,term2,Spring Semester,1/21/2020,5/30/2020,course8,Physical Education,8,Instruction covering Physical Education,Physical Education,2,Active
20,sch1,Physical Education 20,20,term2,Spring Semester,1/21/2020,5/30/2020,course8,Physical Education,8,Instruction covering Physical Education,Physical Education,2,Active
21,sch1,Math - Geometry 21,21,term2,Spring Semester,1/21/2020,5/30/2020,course2,Math - Geometry,2,Instruction covering Math - Geometry,Math - Geometry,2,Active
22,sch1,Music 22,22,term2,Spring Semester,1/21/2020,5/30/2020,course10,Music,10,Instruction covering Music,Music,2,Active
23,sch1,English Language 23,23,term2,Spring Semester,1/21/2020,5/30/2020,course3,English Language,3,Instruction covering English Language,English Language,2,Active
24,sch1,Physical Education 24,24,term2,Spring Semester,1/21/2020,5/30/2020,course8,Physical Education,8,Instruction covering Physical Education,Physical Education,2,Active
25,sch1,Music 25,25,term2,Spring Semester,1/21/2020,5/30/2020,course10,Music,10,Instruction covering Music,Music,2,Active
26,sch1,Science Biology 26,26,term2,Spring Semester,1/21/2020,5/30/2020,course5,Science Biology,5,Instruction covering Science Biology,Science Biology,2,Active
27,sch2,Math - Geometry 27,27,term2,Fall Semester,9/1/2019,12/22/2019,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
28,sch2,History - World History 28,28,term2,Fall Semester,9/1/2019,12/22/2019,course14,History - World History,14,Instruction covering History - World History,History - World History,2,Active
29,sch2,Art 29,29,term2,Fall Semester,9/1/2019,12/22/2019,course19,Art,19,Instruction covering Art,Art,2,Active
30,sch2,Technology - Programming 30,30,term2,Fall Semester,9/1/2019,12/22/2019,course17,Technology - Programming,17,Instruction covering Technology - Programming,Technology - Programming,2,Active
31,sch2,History - World History 31,31,term2,Fall Semester,9/1/2019,12/22/2019,course14,History - World History,14,Instruction covering History - World History,History - World History,2,Active
32,sch2,Math - Geometry 32,32,term2,Fall Semester,9/1/2019,12/22/2019,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
33,sch2,Technology - Programming 33,33,term2,Fall Semester,9/1/2019,12/22/2019,course17,Technology - Programming,17,Instruction covering Technology - Programming,Technology - Programming,2,Active
34,sch2,Math - Algebra 34,34,term2,Fall Semester,9/1/2019,12/22/2019,course11,Math - Algebra,11,Instruction covering Math - Algebra,Math - Algebra,2,Active
35,sch2,Physical Education 35,35,term2,Fall Semester,9/1/2019,12/22/2019,course18,Physical Education,18,Instruction covering Physical Education,Physical Education,2,Active
36,sch2,Technology - Programming 36,36,term2,Fall Semester,9/1/2019,12/22/2019,course17,Technology - Programming,17,Instruction covering Technology - Programming,Technology - Programming,2,Active
37,sch2,Math - Geometry 37,37,term2,Fall Semester,9/1/2019,12/22/2019,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
38,sch2,Physical Education 38,38,term2,Fall Semester,9/1/2019,12/22/2019,course18,Physical Education,18,Instruction covering Physical Education,Physical Education,2,Active
39,sch2,Math - Geometry 39,39,term2,Fall Semester,9/1/2019,12/22/2019,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
40,sch2,Physical Education 40,40,term3,Spring Semester,1/21/2020,5/30/2020,course18,Physical Education,18,Instruction covering Physical Education,Physical Education,2,Active
41,sch2,Math - Geometry 41,41,term3,Spring Semester,1/21/2020,5/30/2020,course12,Math - Geometry,12,Instruction covering Math - Geometry,Math - Geometry,2,Active
42,sch2,Physical Education 42,42,term3,Spring Semester,1/21/2020,5/30/2020,course18,Physical Education,18,Instruction covering Physical Education,Physical Education,2,Active
43,sch2,History - World History 43,43,term3,Spring Semester,1/21/2020,5/30/2020,course14,History - World History,14,Instruction covering History - World History,History - World History,2,Active
44,sch2,Science Biology 44,44,term3,Spring Semester,1/21/2020,5/30/2020,course15,Science Biology,15,Instruction covering Science Biology,Science Biology,2,Active
45,sch2,Art 45,45,term3,Spring Semester,1/21/2020,5/30/2020,course19,Art,19,Instruction covering Art,Art,2,Active
46,sch2,Science Biology 46,46,term3,Spring Semester,1/21/2020,5/30/2020,course15,Science Biology,15,Instruction covering Science Biology,Science Biology,2,Active
47,sch2,Physical Education 47,47,term3,Spring Semester,1/21/2020,5/30/2020,course18,Physical Education,18,Instruction covering Physical Education,Physical Education,2,Active
48,sch2,Health 48,48,term3,Spring Semester,1/21/2020,5/30/2020,course16,Health,16,Instruction covering Health,Health,2,Active
49,sch2,Technology - Programming 49,49,term3,Spring Semester,1/21/2020,5/30/2020,course17,Technology - Programming,17,Instruction covering Technology - Programming,Technology - Programming,2,Active
50,sch2,Technology - Programming 50,50,term3,Spring Semester,1/21/2020,5/30/2020,course17,Technology - Programming,17,Instruction covering Technology - Programming,Technology - Programming,2,Active
51,sch2,Science Biology 51,51,term3,Spring Semester,1/21/2020,5/30/2020,course15,Science Biology,15,Instruction covering Science Biology,Science Biology,2,Active
52,sch2,Math - Algebra 52,52,term3,Spring Semester,1/21/2020,5/30/2020,course11,Math - Algebra,11,Instruction covering Math - Algebra,Math - Algebra,2,Active
53,sch3,Art 53,53,term3,Fall Semester,9/1/2019,12/22/2019,course29,Art,29,Instruction covering Art,Art,2,Active
54,sch3,Art 54,54,term3,Fall Semester,9/1/2019,12/22/2019,course29,Art,29,Instruction covering Art,Art,2,Active
55,sch3,Science Biology 55,55,term3,Fall Semester,9/1/2019,12/22/2019,course25,Science Biology,25,Instruction covering Science Biology,Science Biology,2,Active
56,sch3,Math - Geometry 56,56,term3,Fall Semester,9/1/2019,12/22/2019,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
57,sch3,Math - Geometry 57,57,term3,Fall Semester,9/1/2019,12/22/2019,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
58,sch3,English Language 58,58,term3,Fall Semester,9/1/2019,12/22/2019,course23,English Language,23,Instruction covering English Language,English Language,2,Active
59,sch3,Technology - Programming 59,59,term3,Fall Semester,9/1/2019,12/22/2019,course27,Technology - Programming,27,Instruction covering Technology - Programming,Technology - Programming,2,Active
60,sch3,Health 60,60,term3,Fall Semester,9/1/2019,12/22/2019,course26,Health,26,Instruction covering Health,Health,2,Active
61,sch3,Art 61,61,term3,Fall Semester,9/1/2019,12/22/2019,course29,Art,29,Instruction covering Art,Art,2,Active
62,sch3,Math - Geometry 62,62,term3,Fall Semester,9/1/2019,12/22/2019,course22,Math - Geometry,22,Instruction covering Math - Geometry,Math - Geometry,2,Active
63,sch3,English Language 63,63,term3,Fall Semester,9/1/2019,12/22/2019,course23,English Language,23,Instruction covering English Language,English Language,2,Active
64,sch3,English Language 64,64,term3,Fall Semester,9/1/2019,12/22/2019,course23,English Language,23,Instruction covering English Language,English Language,2,Active
65,sch3,Physical Education 65,65,term3,Fall Semester,9/1/2019,12/22/2019,course28,Physical Education,28,Instruction covering Physical Education,Physical Education,2,Active
66,sch3,Technology - Programming 66,66,term4,Spring Semester,1/21/2020,5/30/2020,course27,Technology - Programming,27,Instruction covering Technology - Programming,Technology - Programming,2,Active
67,sch3,English Language 67,67,term4,Spring Semester,1/21/2020,5/30/2020,course23,English Language,23,Instruction covering English Language,English Language,2,Active
68,sch3,Technology - Programming 68,68,term4,Spring Semester,1/21/2020,5/30/2020,course27,Technology - Programming,27,Instruction covering Technology - Programming,Technology - Programming,2,Active
69,sch3,Physical Education 69,69,term4,Spring Semester,1/21/2020,5/30/2020,course28,Physical Education,28,Instruction covering Physical Education,Physical Education,2,Active
70,sch3,History - World History 70,70,term4,Spring Semester,1/21/2020,5/30/2020,course24,History - World History,24,Instruction covering History - World History,History - World History,2,Active
71,sch3,Physical Education 71,71,term4,Spring Semester,1/21/2020,5/30/2020,course28,Physical Education,28,Instruction covering Physical Education,Physical Education,2,Active
72,sch3,Math - Algebra 72,72,term4,Spring Semester,1/21/2020,5/30/2020,course21,Math - Algebra,21,Instruction covering Math - Algebra,Math - Algebra,2,Active
73,sch3,Math - Algebra 73,73,term4,Spring Semester,1/21/2020,5/30/2020,course21,Math - Algebra,21,Instruction covering Math - Algebra,Math - Algebra,2,Active
74,sch3,Physical Education 74,74,term4,Spring Semester,1/21/2020,5/30/2020,course28,Physical Education,28,Instruction covering Physical Education,Physical Education,2,Active
75,sch3,History - World History 75,75,term4,Spring Semester,1/21/2020,5/30/2020,course24,History - World History,24,Instruction covering History - World History,History - World History,2,Active
76,sch3,Math - Algebra 76,76,term4,Spring Semester,1/21/2020,5/30/2020,course21,Math - Algebra,21,Instruction covering Math - Algebra,Math - Algebra,2,Active
77,sch3,Physical Education 77,77,term4,Spring Semester,1/21/2020,5/30/2020,course28,Physical Education,28,Instruction covering Physical Education,Physical Education,2,Active
78,sch3,English Language 78,78,term4,Spring Semester,1/21/2020,5/30/2020,course23,English Language,23,Instruction covering English Language,English Language,2,Active
79,sch4,Music 79,79,term4,Fall Semester,9/1/2019,12/22/2019,course40,Music,40,Instruction covering Music,Music,2,Active
80,sch4,Math - Geometry 80,80,term4,Fall Semester,9/1/2019,12/22/2019,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
81,sch4,Physical Education 81,81,term4,Fall Semester,9/1/2019,12/22/2019,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
82,sch4,Math - Geometry 82,82,term4,Fall Semester,9/1/2019,12/22/2019,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
83,sch4,Math - Algebra 83,83,term4,Fall Semester,9/1/2019,12/22/2019,course31,Math - Algebra,31,Instruction covering Math - Algebra,Math - Algebra,2,Active
84,sch4,Math - Geometry 84,84,term4,Fall Semester,9/1/2019,12/22/2019,course32,Math - Geometry,32,Instruction covering Math - Geometry,Math - Geometry,2,Active
85,sch4,Math - Algebra 85,85,term4,Fall Semester,9/1/2019,12/22/2019,course31,Math - Algebra,31,Instruction covering Math - Algebra,Math - Algebra,2,Active
86,sch4,History - World History 86,86,term4,Fall Semester,9/1/2019,12/22/2019,course34,History - World History,34,Instruction covering History - World History,History - World History,2,Active
87,sch4,Technology - Programming 87,87,term4,Fall Semester,9/1/2019,12/22/2019,course37,Technology - Programming,37,Instruction covering Technology - Programming,Technology - Programming,2,Active
88,sch4,Health 88,88,term4,Fall Semester,9/1/2019,12/22/2019,course36,Health,36,Instruction covering Health,Health,2,Active
89,sch4,Art 89,89,term4,Fall Semester,9/1/2019,12/22/2019,course39,Art,39,Instruction covering Art,Art,2,Active
90,sch4,Science Biology 90,90,term4,Fall Semester,9/1/2019,12/22/2019,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
91,sch4,Math - Algebra 91,91,term4,Fall Semester,9/1/2019,12/22/2019,course31,Math - Algebra,31,Instruction covering Math - Algebra,Math - Algebra,2,Active
92,sch4,Art 92,92,term5,Spring Semester,1/21/2020,5/30/2020,course39,Art,39,Instruction covering Art,Art,2,Active
93,sch4,Science Biology 93,93,term5,Spring Semester,1/21/2020,5/30/2020,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
94,sch4,Technology - Programming 94,94,term5,Spring Semester,1/21/2020,5/30/2020,course37,Technology - Programming,37,Instruction covering Technology - Programming,Technology - Programming,2,Active
95,sch4,Science Biology 95,95,term5,Spring Semester,1/21/2020,5/30/2020,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
96,sch4,English Language 96,96,term5,Spring Semester,1/21/2020,5/30/2020,course33,English Language,33,Instruction covering English Language,English Language,2,Active
97,sch4,History - World History 97,97,term5,Spring Semester,1/21/2020,5/30/2020,course34,History - World History,34,Instruction covering History - World History,History - World History,2,Active
98,sch4,Art 98,98,term5,Spring Semester,1/21/2020,5/30/2020,course39,Art,39,Instruction covering Art,Art,2,Active
99,sch4,Science Biology 99,99,term5,Spring Semester,1/21/2020,5/30/2020,course35,Science Biology,35,Instruction covering Science Biology,Science Biology,2,Active
100,sch4,Physical Education 100,100,term5,Spring Semester,1/21/2020,5/30/2020,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
101,sch4,Art 101,101,term5,Spring Semester,1/21/2020,5/30/2020,course39,Art,39,Instruction covering Art,Art,2,Active
102,sch4,Physical Education 102,102,term5,Spring Semester,1/21/2020,5/30/2020,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
103,sch4,Math - Algebra 103,103,term5,Spring Semester,1/21/2020,5/30/2020,course31,Math - Algebra,31,Instruction covering Math - Algebra,Math - Algebra,2,Active
104,sch4,Physical Education 104,104,term5,Spring Semester,1/21/2020,5/30/2020,course38,Physical Education,38,Instruction covering Physical Education,Physical Education,2,Active
105,sch5,Music 105,105,term5,Fall Semester,9/1/2019,12/22/2019,course50,Music,50,Instruction covering Music,Music,2,Active
106,sch5,Technology - Programming 106,106,term5,Fall Semester,9/1/2019,12/22/2019,course47,Technology - Programming,47,Instruction covering Technology - Programming,Technology - Programming,2,Active
107,sch5,Music 107,107,term5,Fall Semester,9/1/2019,12/22/2019,course50,Music,50,Instruction covering Music,Music,2,Active
108,sch5,English Language 108,108,term5,Fall Semester,9/1/2019,12/22/2019,course43,English Language,43,Instruction covering English Language,English Language,2,Active
109,sch5,Technology - Programming 109,109,term5,Fall Semester,9/1/2019,12/22/2019,course47,Technology - Programming,47,Instruction covering Technology - Programming,Technology - Programming,2,Active
110,sch5,History - World History 110,110,term5,Fall Semester,9/1/2019,12/22/2019,course44,History - World History,44,Instruction covering History - World History,History - World History,2,Active
111,sch5,English Language 111,111,term5,Fall Semester,9/1/2019,12/22/2019,course43,English Language,43,Instruction covering English Language,English Language,2,Active
112,sch5,Art 112,112,term5,Fall Semester,9/1/2019,12/22/2019,course49,Art,49,Instruction covering Art,Art,2,Active
113,sch5,Art 113,113,term5,Fall Semester,9/1/2019,12/22/2019,course49,Art,49,Instruction covering Art,Art,2,Active
114,sch5,Science Biology 114,114,term5,Fall Semester,9/1/2019,12/22/2019,course45,Science Biology,45,Instruction covering Science Biology,Science Biology,2,Active
115,sch5,Art 115,115,term5,Fall Semester,9/1/2019,12/22/2019,course49,Art,49,Instruction covering Art,Art,2,Active
116,sch5,Science Biology 116,116,term5,Fall Semester,9/1/2019,12/22/2019,course45,Science Biology,45,Instruction covering Science Biology,Science Biology,2,Active
117,sch5,Health 117,117,term5,Fall Semester,9/1/2019,12/22/2019,course46,Health,46,Instruction covering Health,Health,2,Active
118,sch5,Music 118,118,term6,Spring Semester,1/21/2020,5/30/2020,course50,Music,50,Instruction covering Music,Music,2,Active
119,sch5,English Language 119,119,term6,Spring Semester,1/21/2020,5/30/2020,course43,English Language,43,Instruction covering English Language,English Language,2,Active
120,sch5,History - World History 120,120,term6,Spring Semester,1/21/2020,5/30/2020,course44,History - World History,44,Instruction covering History - World History,History - World History,2,Active
121,sch5,Math - Algebra 121,121,term6,Spring Semester,1/21/2020,5/30/2020,course41,Math - Algebra,41,Instruction covering Math - Algebra,Math - Algebra,2,Active
122,sch5,Art 122,122,term6,Spring Semester,1/21/2020,5/30/2020,course49,Art,49,Instruction covering Art,Art,2,Active
123,sch5,History - World History 123,123,term6,Spring Semester,1/21/2020,5/30/2020,course44,History - World History,44,Instruction covering History - World History,History - World History,2,Active
124,sch5,Physical Education 124,124,term6,Spring Semester,1/21/2020,5/30/2020,course48,Physical Education,48,Instruction covering Physical Education,Physical Education,2,Active
125,sch5,Music 125,125,term6,Spring Semester,1/21/2020,5/30/2020,course50,Music,50,Instruction covering Music,Music,2,Active
126,sch5,Music 126,126,term6,Spring Semester,1/21/2020,5/30/2020,course50,Music,50,Instruction covering Music,Music,2,Active
127,sch5,Art 127,127,term6,Spring Semester,1/21/2020,5/30/2020,course49,Art,49,Instruction covering Art,Art,2,Active
128,sch5,Art 128,128,term6,Spring Semester,1/21/2020,5/30/2020,course49,Art,49,Instruction covering Art,Art,2,Active
129,sch5,Health 129,129,term6,Spring Semester,1/21/2020,5/30/2020,course46,Health,46,Instruction covering Health,Health,2,Active
130,sch5,Music 130,130,term6,Spring Semester,1/21/2020,5/30/2020,course50,Music,50,Instruction covering Music,Music,2,Active
131,sch6,Physical Education 131,131,term6,Fall Semester,9/1/2019,12/22/2019,course58,Physical Education,58,Instruction covering Physical Education,Physical Education,2,Active
132,sch6,Math - Algebra 132,132,term6,Fall Semester,9/1/2019,12/22/2019,course51,Math - Algebra,51,Instruction covering Math - Algebra,Math - Algebra,2,Active
133,sch6,Math - Algebra 133,133,term6,Fall Semester,9/1/2019,12/22/2019,course51,Math - Algebra,51,Instruction covering Math - Algebra,Math - Algebra,2,Active
134,sch6,English Language 134,134,term6,Fall Semester,9/1/2019,12/22/2019,course53,English Language,53,Instruction covering English Language,English Language,2,Active
135,sch6,History - World History 135,135,term6,Fall Semester,9/1/2019,12/22/2019,course54,History - World History,54,Instruction covering History - World History,History - World History,2,Active
136,sch6,Science Biology 136,136,term6,Fall Semester,9/1/2019,12/22/2019,course55,Science Biology,55,Instruction covering Science Biology,Science Biology,2,Active
137,sch6,Physical Education 137,137,term6,Fall Semester,9/1/2019,12/22/2019,course58,Physical Education,58,Instruction covering Physical Education,Physical Education,2,Active
138,sch6,Physical Education 138,138,term6,Fall Semester,9/1/2019,12/22/2019,course58,Physical Education,58,Instruction covering Physical Education,Physical Education,2,Active
139,sch6,History - World History 139,139,term6,Fall Semester,9/1/2019,12/22/2019,course54,History - World History,54,Instruction covering History - World History,History - World History,2,Active
140,sch6,Science Biology 140,140,term6,Fall Semester,9/1/2019,12/22/2019,course55,Science Biology,55,Instruction covering Science Biology,Science Biology,2,Active
141,sch6,Technology - Programming 141,141,term6,Fall Semester,9/1/2019,12/22/2019,course57,Technology - Programming,57,Instruction covering Technology - Programming,Technology - Programming,2,Active
142,sch6,History - World History 142,142,term6,Fall Semester,9/1/2019,12/22/2019,course54,History - World History,54,Instruction covering History - World History,History - World History,2,Active
143,sch6,History - World History 143,143,term6,Fall Semester,9/1/2019,12/22/2019,course54,History - World History,54,Instruction covering History - World History,History - World History,2,Active
144,sch6,Health 144,144,term7,Spring Semester,1/21/2020,5/30/2020,course56,Health,56,Instruction covering Health,Health,2,Active
145,sch6,History - World History 145,145,term7,Spring Semester,1/21/2020,5/30/2020,course54,History - World History,54,Instruction covering History - World History,History - World History,2,Active
146,sch6,Health 146,146,term7,Spring Semester,1/21/2020,5/30/2020,course56,Health,56,Instruction covering Health,Health,2,Active
147,sch6,Math - Algebra 147,147,term7,Spring Semester,1/21/2020,5/30/2020,course51,Math - Algebra,51,Instruction covering Math - Algebra,Math - Algebra,2,Active
148,sch6,Math - Algebra 148,148,term7,Spring Semester,1/21/2020,5/30/2020,course51,Math - Algebra,51,Instruction covering Math - Algebra,Math - Algebra,2,Active
149,sch6,Technology - Programming 149,149,term7,Spring Semester,1/21/2020,5/30/2020,course57,Technology - Programming,57,Instruction covering Technology - Programming,Technology - Programming,2,Active
150,sch6,Math - Geometry 150,150,term7,Spring Semester,1/21/2020,5/30/2020,course52,Math - Geometry,52,Instruction covering Math - Geometry,Math - Geometry,2,Active
151,sch6,Art 151,151,term7,Spring Semester,1/21/2020,5/30/2020,course59,Art,59,Instruction covering Art,Art,2,Active
152,sch6,Physical Education 152,152,term7,Spring Semester,1/21/2020,5/30/2020,course58,Physical Education,58,Instruction covering Physical Education,Physical Education,2,Active
153,sch6,Technology - Programming 153,153,term7,Spring Semester,1/21/2020,5/30/2020,course57,Technology - Programming,57,Instruction covering Technology - Programming,Technology - Programming,2,Active
154,sch6,Math - Algebra 154,154,term7,Spring Semester,1/21/2020,5/30/2020,course51,Math - Algebra,51,Instruction covering Math - Algebra,Math - Algebra,2,Active
155,sch6,Health 155,155,term7,Spring Semester,1/21/2020,5/30/2020,course56,Health,56,Instruction covering Health,Health,2,Active
156,sch6,History - World History 156,156,term7,Spring Semester,1/21/2020,5/30/2020,course54,History - World History,54,Instruction covering History - World History,History - World History,2,Active
157,sch7,Science Biology 157,157,term7,Fall Semester,9/1/2019,12/22/2019,course65,Science Biology,65,Instruction covering Science Biology,Science Biology,2,Active
158,sch7,English Language 158,158,term7,Fall Semester,9/1/2019,12/22/2019,course63,English Language,63,Instruction covering English Language,English Language,2,Active
159,sch7,History - World History 159,159,term7,Fall Semester,9/1/2019,12/22/2019,course64,History - World History,64,Instruction covering History - World History,History - World History,2,Active
160,sch7,Science Biology 160,160,term7,Fall Semester,9/1/2019,12/22/2019,course65,Science Biology,65,Instruction covering Science Biology,Science Biology,2,Active
161,sch7,Health 161,161,term7,Fall Semester,9/1/2019,12/22/2019,course66,Health,66,Instruction covering Health,Health,2,Active
162,sch7,Music 162,162,term7,Fall Semester,9/1/2019,12/22/2019,course70,Music,70,Instruction covering Music,Music,2,Active
163,sch7,Math - Geometry 163,163,term7,Fall Semester,9/1/2019,12/22/2019,course62,Math - Geometry,62,Instruction covering Math - Geometry,Math - Geometry,2,Active
164,sch7,Technology - Programming 164,164,term7,Fall Semester,9/1/2019,12/22/2019,course67,Technology - Programming,67,Instruction covering Technology - Programming,Technology - Programming,2,Active
165,sch7,History - World History 165,165,term7,Fall Semester,9/1/2019,12/22/2019,course64,History - World History,64,Instruction covering History - World History,History - World History,2,Active
166,sch7,Physical Education 166,166,term7,Fall Semester,9/1/2019,12/22/2019,course68,Physical Education,68,Instruction covering Physical Education,Physical Education,2,Active
167,sch7,Physical Education 167,167,term7,Fall Semester,9/1/2019,12/22/2019,course68,Physical Education,68,Instruction covering Physical Education,Physical Education,2,Active
168,sch7,Art 168,168,term7,Fall Semester,9/1/2019,12/22/2019,course69,Art,69,Instruction covering Art,Art,2,Active
169,sch7,Health 169,169,term7,Fall Semester,9/1/2019,12/22/2019,course66,Health,66,Instruction covering Health,Health,2,Active
170,sch7,Math - Geometry 170,170,term8,Spring Semester,1/21/2020,5/30/2020,course62,Math - Geometry,62,Instruction covering Math - Geometry,Math - Geometry,2,Active
171,sch7,History - World History 171,171,term8,Spring Semester,1/21/2020,5/30/2020,course64,History - World History,64,Instruction covering History - World History,History - World History,2,Active
172,sch7,History - World History 172,172,term8,Spring Semester,1/21/2020,5/30/2020,course64,History - World History,64,Instruction covering History - World History,History - World History,2,Active
173,sch7,English Language 173,173,term8,Spring Semester,1/21/2020,5/30/2020,course63,English Language,63,Instruction covering English Language,English Language,2,Active
174,sch7,Math - Geometry 174,174,term8,Spring Semester,1/21/2020,5/30/2020,course62,Math - Geometry,62,Instruction covering Math - Geometry,Math - Geometry,2,Active
175,sch7,History - World History 175,175,term8,Spring Semester,1/21/2020,5/30/2020,course64,History - World History,64,Instruction covering History - World History,History - World History,2,Active
176,sch7,Math - Geometry 176,176,term8,Spring Semester,1/21/2020,5/30/2020,course62,Math - Geometry,62,Instruction covering Math - Geometry,Math - Geometry,2,Active
177,sch7,Physical Education 177,177,term8,Spring Semester,1/21/2020,5/30/2020,course68,Physical Education,68,Instruction covering Physical Education,Physical Education,2,Active
178,sch7,Math - Geometry 178,178,term8,Spring Semester,1/21/2020,5/30/2020,course62,Math - Geometry,62,Instruction covering Math - Geometry,Math - Geometry,2,Active
179,sch7,Math - Algebra 179,179,term8,Spring Semester,1/21/2020,5/30/2020,course61,Math - Algebra,61,Instruction covering Math - Algebra,Math - Algebra,2,Active
180,sch7,Math - Geometry 180,180,term8,Spring Semester,1/21/2020,5/30/2020,course62,Math - Geometry,62,Instruction covering Math - Geometry,Math - Geometry,2,Active
181,sch7,Art 181,181,term8,Spring Semester,1/21/2020,5/30/2020,course69,Art,69,Instruction covering Art,Art,2,Active
182,sch7,Math - Algebra 182,182,term8,Spring Semester,1/21/2020,5/30/2020,course61,Math - Algebra,61,Instruction covering Math - Algebra,Math - Algebra,2,Active
183,sch8,Art 183,183,term8,Fall Semester,9/1/2019,12/22/2019,course79,Art,79,Instruction covering Art,Art,2,Active
184,sch8,Music 184,184,term8,Fall Semester,9/1/2019,12/22/2019,course80,Music,80,Instruction covering Music,Music,2,Active
185,sch8,Math - Geometry 185,185,term8,Fall Semester,9/1/2019,12/22/2019,course72,Math - Geometry,72,Instruction covering Math - Geometry,Math - Geometry,2,Active
186,sch8,Science Biology 186,186,term8,Fall Semester,9/1/2019,12/22/2019,course75,Science Biology,75,Instruction covering Science Biology,Science Biology,2,Active
187,sch8,Technology - Programming 187,187,term8,Fall Semester,9/1/2019,12/22/2019,course77,Technology - Programming,77,Instruction covering Technology - Programming,Technology - Programming,2,Active
188,sch8,Math - Algebra 188,188,term8,Fall Semester,9/1/2019,12/22/2019,course71,Math - Algebra,71,Instruction covering Math - Algebra,Math - Algebra,2,Active
189,sch8,Physical Education 189,189,term8,Fall Semester,9/1/2019,12/22/2019,course78,Physical Education,78,Instruction covering Physical Education,Physical Education,2,Active
190,sch8,English Language 190,190,term8,Fall Semester,9/1/2019,12/22/2019,course73,English Language,73,Instruction covering English Language,English Language,2,Active
191,sch8,Health 191,191,term8,Fall Semester,9/1/2019,12/22/2019,course76,Health,76,Instruction covering Health,Health,2,Active
192,sch8,English Language 192,192,term8,Fall Semester,9/1/2019,12/22/2019,course73,English Language,73,Instruction covering English Language,English Language,2,Active
193,sch8,Music 193,193,term8,Fall Semester,9/1/2019,12/22/2019,course80,Music,80,Instruction covering Music,Music,2,Active
194,sch8,Physical Education 194,194,term8,Fall Semester,9/1/2019,12/22/2019,course78,Physical Education,78,Instruction covering Physical Education,Physical Education,2,Active
195,sch8,Music 195,195,term8,Fall Semester,9/1/2019,12/22/2019,course80,Music,80,Instruction covering Music,Music,2,Active
196,sch8,Math - Geometry 196,196,term9,Spring Semester,1/21/2020,5/30/2020,course72,Math - Geometry,72,Instruction covering Math - Geometry,Math - Geometry,2,Active
197,sch8,Art 197,197,term9,Spring Semester,1/21/2020,5/30/2020,course79,Art,79,Instruction covering Art,Art,2,Active
198,sch8,History - World History 198,198,term9,Spring Semester,1/21/2020,5/30/2020,course74,History - World History,74,Instruction covering History - World History,History - World History,2,Active
199,sch8,Music 199,199,term9,Spring Semester,1/21/2020,5/30/2020,course80,Music,80,Instruction covering Music,Music,2,Active
200,sch8,Math - Geometry 200,200,term9,Spring Semester,1/21/2020,5/30/2020,course72,Math - Geometry,72,Instruction covering Math - Geometry,Math - Geometry,2,Active
201,sch8,Math - Algebra 201,201,term9,Spring Semester,1/21/2020,5/30/2020,course71,Math - Algebra,71,Instruction covering Math - Algebra,Math - Algebra,2,Active
202,sch8,History - World History 202,202,term9,Spring Semester,1/21/2020,5/30/2020,course74,History - World History,74,Instruction covering History - World History,History - World History,2,Active
203,sch8,Health 203,203,term9,Spring Semester,1/21/2020,5/30/2020,course76,Health,76,Instruction covering Health,Health,2,Active
204,sch8,Health 204,204,term9,Spring Semester,1/21/2020,5/30/2020,course76,Health,76,Instruction covering Health,Health,2,Active
205,sch8,Health 205,205,term9,Spring Semester,1/21/2020,5/30/2020,course76,Health,76,Instruction covering Health,Health,2,Active
206,sch8,English Language 206,206,term9,Spring Semester,1/21/2020,5/30/2020,course73,English Language,73,Instruction covering English Language,English Language,2,Active
207,sch8,English Language 207,207,term9,Spring Semester,1/21/2020,5/30/2020,course73,English Language,73,Instruction covering English Language,English Language,2,Active
208,sch8,Health 208,208,term9,Spring Semester,1/21/2020,5/30/2020,course76,Health,76,Instruction covering Health,Health,2,Active
209,sch9,Technology - Programming 209,209,term9,Fall Semester,9/1/2019,12/22/2019,course87,Technology - Programming,87,Instruction covering Technology - Programming,Technology - Programming,2,Active
210,sch9,Math - Algebra 210,210,term9,Fall Semester,9/1/2019,12/22/2019,course81,Math - Algebra,81,Instruction covering Math - Algebra,Math - Algebra,2,Active
211,sch9,Math - Algebra 211,211,term9,Fall Semester,9/1/2019,12/22/2019,course81,Math - Algebra,81,Instruction covering Math - Algebra,Math - Algebra,2,Active
212,sch9,History - World History 212,212,term9,Fall Semester,9/1/2019,12/22/2019,course84,History - World History,84,Instruction covering History - World History,History - World History,2,Active
213,sch9,Art 213,213,term9,Fall Semester,9/1/2019,12/22/2019,course89,Art,89,Instruction covering Art,Art,2,Active
214,sch9,English Language 214,214,term9,Fall Semester,9/1/2019,12/22/2019,course83,English Language,83,Instruction covering English Language,English Language,2,Active
215,sch9,History - World History 215,215,term9,Fall Semester,9/1/2019,12/22/2019,course84,History - World History,84,Instruction covering History - World History,History - World History,2,Active
216,sch9,Science Biology 216,216,term9,Fall Semester,9/1/2019,12/22/2019,course85,Science Biology,85,Instruction covering Science Biology,Science Biology,2,Active
217,sch9,English Language 217,217,term9,Fall Semester,9/1/2019,12/22/2019,course83,English Language,83,Instruction covering English Language,English Language,2,Active
218,sch9,Art 218,218,term9,Fall Semester,9/1/2019,12/22/2019,course89,Art,89,Instruction covering Art,Art,2,Active
219,sch9,English Language 219,219,term9,Fall Semester,9/1/2019,12/22/2019,course83,English Language,83,Instruction covering English Language,English Language,2,Active
220,sch9,Math - Geometry 220,220,term9,Fall Semester,9/1/2019,12/22/2019,course82,Math - Geometry,82,Instruction covering Math - Geometry,Math - Geometry,2,Active
221,sch9,Science Biology 221,221,term9,Fall Semester,9/1/2019,12/22/2019,course85,Science Biology,85,Instruction covering Science Biology,Science Biology,2,Active
222,sch9,History - World History 222,222,term10,Spring Semester,1/21/2020,5/30/2020,course84,History - World History,84,Instruction covering History - World History,History - World History,2,Active
223,sch9,Science Biology 223,223,term10,Spring Semester,1/21/2020,5/30/2020,course85,Science Biology,85,Instruction covering Science Biology,Science Biology,2,Active
224,sch9,Technology - Programming 224,224,term10,Spring Semester,1/21/2020,5/30/2020,course87,Technology - Programming,87,Instruction covering Technology - Programming,Technology - Programming,2,Active
225,sch9,Technology - Programming 225,225,term10,Spring Semester,1/21/2020,5/30/2020,course87,Technology - Programming,87,Instruction covering Technology - Programming,Technology - Programming,2,Active
226,sch9,Health 226,226,term10,Spring Semester,1/21/2020,5/30/2020,course86,Health,86,Instruction covering Health,Health,2,Active
227,sch9,Science Biology 227,227,term10,Spring Semester,1/21/2020,5/30/2020,course85,Science Biology,85,Instruction covering Science Biology,Science Biology,2,Active
228,sch9,Technology - Programming 228,228,term10,Spring Semester,1/21/2020,5/30/2020,course87,Technology - Programming,87,Instruction covering Technology - Programming,Technology - Programming,2,Active
229,sch9,Science Biology 229,229,term10,Spring Semester,1/21/2020,5/30/2020,course85,Science Biology,85,Instruction covering Science Biology,Science Biology,2,Active
230,sch9,Health 230,230,term10,Spring Semester,1/21/2020,5/30/2020,course86,Health,86,Instruction covering Health,Health,2,Active
231,sch9,Math - Algebra 231,231,term10,Spring Semester,1/21/2020,5/30/2020,course81,Math - Algebra,81,Instruction covering Math - Algebra,Math - Algebra,2,Active
232,sch9,English Language 232,232,term10,Spring Semester,1/21/2020,5/30/2020,course83,English Language,83,Instruction covering English Language,English Language,2,Active
233,sch9,Art 233,233,term10,Spring Semester,1/21/2020,5/30/2020,course89,Art,89,Instruction covering Art,Art,2,Active
234,sch9,History - World History 234,234,term10,Spring Semester,1/21/2020,5/30/2020,course84,History - World History,84,Instruction covering History - World History,History - World History,2,Active
1 SIS ID School SIS ID Section Name Section Number Term SIS ID Term Name Term StartDate Term EndDate Course SIS ID Course Name Course Number Course Description Course Subject Periods Status
2 1 sch1 Math - Geometry 1 1 term1 Fall Semester 9/1/2019 12/22/2019 course2 Math - Geometry 2 Instruction covering Math - Geometry Math - Geometry 2 Active
3 2 sch1 Technology - Programming 2 2 term1 Fall Semester 9/1/2019 12/22/2019 course7 Technology - Programming 7 Instruction covering Technology - Programming Technology - Programming 2 Active
4 3 sch1 Science Biology 3 3 term1 Fall Semester 9/1/2019 12/22/2019 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
5 4 sch1 History - World History 4 4 term1 Fall Semester 9/1/2019 12/22/2019 course4 History - World History 4 Instruction covering History - World History History - World History 2 Active
6 5 sch1 History - World History 5 5 term1 Fall Semester 9/1/2019 12/22/2019 course4 History - World History 4 Instruction covering History - World History History - World History 2 Active
7 6 sch1 Physical Education 6 6 term1 Fall Semester 9/1/2019 12/22/2019 course8 Physical Education 8 Instruction covering Physical Education Physical Education 2 Active
8 7 sch1 Art 7 7 term1 Fall Semester 9/1/2019 12/22/2019 course9 Art 9 Instruction covering Art Art 2 Active
9 8 sch1 Science Biology 8 8 term1 Fall Semester 9/1/2019 12/22/2019 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
10 9 sch1 Music 9 9 term1 Fall Semester 9/1/2019 12/22/2019 course10 Music 10 Instruction covering Music Music 2 Active
11 10 sch1 English Language 10 10 term1 Fall Semester 9/1/2019 12/22/2019 course3 English Language 3 Instruction covering English Language English Language 2 Active
12 11 sch1 Physical Education 11 11 term1 Fall Semester 9/1/2019 12/22/2019 course8 Physical Education 8 Instruction covering Physical Education Physical Education 2 Active
13 12 sch1 Science Biology 12 12 term1 Fall Semester 9/1/2019 12/22/2019 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
14 13 sch1 History - World History 13 13 term1 Fall Semester 9/1/2019 12/22/2019 course4 History - World History 4 Instruction covering History - World History History - World History 2 Active
15 14 sch1 English Language 14 14 term2 Spring Semester 1/21/2020 5/30/2020 course3 English Language 3 Instruction covering English Language English Language 2 Active
16 15 sch1 Technology - Programming 15 15 term2 Spring Semester 1/21/2020 5/30/2020 course7 Technology - Programming 7 Instruction covering Technology - Programming Technology - Programming 2 Active
17 16 sch1 Math - Geometry 16 16 term2 Spring Semester 1/21/2020 5/30/2020 course2 Math - Geometry 2 Instruction covering Math - Geometry Math - Geometry 2 Active
18 17 sch1 Music 17 17 term2 Spring Semester 1/21/2020 5/30/2020 course10 Music 10 Instruction covering Music Music 2 Active
19 18 sch1 Math - Geometry 18 18 term2 Spring Semester 1/21/2020 5/30/2020 course2 Math - Geometry 2 Instruction covering Math - Geometry Math - Geometry 2 Active
20 19 sch1 Physical Education 19 19 term2 Spring Semester 1/21/2020 5/30/2020 course8 Physical Education 8 Instruction covering Physical Education Physical Education 2 Active
21 20 sch1 Physical Education 20 20 term2 Spring Semester 1/21/2020 5/30/2020 course8 Physical Education 8 Instruction covering Physical Education Physical Education 2 Active
22 21 sch1 Math - Geometry 21 21 term2 Spring Semester 1/21/2020 5/30/2020 course2 Math - Geometry 2 Instruction covering Math - Geometry Math - Geometry 2 Active
23 22 sch1 Music 22 22 term2 Spring Semester 1/21/2020 5/30/2020 course10 Music 10 Instruction covering Music Music 2 Active
24 23 sch1 English Language 23 23 term2 Spring Semester 1/21/2020 5/30/2020 course3 English Language 3 Instruction covering English Language English Language 2 Active
25 24 sch1 Physical Education 24 24 term2 Spring Semester 1/21/2020 5/30/2020 course8 Physical Education 8 Instruction covering Physical Education Physical Education 2 Active
26 25 sch1 Music 25 25 term2 Spring Semester 1/21/2020 5/30/2020 course10 Music 10 Instruction covering Music Music 2 Active
27 26 sch1 Science Biology 26 26 term2 Spring Semester 1/21/2020 5/30/2020 course5 Science Biology 5 Instruction covering Science Biology Science Biology 2 Active
28 27 sch2 Math - Geometry 27 27 term2 Fall Semester 9/1/2019 12/22/2019 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
29 28 sch2 History - World History 28 28 term2 Fall Semester 9/1/2019 12/22/2019 course14 History - World History 14 Instruction covering History - World History History - World History 2 Active
30 29 sch2 Art 29 29 term2 Fall Semester 9/1/2019 12/22/2019 course19 Art 19 Instruction covering Art Art 2 Active
31 30 sch2 Technology - Programming 30 30 term2 Fall Semester 9/1/2019 12/22/2019 course17 Technology - Programming 17 Instruction covering Technology - Programming Technology - Programming 2 Active
32 31 sch2 History - World History 31 31 term2 Fall Semester 9/1/2019 12/22/2019 course14 History - World History 14 Instruction covering History - World History History - World History 2 Active
33 32 sch2 Math - Geometry 32 32 term2 Fall Semester 9/1/2019 12/22/2019 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
34 33 sch2 Technology - Programming 33 33 term2 Fall Semester 9/1/2019 12/22/2019 course17 Technology - Programming 17 Instruction covering Technology - Programming Technology - Programming 2 Active
35 34 sch2 Math - Algebra 34 34 term2 Fall Semester 9/1/2019 12/22/2019 course11 Math - Algebra 11 Instruction covering Math - Algebra Math - Algebra 2 Active
36 35 sch2 Physical Education 35 35 term2 Fall Semester 9/1/2019 12/22/2019 course18 Physical Education 18 Instruction covering Physical Education Physical Education 2 Active
37 36 sch2 Technology - Programming 36 36 term2 Fall Semester 9/1/2019 12/22/2019 course17 Technology - Programming 17 Instruction covering Technology - Programming Technology - Programming 2 Active
38 37 sch2 Math - Geometry 37 37 term2 Fall Semester 9/1/2019 12/22/2019 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
39 38 sch2 Physical Education 38 38 term2 Fall Semester 9/1/2019 12/22/2019 course18 Physical Education 18 Instruction covering Physical Education Physical Education 2 Active
40 39 sch2 Math - Geometry 39 39 term2 Fall Semester 9/1/2019 12/22/2019 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
41 40 sch2 Physical Education 40 40 term3 Spring Semester 1/21/2020 5/30/2020 course18 Physical Education 18 Instruction covering Physical Education Physical Education 2 Active
42 41 sch2 Math - Geometry 41 41 term3 Spring Semester 1/21/2020 5/30/2020 course12 Math - Geometry 12 Instruction covering Math - Geometry Math - Geometry 2 Active
43 42 sch2 Physical Education 42 42 term3 Spring Semester 1/21/2020 5/30/2020 course18 Physical Education 18 Instruction covering Physical Education Physical Education 2 Active
44 43 sch2 History - World History 43 43 term3 Spring Semester 1/21/2020 5/30/2020 course14 History - World History 14 Instruction covering History - World History History - World History 2 Active
45 44 sch2 Science Biology 44 44 term3 Spring Semester 1/21/2020 5/30/2020 course15 Science Biology 15 Instruction covering Science Biology Science Biology 2 Active
46 45 sch2 Art 45 45 term3 Spring Semester 1/21/2020 5/30/2020 course19 Art 19 Instruction covering Art Art 2 Active
47 46 sch2 Science Biology 46 46 term3 Spring Semester 1/21/2020 5/30/2020 course15 Science Biology 15 Instruction covering Science Biology Science Biology 2 Active
48 47 sch2 Physical Education 47 47 term3 Spring Semester 1/21/2020 5/30/2020 course18 Physical Education 18 Instruction covering Physical Education Physical Education 2 Active
49 48 sch2 Health 48 48 term3 Spring Semester 1/21/2020 5/30/2020 course16 Health 16 Instruction covering Health Health 2 Active
50 49 sch2 Technology - Programming 49 49 term3 Spring Semester 1/21/2020 5/30/2020 course17 Technology - Programming 17 Instruction covering Technology - Programming Technology - Programming 2 Active
51 50 sch2 Technology - Programming 50 50 term3 Spring Semester 1/21/2020 5/30/2020 course17 Technology - Programming 17 Instruction covering Technology - Programming Technology - Programming 2 Active
52 51 sch2 Science Biology 51 51 term3 Spring Semester 1/21/2020 5/30/2020 course15 Science Biology 15 Instruction covering Science Biology Science Biology 2 Active
53 52 sch2 Math - Algebra 52 52 term3 Spring Semester 1/21/2020 5/30/2020 course11 Math - Algebra 11 Instruction covering Math - Algebra Math - Algebra 2 Active
54 53 sch3 Art 53 53 term3 Fall Semester 9/1/2019 12/22/2019 course29 Art 29 Instruction covering Art Art 2 Active
55 54 sch3 Art 54 54 term3 Fall Semester 9/1/2019 12/22/2019 course29 Art 29 Instruction covering Art Art 2 Active
56 55 sch3 Science Biology 55 55 term3 Fall Semester 9/1/2019 12/22/2019 course25 Science Biology 25 Instruction covering Science Biology Science Biology 2 Active
57 56 sch3 Math - Geometry 56 56 term3 Fall Semester 9/1/2019 12/22/2019 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
58 57 sch3 Math - Geometry 57 57 term3 Fall Semester 9/1/2019 12/22/2019 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
59 58 sch3 English Language 58 58 term3 Fall Semester 9/1/2019 12/22/2019 course23 English Language 23 Instruction covering English Language English Language 2 Active
60 59 sch3 Technology - Programming 59 59 term3 Fall Semester 9/1/2019 12/22/2019 course27 Technology - Programming 27 Instruction covering Technology - Programming Technology - Programming 2 Active
61 60 sch3 Health 60 60 term3 Fall Semester 9/1/2019 12/22/2019 course26 Health 26 Instruction covering Health Health 2 Active
62 61 sch3 Art 61 61 term3 Fall Semester 9/1/2019 12/22/2019 course29 Art 29 Instruction covering Art Art 2 Active
63 62 sch3 Math - Geometry 62 62 term3 Fall Semester 9/1/2019 12/22/2019 course22 Math - Geometry 22 Instruction covering Math - Geometry Math - Geometry 2 Active
64 63 sch3 English Language 63 63 term3 Fall Semester 9/1/2019 12/22/2019 course23 English Language 23 Instruction covering English Language English Language 2 Active
65 64 sch3 English Language 64 64 term3 Fall Semester 9/1/2019 12/22/2019 course23 English Language 23 Instruction covering English Language English Language 2 Active
66 65 sch3 Physical Education 65 65 term3 Fall Semester 9/1/2019 12/22/2019 course28 Physical Education 28 Instruction covering Physical Education Physical Education 2 Active
67 66 sch3 Technology - Programming 66 66 term4 Spring Semester 1/21/2020 5/30/2020 course27 Technology - Programming 27 Instruction covering Technology - Programming Technology - Programming 2 Active
68 67 sch3 English Language 67 67 term4 Spring Semester 1/21/2020 5/30/2020 course23 English Language 23 Instruction covering English Language English Language 2 Active
69 68 sch3 Technology - Programming 68 68 term4 Spring Semester 1/21/2020 5/30/2020 course27 Technology - Programming 27 Instruction covering Technology - Programming Technology - Programming 2 Active
70 69 sch3 Physical Education 69 69 term4 Spring Semester 1/21/2020 5/30/2020 course28 Physical Education 28 Instruction covering Physical Education Physical Education 2 Active
71 70 sch3 History - World History 70 70 term4 Spring Semester 1/21/2020 5/30/2020 course24 History - World History 24 Instruction covering History - World History History - World History 2 Active
72 71 sch3 Physical Education 71 71 term4 Spring Semester 1/21/2020 5/30/2020 course28 Physical Education 28 Instruction covering Physical Education Physical Education 2 Active
73 72 sch3 Math - Algebra 72 72 term4 Spring Semester 1/21/2020 5/30/2020 course21 Math - Algebra 21 Instruction covering Math - Algebra Math - Algebra 2 Active
74 73 sch3 Math - Algebra 73 73 term4 Spring Semester 1/21/2020 5/30/2020 course21 Math - Algebra 21 Instruction covering Math - Algebra Math - Algebra 2 Active
75 74 sch3 Physical Education 74 74 term4 Spring Semester 1/21/2020 5/30/2020 course28 Physical Education 28 Instruction covering Physical Education Physical Education 2 Active
76 75 sch3 History - World History 75 75 term4 Spring Semester 1/21/2020 5/30/2020 course24 History - World History 24 Instruction covering History - World History History - World History 2 Active
77 76 sch3 Math - Algebra 76 76 term4 Spring Semester 1/21/2020 5/30/2020 course21 Math - Algebra 21 Instruction covering Math - Algebra Math - Algebra 2 Active
78 77 sch3 Physical Education 77 77 term4 Spring Semester 1/21/2020 5/30/2020 course28 Physical Education 28 Instruction covering Physical Education Physical Education 2 Active
79 78 sch3 English Language 78 78 term4 Spring Semester 1/21/2020 5/30/2020 course23 English Language 23 Instruction covering English Language English Language 2 Active
80 79 sch4 Music 79 79 term4 Fall Semester 9/1/2019 12/22/2019 course40 Music 40 Instruction covering Music Music 2 Active
81 80 sch4 Math - Geometry 80 80 term4 Fall Semester 9/1/2019 12/22/2019 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
82 81 sch4 Physical Education 81 81 term4 Fall Semester 9/1/2019 12/22/2019 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
83 82 sch4 Math - Geometry 82 82 term4 Fall Semester 9/1/2019 12/22/2019 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
84 83 sch4 Math - Algebra 83 83 term4 Fall Semester 9/1/2019 12/22/2019 course31 Math - Algebra 31 Instruction covering Math - Algebra Math - Algebra 2 Active
85 84 sch4 Math - Geometry 84 84 term4 Fall Semester 9/1/2019 12/22/2019 course32 Math - Geometry 32 Instruction covering Math - Geometry Math - Geometry 2 Active
86 85 sch4 Math - Algebra 85 85 term4 Fall Semester 9/1/2019 12/22/2019 course31 Math - Algebra 31 Instruction covering Math - Algebra Math - Algebra 2 Active
87 86 sch4 History - World History 86 86 term4 Fall Semester 9/1/2019 12/22/2019 course34 History - World History 34 Instruction covering History - World History History - World History 2 Active
88 87 sch4 Technology - Programming 87 87 term4 Fall Semester 9/1/2019 12/22/2019 course37 Technology - Programming 37 Instruction covering Technology - Programming Technology - Programming 2 Active
89 88 sch4 Health 88 88 term4 Fall Semester 9/1/2019 12/22/2019 course36 Health 36 Instruction covering Health Health 2 Active
90 89 sch4 Art 89 89 term4 Fall Semester 9/1/2019 12/22/2019 course39 Art 39 Instruction covering Art Art 2 Active
91 90 sch4 Science Biology 90 90 term4 Fall Semester 9/1/2019 12/22/2019 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
92 91 sch4 Math - Algebra 91 91 term4 Fall Semester 9/1/2019 12/22/2019 course31 Math - Algebra 31 Instruction covering Math - Algebra Math - Algebra 2 Active
93 92 sch4 Art 92 92 term5 Spring Semester 1/21/2020 5/30/2020 course39 Art 39 Instruction covering Art Art 2 Active
94 93 sch4 Science Biology 93 93 term5 Spring Semester 1/21/2020 5/30/2020 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
95 94 sch4 Technology - Programming 94 94 term5 Spring Semester 1/21/2020 5/30/2020 course37 Technology - Programming 37 Instruction covering Technology - Programming Technology - Programming 2 Active
96 95 sch4 Science Biology 95 95 term5 Spring Semester 1/21/2020 5/30/2020 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
97 96 sch4 English Language 96 96 term5 Spring Semester 1/21/2020 5/30/2020 course33 English Language 33 Instruction covering English Language English Language 2 Active
98 97 sch4 History - World History 97 97 term5 Spring Semester 1/21/2020 5/30/2020 course34 History - World History 34 Instruction covering History - World History History - World History 2 Active
99 98 sch4 Art 98 98 term5 Spring Semester 1/21/2020 5/30/2020 course39 Art 39 Instruction covering Art Art 2 Active
100 99 sch4 Science Biology 99 99 term5 Spring Semester 1/21/2020 5/30/2020 course35 Science Biology 35 Instruction covering Science Biology Science Biology 2 Active
101 100 sch4 Physical Education 100 100 term5 Spring Semester 1/21/2020 5/30/2020 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
102 101 sch4 Art 101 101 term5 Spring Semester 1/21/2020 5/30/2020 course39 Art 39 Instruction covering Art Art 2 Active
103 102 sch4 Physical Education 102 102 term5 Spring Semester 1/21/2020 5/30/2020 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
104 103 sch4 Math - Algebra 103 103 term5 Spring Semester 1/21/2020 5/30/2020 course31 Math - Algebra 31 Instruction covering Math - Algebra Math - Algebra 2 Active
105 104 sch4 Physical Education 104 104 term5 Spring Semester 1/21/2020 5/30/2020 course38 Physical Education 38 Instruction covering Physical Education Physical Education 2 Active
106 105 sch5 Music 105 105 term5 Fall Semester 9/1/2019 12/22/2019 course50 Music 50 Instruction covering Music Music 2 Active
107 106 sch5 Technology - Programming 106 106 term5 Fall Semester 9/1/2019 12/22/2019 course47 Technology - Programming 47 Instruction covering Technology - Programming Technology - Programming 2 Active
108 107 sch5 Music 107 107 term5 Fall Semester 9/1/2019 12/22/2019 course50 Music 50 Instruction covering Music Music 2 Active
109 108 sch5 English Language 108 108 term5 Fall Semester 9/1/2019 12/22/2019 course43 English Language 43 Instruction covering English Language English Language 2 Active
110 109 sch5 Technology - Programming 109 109 term5 Fall Semester 9/1/2019 12/22/2019 course47 Technology - Programming 47 Instruction covering Technology - Programming Technology - Programming 2 Active
111 110 sch5 History - World History 110 110 term5 Fall Semester 9/1/2019 12/22/2019 course44 History - World History 44 Instruction covering History - World History History - World History 2 Active
112 111 sch5 English Language 111 111 term5 Fall Semester 9/1/2019 12/22/2019 course43 English Language 43 Instruction covering English Language English Language 2 Active
113 112 sch5 Art 112 112 term5 Fall Semester 9/1/2019 12/22/2019 course49 Art 49 Instruction covering Art Art 2 Active
114 113 sch5 Art 113 113 term5 Fall Semester 9/1/2019 12/22/2019 course49 Art 49 Instruction covering Art Art 2 Active
115 114 sch5 Science Biology 114 114 term5 Fall Semester 9/1/2019 12/22/2019 course45 Science Biology 45 Instruction covering Science Biology Science Biology 2 Active
116 115 sch5 Art 115 115 term5 Fall Semester 9/1/2019 12/22/2019 course49 Art 49 Instruction covering Art Art 2 Active
117 116 sch5 Science Biology 116 116 term5 Fall Semester 9/1/2019 12/22/2019 course45 Science Biology 45 Instruction covering Science Biology Science Biology 2 Active
118 117 sch5 Health 117 117 term5 Fall Semester 9/1/2019 12/22/2019 course46 Health 46 Instruction covering Health Health 2 Active
119 118 sch5 Music 118 118 term6 Spring Semester 1/21/2020 5/30/2020 course50 Music 50 Instruction covering Music Music 2 Active
120 119 sch5 English Language 119 119 term6 Spring Semester 1/21/2020 5/30/2020 course43 English Language 43 Instruction covering English Language English Language 2 Active
121 120 sch5 History - World History 120 120 term6 Spring Semester 1/21/2020 5/30/2020 course44 History - World History 44 Instruction covering History - World History History - World History 2 Active
122 121 sch5 Math - Algebra 121 121 term6 Spring Semester 1/21/2020 5/30/2020 course41 Math - Algebra 41 Instruction covering Math - Algebra Math - Algebra 2 Active
123 122 sch5 Art 122 122 term6 Spring Semester 1/21/2020 5/30/2020 course49 Art 49 Instruction covering Art Art 2 Active
124 123 sch5 History - World History 123 123 term6 Spring Semester 1/21/2020 5/30/2020 course44 History - World History 44 Instruction covering History - World History History - World History 2 Active
125 124 sch5 Physical Education 124 124 term6 Spring Semester 1/21/2020 5/30/2020 course48 Physical Education 48 Instruction covering Physical Education Physical Education 2 Active
126 125 sch5 Music 125 125 term6 Spring Semester 1/21/2020 5/30/2020 course50 Music 50 Instruction covering Music Music 2 Active
127 126 sch5 Music 126 126 term6 Spring Semester 1/21/2020 5/30/2020 course50 Music 50 Instruction covering Music Music 2 Active
128 127 sch5 Art 127 127 term6 Spring Semester 1/21/2020 5/30/2020 course49 Art 49 Instruction covering Art Art 2 Active
129 128 sch5 Art 128 128 term6 Spring Semester 1/21/2020 5/30/2020 course49 Art 49 Instruction covering Art Art 2 Active
130 129 sch5 Health 129 129 term6 Spring Semester 1/21/2020 5/30/2020 course46 Health 46 Instruction covering Health Health 2 Active
131 130 sch5 Music 130 130 term6 Spring Semester 1/21/2020 5/30/2020 course50 Music 50 Instruction covering Music Music 2 Active
132 131 sch6 Physical Education 131 131 term6 Fall Semester 9/1/2019 12/22/2019 course58 Physical Education 58 Instruction covering Physical Education Physical Education 2 Active
133 132 sch6 Math - Algebra 132 132 term6 Fall Semester 9/1/2019 12/22/2019 course51 Math - Algebra 51 Instruction covering Math - Algebra Math - Algebra 2 Active
134 133 sch6 Math - Algebra 133 133 term6 Fall Semester 9/1/2019 12/22/2019 course51 Math - Algebra 51 Instruction covering Math - Algebra Math - Algebra 2 Active
135 134 sch6 English Language 134 134 term6 Fall Semester 9/1/2019 12/22/2019 course53 English Language 53 Instruction covering English Language English Language 2 Active
136 135 sch6 History - World History 135 135 term6 Fall Semester 9/1/2019 12/22/2019 course54 History - World History 54 Instruction covering History - World History History - World History 2 Active
137 136 sch6 Science Biology 136 136 term6 Fall Semester 9/1/2019 12/22/2019 course55 Science Biology 55 Instruction covering Science Biology Science Biology 2 Active
138 137 sch6 Physical Education 137 137 term6 Fall Semester 9/1/2019 12/22/2019 course58 Physical Education 58 Instruction covering Physical Education Physical Education 2 Active
139 138 sch6 Physical Education 138 138 term6 Fall Semester 9/1/2019 12/22/2019 course58 Physical Education 58 Instruction covering Physical Education Physical Education 2 Active
140 139 sch6 History - World History 139 139 term6 Fall Semester 9/1/2019 12/22/2019 course54 History - World History 54 Instruction covering History - World History History - World History 2 Active
141 140 sch6 Science Biology 140 140 term6 Fall Semester 9/1/2019 12/22/2019 course55 Science Biology 55 Instruction covering Science Biology Science Biology 2 Active
142 141 sch6 Technology - Programming 141 141 term6 Fall Semester 9/1/2019 12/22/2019 course57 Technology - Programming 57 Instruction covering Technology - Programming Technology - Programming 2 Active
143 142 sch6 History - World History 142 142 term6 Fall Semester 9/1/2019 12/22/2019 course54 History - World History 54 Instruction covering History - World History History - World History 2 Active
144 143 sch6 History - World History 143 143 term6 Fall Semester 9/1/2019 12/22/2019 course54 History - World History 54 Instruction covering History - World History History - World History 2 Active
145 144 sch6 Health 144 144 term7 Spring Semester 1/21/2020 5/30/2020 course56 Health 56 Instruction covering Health Health 2 Active
146 145 sch6 History - World History 145 145 term7 Spring Semester 1/21/2020 5/30/2020 course54 History - World History 54 Instruction covering History - World History History - World History 2 Active
147 146 sch6 Health 146 146 term7 Spring Semester 1/21/2020 5/30/2020 course56 Health 56 Instruction covering Health Health 2 Active
148 147 sch6 Math - Algebra 147 147 term7 Spring Semester 1/21/2020 5/30/2020 course51 Math - Algebra 51 Instruction covering Math - Algebra Math - Algebra 2 Active
149 148 sch6 Math - Algebra 148 148 term7 Spring Semester 1/21/2020 5/30/2020 course51 Math - Algebra 51 Instruction covering Math - Algebra Math - Algebra 2 Active
150 149 sch6 Technology - Programming 149 149 term7 Spring Semester 1/21/2020 5/30/2020 course57 Technology - Programming 57 Instruction covering Technology - Programming Technology - Programming 2 Active
151 150 sch6 Math - Geometry 150 150 term7 Spring Semester 1/21/2020 5/30/2020 course52 Math - Geometry 52 Instruction covering Math - Geometry Math - Geometry 2 Active
152 151 sch6 Art 151 151 term7 Spring Semester 1/21/2020 5/30/2020 course59 Art 59 Instruction covering Art Art 2 Active
153 152 sch6 Physical Education 152 152 term7 Spring Semester 1/21/2020 5/30/2020 course58 Physical Education 58 Instruction covering Physical Education Physical Education 2 Active
154 153 sch6 Technology - Programming 153 153 term7 Spring Semester 1/21/2020 5/30/2020 course57 Technology - Programming 57 Instruction covering Technology - Programming Technology - Programming 2 Active
155 154 sch6 Math - Algebra 154 154 term7 Spring Semester 1/21/2020 5/30/2020 course51 Math - Algebra 51 Instruction covering Math - Algebra Math - Algebra 2 Active
156 155 sch6 Health 155 155 term7 Spring Semester 1/21/2020 5/30/2020 course56 Health 56 Instruction covering Health Health 2 Active
157 156 sch6 History - World History 156 156 term7 Spring Semester 1/21/2020 5/30/2020 course54 History - World History 54 Instruction covering History - World History History - World History 2 Active
158 157 sch7 Science Biology 157 157 term7 Fall Semester 9/1/2019 12/22/2019 course65 Science Biology 65 Instruction covering Science Biology Science Biology 2 Active
159 158 sch7 English Language 158 158 term7 Fall Semester 9/1/2019 12/22/2019 course63 English Language 63 Instruction covering English Language English Language 2 Active
160 159 sch7 History - World History 159 159 term7 Fall Semester 9/1/2019 12/22/2019 course64 History - World History 64 Instruction covering History - World History History - World History 2 Active
161 160 sch7 Science Biology 160 160 term7 Fall Semester 9/1/2019 12/22/2019 course65 Science Biology 65 Instruction covering Science Biology Science Biology 2 Active
162 161 sch7 Health 161 161 term7 Fall Semester 9/1/2019 12/22/2019 course66 Health 66 Instruction covering Health Health 2 Active
163 162 sch7 Music 162 162 term7 Fall Semester 9/1/2019 12/22/2019 course70 Music 70 Instruction covering Music Music 2 Active
164 163 sch7 Math - Geometry 163 163 term7 Fall Semester 9/1/2019 12/22/2019 course62 Math - Geometry 62 Instruction covering Math - Geometry Math - Geometry 2 Active
165 164 sch7 Technology - Programming 164 164 term7 Fall Semester 9/1/2019 12/22/2019 course67 Technology - Programming 67 Instruction covering Technology - Programming Technology - Programming 2 Active
166 165 sch7 History - World History 165 165 term7 Fall Semester 9/1/2019 12/22/2019 course64 History - World History 64 Instruction covering History - World History History - World History 2 Active
167 166 sch7 Physical Education 166 166 term7 Fall Semester 9/1/2019 12/22/2019 course68 Physical Education 68 Instruction covering Physical Education Physical Education 2 Active
168 167 sch7 Physical Education 167 167 term7 Fall Semester 9/1/2019 12/22/2019 course68 Physical Education 68 Instruction covering Physical Education Physical Education 2 Active
169 168 sch7 Art 168 168 term7 Fall Semester 9/1/2019 12/22/2019 course69 Art 69 Instruction covering Art Art 2 Active
170 169 sch7 Health 169 169 term7 Fall Semester 9/1/2019 12/22/2019 course66 Health 66 Instruction covering Health Health 2 Active
171 170 sch7 Math - Geometry 170 170 term8 Spring Semester 1/21/2020 5/30/2020 course62 Math - Geometry 62 Instruction covering Math - Geometry Math - Geometry 2 Active
172 171 sch7 History - World History 171 171 term8 Spring Semester 1/21/2020 5/30/2020 course64 History - World History 64 Instruction covering History - World History History - World History 2 Active
173 172 sch7 History - World History 172 172 term8 Spring Semester 1/21/2020 5/30/2020 course64 History - World History 64 Instruction covering History - World History History - World History 2 Active
174 173 sch7 English Language 173 173 term8 Spring Semester 1/21/2020 5/30/2020 course63 English Language 63 Instruction covering English Language English Language 2 Active
175 174 sch7 Math - Geometry 174 174 term8 Spring Semester 1/21/2020 5/30/2020 course62 Math - Geometry 62 Instruction covering Math - Geometry Math - Geometry 2 Active
176 175 sch7 History - World History 175 175 term8 Spring Semester 1/21/2020 5/30/2020 course64 History - World History 64 Instruction covering History - World History History - World History 2 Active
177 176 sch7 Math - Geometry 176 176 term8 Spring Semester 1/21/2020 5/30/2020 course62 Math - Geometry 62 Instruction covering Math - Geometry Math - Geometry 2 Active
178 177 sch7 Physical Education 177 177 term8 Spring Semester 1/21/2020 5/30/2020 course68 Physical Education 68 Instruction covering Physical Education Physical Education 2 Active
179 178 sch7 Math - Geometry 178 178 term8 Spring Semester 1/21/2020 5/30/2020 course62 Math - Geometry 62 Instruction covering Math - Geometry Math - Geometry 2 Active
180 179 sch7 Math - Algebra 179 179 term8 Spring Semester 1/21/2020 5/30/2020 course61 Math - Algebra 61 Instruction covering Math - Algebra Math - Algebra 2 Active
181 180 sch7 Math - Geometry 180 180 term8 Spring Semester 1/21/2020 5/30/2020 course62 Math - Geometry 62 Instruction covering Math - Geometry Math - Geometry 2 Active
182 181 sch7 Art 181 181 term8 Spring Semester 1/21/2020 5/30/2020 course69 Art 69 Instruction covering Art Art 2 Active
183 182 sch7 Math - Algebra 182 182 term8 Spring Semester 1/21/2020 5/30/2020 course61 Math - Algebra 61 Instruction covering Math - Algebra Math - Algebra 2 Active
184 183 sch8 Art 183 183 term8 Fall Semester 9/1/2019 12/22/2019 course79 Art 79 Instruction covering Art Art 2 Active
185 184 sch8 Music 184 184 term8 Fall Semester 9/1/2019 12/22/2019 course80 Music 80 Instruction covering Music Music 2 Active
186 185 sch8 Math - Geometry 185 185 term8 Fall Semester 9/1/2019 12/22/2019 course72 Math - Geometry 72 Instruction covering Math - Geometry Math - Geometry 2 Active
187 186 sch8 Science Biology 186 186 term8 Fall Semester 9/1/2019 12/22/2019 course75 Science Biology 75 Instruction covering Science Biology Science Biology 2 Active
188 187 sch8 Technology - Programming 187 187 term8 Fall Semester 9/1/2019 12/22/2019 course77 Technology - Programming 77 Instruction covering Technology - Programming Technology - Programming 2 Active
189 188 sch8 Math - Algebra 188 188 term8 Fall Semester 9/1/2019 12/22/2019 course71 Math - Algebra 71 Instruction covering Math - Algebra Math - Algebra 2 Active
190 189 sch8 Physical Education 189 189 term8 Fall Semester 9/1/2019 12/22/2019 course78 Physical Education 78 Instruction covering Physical Education Physical Education 2 Active
191 190 sch8 English Language 190 190 term8 Fall Semester 9/1/2019 12/22/2019 course73 English Language 73 Instruction covering English Language English Language 2 Active
192 191 sch8 Health 191 191 term8 Fall Semester 9/1/2019 12/22/2019 course76 Health 76 Instruction covering Health Health 2 Active
193 192 sch8 English Language 192 192 term8 Fall Semester 9/1/2019 12/22/2019 course73 English Language 73 Instruction covering English Language English Language 2 Active
194 193 sch8 Music 193 193 term8 Fall Semester 9/1/2019 12/22/2019 course80 Music 80 Instruction covering Music Music 2 Active
195 194 sch8 Physical Education 194 194 term8 Fall Semester 9/1/2019 12/22/2019 course78 Physical Education 78 Instruction covering Physical Education Physical Education 2 Active
196 195 sch8 Music 195 195 term8 Fall Semester 9/1/2019 12/22/2019 course80 Music 80 Instruction covering Music Music 2 Active
197 196 sch8 Math - Geometry 196 196 term9 Spring Semester 1/21/2020 5/30/2020 course72 Math - Geometry 72 Instruction covering Math - Geometry Math - Geometry 2 Active
198 197 sch8 Art 197 197 term9 Spring Semester 1/21/2020 5/30/2020 course79 Art 79 Instruction covering Art Art 2 Active
199 198 sch8 History - World History 198 198 term9 Spring Semester 1/21/2020 5/30/2020 course74 History - World History 74 Instruction covering History - World History History - World History 2 Active
200 199 sch8 Music 199 199 term9 Spring Semester 1/21/2020 5/30/2020 course80 Music 80 Instruction covering Music Music 2 Active
201 200 sch8 Math - Geometry 200 200 term9 Spring Semester 1/21/2020 5/30/2020 course72 Math - Geometry 72 Instruction covering Math - Geometry Math - Geometry 2 Active
202 201 sch8 Math - Algebra 201 201 term9 Spring Semester 1/21/2020 5/30/2020 course71 Math - Algebra 71 Instruction covering Math - Algebra Math - Algebra 2 Active
203 202 sch8 History - World History 202 202 term9 Spring Semester 1/21/2020 5/30/2020 course74 History - World History 74 Instruction covering History - World History History - World History 2 Active
204 203 sch8 Health 203 203 term9 Spring Semester 1/21/2020 5/30/2020 course76 Health 76 Instruction covering Health Health 2 Active
205 204 sch8 Health 204 204 term9 Spring Semester 1/21/2020 5/30/2020 course76 Health 76 Instruction covering Health Health 2 Active
206 205 sch8 Health 205 205 term9 Spring Semester 1/21/2020 5/30/2020 course76 Health 76 Instruction covering Health Health 2 Active
207 206 sch8 English Language 206 206 term9 Spring Semester 1/21/2020 5/30/2020 course73 English Language 73 Instruction covering English Language English Language 2 Active
208 207 sch8 English Language 207 207 term9 Spring Semester 1/21/2020 5/30/2020 course73 English Language 73 Instruction covering English Language English Language 2 Active
209 208 sch8 Health 208 208 term9 Spring Semester 1/21/2020 5/30/2020 course76 Health 76 Instruction covering Health Health 2 Active
210 209 sch9 Technology - Programming 209 209 term9 Fall Semester 9/1/2019 12/22/2019 course87 Technology - Programming 87 Instruction covering Technology - Programming Technology - Programming 2 Active
211 210 sch9 Math - Algebra 210 210 term9 Fall Semester 9/1/2019 12/22/2019 course81 Math - Algebra 81 Instruction covering Math - Algebra Math - Algebra 2 Active
212 211 sch9 Math - Algebra 211 211 term9 Fall Semester 9/1/2019 12/22/2019 course81 Math - Algebra 81 Instruction covering Math - Algebra Math - Algebra 2 Active
213 212 sch9 History - World History 212 212 term9 Fall Semester 9/1/2019 12/22/2019 course84 History - World History 84 Instruction covering History - World History History - World History 2 Active
214 213 sch9 Art 213 213 term9 Fall Semester 9/1/2019 12/22/2019 course89 Art 89 Instruction covering Art Art 2 Active
215 214 sch9 English Language 214 214 term9 Fall Semester 9/1/2019 12/22/2019 course83 English Language 83 Instruction covering English Language English Language 2 Active
216 215 sch9 History - World History 215 215 term9 Fall Semester 9/1/2019 12/22/2019 course84 History - World History 84 Instruction covering History - World History History - World History 2 Active
217 216 sch9 Science Biology 216 216 term9 Fall Semester 9/1/2019 12/22/2019 course85 Science Biology 85 Instruction covering Science Biology Science Biology 2 Active
218 217 sch9 English Language 217 217 term9 Fall Semester 9/1/2019 12/22/2019 course83 English Language 83 Instruction covering English Language English Language 2 Active
219 218 sch9 Art 218 218 term9 Fall Semester 9/1/2019 12/22/2019 course89 Art 89 Instruction covering Art Art 2 Active
220 219 sch9 English Language 219 219 term9 Fall Semester 9/1/2019 12/22/2019 course83 English Language 83 Instruction covering English Language English Language 2 Active
221 220 sch9 Math - Geometry 220 220 term9 Fall Semester 9/1/2019 12/22/2019 course82 Math - Geometry 82 Instruction covering Math - Geometry Math - Geometry 2 Active
222 221 sch9 Science Biology 221 221 term9 Fall Semester 9/1/2019 12/22/2019 course85 Science Biology 85 Instruction covering Science Biology Science Biology 2 Active
223 222 sch9 History - World History 222 222 term10 Spring Semester 1/21/2020 5/30/2020 course84 History - World History 84 Instruction covering History - World History History - World History 2 Active
224 223 sch9 Science Biology 223 223 term10 Spring Semester 1/21/2020 5/30/2020 course85 Science Biology 85 Instruction covering Science Biology Science Biology 2 Active
225 224 sch9 Technology - Programming 224 224 term10 Spring Semester 1/21/2020 5/30/2020 course87 Technology - Programming 87 Instruction covering Technology - Programming Technology - Programming 2 Active
226 225 sch9 Technology - Programming 225 225 term10 Spring Semester 1/21/2020 5/30/2020 course87 Technology - Programming 87 Instruction covering Technology - Programming Technology - Programming 2 Active
227 226 sch9 Health 226 226 term10 Spring Semester 1/21/2020 5/30/2020 course86 Health 86 Instruction covering Health Health 2 Active
228 227 sch9 Science Biology 227 227 term10 Spring Semester 1/21/2020 5/30/2020 course85 Science Biology 85 Instruction covering Science Biology Science Biology 2 Active
229 228 sch9 Technology - Programming 228 228 term10 Spring Semester 1/21/2020 5/30/2020 course87 Technology - Programming 87 Instruction covering Technology - Programming Technology - Programming 2 Active
230 229 sch9 Science Biology 229 229 term10 Spring Semester 1/21/2020 5/30/2020 course85 Science Biology 85 Instruction covering Science Biology Science Biology 2 Active
231 230 sch9 Health 230 230 term10 Spring Semester 1/21/2020 5/30/2020 course86 Health 86 Instruction covering Health Health 2 Active
232 231 sch9 Math - Algebra 231 231 term10 Spring Semester 1/21/2020 5/30/2020 course81 Math - Algebra 81 Instruction covering Math - Algebra Math - Algebra 2 Active
233 232 sch9 English Language 232 232 term10 Spring Semester 1/21/2020 5/30/2020 course83 English Language 83 Instruction covering English Language English Language 2 Active
234 233 sch9 Art 233 233 term10 Spring Semester 1/21/2020 5/30/2020 course89 Art 89 Instruction covering Art Art 2 Active
235 234 sch9 History - World History 234 234 term10 Spring Semester 1/21/2020 5/30/2020 course84 History - World History 84 Instruction covering History - World History History - World History 2 Active

Просмотреть файл

@ -0,0 +1,91 @@
SIS ID,School SIS ID,Username,Password,First Name,Last Name,Middle Name,Secondary Email,Student Number,Grade,State ID,Status,Birthdate,Graduation Year
st1,sch1,g'lendacosta1,i+0DQhwuIt,Glenda,Costa,Paula,glendacosta1@contosoisd3.onmicrosoft.com,1,12,123,Active,4/2/2004,2020
st2,sch1,tammyromero2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx,V3oPVJ5j_0,Tammy,Romero,Elizabeth,tammyromero2@contosoisd3.onmicrosoft.com,2,9,123,Active,4/2/2004,2020
st3,sch1,marywood3,AoX0ZPb!+u,Mary,Wood,Stephanie,marywood3@contosoisd3.onmicrosoft.com,3,12,123,Active,4/2/2004,2020
,sch1,josephkelley4,pwv0)jMz+E,Joseph,Kelley,Lisa,josephkelley4@contosoisd3.onmicrosoft.com,4,10,123,Active,4/2/2004,2020
st5,sch1,amberbuchanan5,^7S1TSoa#v,Amber,Buchanan,John,amberbuchanan5@contosoisd3.onmicrosoft.com,5,10,123,Active,4/2/2004,2020
st6,sch1,maxwelljones6,aZ9Qf(BD#4,Maxwell,Jones,Ryan,maxwelljones6@contosoisd3.onmicrosoft.com,6,11,123,Active,4/2/2004,2020
st7,sch1,rayjohnson7,#S4y7WqZHU,Ray,Johnson,David,rayjohnson7@contosoisd3.onmicrosoft.com,7,9,123,Active,4/2/2004,2020
st8,sch1,chadjones8,N!r#mxs0%2,Chad,Jones,James,chadjones8@contosoisd3.onmicrosoft.com,8,11,123,Active,4/2/2004,2020
st9,sch1,peggyvargas9,9OC*1VmCzj,Peggy,Vargas,Emily,peggyvargas9@contosoisd3.onmicrosoft.com,9,11,123,Active,4/2/2004,2020
st10,sch1,mauricekhan10,y_f8Py3iWo,Maurice,Khan,Michelle,mauricekhan10@contosoisd3.onmicrosoft.com,10,10,123,Active,4/2/2004,2020
st11,sch2,mikaylaharrison11,^24mFr&UD4,Mikayla,Harrison,Levi,mikaylaharrison11@contosoisd3.onmicrosoft.com,11,10,123,Active,4/2/2004,2020
st12,sch2,kevincook12,W(96^S^zZ9,Kevin,Cook,Walter,kevincook12@contosoisd3.onmicrosoft.com,12,9,123,Active,4/2/2004,2020
st13,sch2,stacythompson13,*Q2Kj_t##s,Stacy,Thompson,Ryan,stacythompson13@contosoisd3.onmicrosoft.com,13,11,123,Active,4/2/2004,2020
st14,sch2,elizabethking14,@SZLHn7@Z7,Elizabeth,King,Brittney,elizabethking14@contosoisd3.onmicrosoft.com,14,12,123,Active,4/2/2004,2020
st15,sch2,joshuaelliott15,N1B9uCh4#c,Joshua,Elliott,Cheryl,joshuaelliott15@contosoisd3.onmicrosoft.com,15,10,123,Active,4/2/2004,2020
st16,sch2,teresarobinson16,+8rBdold@U,Teresa,Robinson,Gregory,teresarobinson16@contosoisd3.onmicrosoft.com,16,11,123,Active,4/2/2004,2020
st17,sch2,ashleytodd17,f!70g$ymYV,Ashley,Todd,Melissa,ashleytodd17@contosoisd3.onmicrosoft.com,17,9,123,Active,4/2/2004,2020
st18,sch2,shelbyberger18,&twKWI(o2h,Shelby,Berger,Beth,shelbyberger18@contosoisd3.onmicrosoft.com,18,10,123,Active,4/2/2004,2020
st19,sch2,johngreen19,2#i4Lpr0EE,John,Green,Jamie,johngreen19@contosoisd3.onmicrosoft.com,19,10,123,Active,4/2/2004,2020
st20,sch2,andrewhudson20,iy_P8JPv!!,Andrew,Hudson,Reginald,andrewhudson20@contosoisd3.onmicrosoft.com,20,12,123,Active,4/2/2004,2020
st21,sch3,jasonclark21,dta4TCcgz^,Jason,Clark,Ann,jasonclark21@contosoisd3.onmicrosoft.com,21,10,123,Active,4/2/2004,2020
st22,sch3,michellerivera22,6a4qTuvw7$,Michelle,Rivera,Stephen,michellerivera22@contosoisd3.onmicrosoft.com,22,12,123,Active,4/2/2004,2020
st23,sch3,patriciaalexander23,%fAHHO*d6W,Patricia,Alexander,Lisa,patriciaalexander23@contosoisd3.onmicrosoft.com,23,10,123,Active,4/2/2004,2020
st24,sch3,matthewmassey24,*HOF9WmfU@,Matthew,Massey,Daniel,matthewmassey24@contosoisd3.onmicrosoft.com,24,9,123,Active,4/2/2004,2020
st25,sch3,alexissmith25,925mMksGq*,Alexis,Smith,Christopher,alexissmith25@contosoisd3.onmicrosoft.com,25,9,123,Active,4/2/2004,2020
st26,sch3,alexisherrera26,(K2Bi8m2L2,Alexis,Herrera,Savannah,alexisherrera26@contosoisd3.onmicrosoft.com,26,12,123,Active,4/2/2004,2020
st27,sch3,catherinecastro27,(0Lrbehfh6,Catherine,Castro,Melissa,catherinecastro27@contosoisd3.onmicrosoft.com,27,12,123,Active,4/2/2004,2020
st28,sch3,christopherli28,*8RKLder@Q,Christopher,Li,Michele,christopherli28@contosoisd3.onmicrosoft.com,28,12,123,Active,4/2/2004,2020
st29,sch3,jillgreen29,VoP3uPGj&1,Jill,Green,Penny,jillgreen29@contosoisd3.onmicrosoft.com,29,11,123,Active,4/2/2004,2020
st30,sch3,ericwood30,5nDmaBAE(h,Eric,Wood,Logan,ericwood30@contosoisd3.onmicrosoft.com,30,9,123,Active,4/2/2004,2020
st31,sch4,christinahicks31,Ez!xNbSm)9,Christina,Hicks,Alicia,christinahicks31@contosoisd3.onmicrosoft.com,31,12,123,Active,4/2/2004,2020
st32,sch4,stephanieortiz32,_PVS9JozgT,Stephanie,Ortiz,Rachel,stephanieortiz32@contosoisd3.onmicrosoft.com,32,11,123,Active,4/2/2004,2020
st33,sch4,patrickmarshall33,GlN_7YkF^k,Patrick,Marshall,Kimberly,patrickmarshall33@contosoisd3.onmicrosoft.com,33,9,123,Active,4/2/2004,2020
st34,sch4,travismata34,+64@6NCHfc,Travis,Mata,Andrea,travismata34@contosoisd3.onmicrosoft.com,34,10,123,Active,4/2/2004,2020
st35,sch4,sophiamontes35,n@zc8lVn3Z,Sophia,Montes,Evelyn,sophiamontes35@contosoisd3.onmicrosoft.com,35,10,123,Active,4/2/2004,2020
st36,sch4,catherinemendoza36,2TIrz6OwS#,Catherine,Mendoza,Alan,catherinemendoza36@contosoisd3.onmicrosoft.com,36,12,123,Active,4/2/2004,2020
st37,sch4,saranovak37,%iR48eI)u0,Sara,Novak,Sonya,saranovak37@contosoisd3.onmicrosoft.com,37,12,123,Active,4/2/2004,2020
st38,sch4,kevinhenry38,51i5UT+pR*,Kevin,Henry,Timothy,kevinhenry38@contosoisd3.onmicrosoft.com,38,11,123,Active,4/2/2004,2020
st39,sch4,hollywalker39,Tb48WrJ!@_,Holly,Walker,Erin,hollywalker39@contosoisd3.onmicrosoft.com,39,9,123,Active,4/2/2004,2020
st40,sch4,carolynstone40,!1Kc$lf*B7,Carolyn,Stone,Sara,carolynstone40@contosoisd3.onmicrosoft.com,40,10,123,Active,4/2/2004,2020
st41,sch5,juliedunlap41,@7AFIM*jZy,Julie,Dunlap,Alyssa,juliedunlap41@contosoisd3.onmicrosoft.com,41,12,123,Active,4/2/2004,2020
st42,sch5,kristacarroll42,_6l5Zp+jt5,Krista,Carroll,Ryan,kristacarroll42@contosoisd3.onmicrosoft.com,42,11,123,Active,4/2/2004,2020
st43,sch5,lisaalexander43,+%b30ZUtey,Lisa,Alexander,Crystal,lisaalexander43@contosoisd3.onmicrosoft.com,43,9,123,Active,4/2/2004,2020
st44,sch5,jeremywright44,^3Zjf2vSUu,Jeremy,Wright,Lauren,jeremywright44@contosoisd3.onmicrosoft.com,44,12,123,Active,4/2/2004,2020
st45,sch5,stephenbennett45,(nwEHYet4G,Stephen,Bennett,Rebecca,stephenbennett45@contosoisd3.onmicrosoft.com,45,10,123,Active,4/2/2004,2020
st46,sch5,johnhampton46,V(J2vfFmaR,John,Hampton,Ashley,johnhampton46@contosoisd3.onmicrosoft.com,46,9,123,Active,4/2/2004,2020
st47,sch5,codybriggs47,!w88IWHy!R,Cody,Briggs,Holly,codybriggs47@contosoisd3.onmicrosoft.com,47,10,123,Active,4/2/2004,2020
st48,sch5,tylerramirez48,o#4Si_6D8M,Tyler,Ramirez,Laurie,tylerramirez48@contosoisd3.onmicrosoft.com,48,9,123,Active,4/2/2004,2020
st49,sch5,rubenwiggins49,G2Rok%hG)V,Ruben,Wiggins,Melissa,rubenwiggins49@contosoisd3.onmicrosoft.com,49,9,123,Active,4/2/2004,2020
st50,sch5,jennifersanders50,eDR&2HMjl+,Jennifer,Sanders,Christine,jennifersanders50@contosoisd3.onmicrosoft.com,50,10,123,Active,4/2/2004,2020
st51,sch6,melissamays51,*qT&HPSq0E,Melissa,Mays,Kevin,melissamays51@contosoisd3.onmicrosoft.com,51,12,123,Active,4/2/2004,2020
st52,sch6,caitlinpeters52,1EGQ@T#R%z,Caitlin,Peters,Charles,caitlinpeters52@contosoisd3.onmicrosoft.com,52,10,123,Active,4/2/2004,2020
st53,sch6,ambercook53,(0UFHkJED7,Amber,Cook,Lori,ambercook53@contosoisd3.onmicrosoft.com,53,12,123,Active,4/2/2004,2020
st54,sch6,andreaberry54,017Cwf73)N,Andrea,Berry,Andrea,andreaberry54@contosoisd3.onmicrosoft.com,54,10,123,Active,4/2/2004,2020
st55,sch6,zacharyjohnson55,IkAedYQ1^0,Zachary,Johnson,Jennifer,zacharyjohnson55@contosoisd3.onmicrosoft.com,55,11,123,Active,4/2/2004,2020
st56,sch6,michaelbryant56,!y#5H!iu)#,Michael,Bryant,John,michaelbryant56@contosoisd3.onmicrosoft.com,56,12,123,Active,4/2/2004,2020
st57,sch6,sheryljones57,YvVXE2GaU),Sheryl,Jones,Deborah,sheryljones57@contosoisd3.onmicrosoft.com,57,12,123,Active,4/2/2004,2020
st58,sch6,troywilkinson58,vpWgVir0)9,Troy,Wilkinson,Jonathon,troywilkinson58@contosoisd3.onmicrosoft.com,58,10,123,Active,4/2/2004,2020
st59,sch6,brandonellis59,3NCzQpo(^t,Brandon,Ellis,Alexis,brandonellis59@contosoisd3.onmicrosoft.com,59,11,123,Active,4/2/2004,2020
st60,sch6,kristinberg60,bm%jKdD#$1,Kristin,Berg,Kelly,kristinberg60@contosoisd3.onmicrosoft.com,60,9,123,Active,4/2/2004,2020
st61,sch7,josephperkins61,3(4HfCI@1Z,Joseph,Perkins,Brian,josephperkins61@contosoisd3.onmicrosoft.com,61,11,123,Active,4/2/2004,2020
st62,sch7,bryanramos62,x%&0X1j$$&,Bryan,Ramos,Monica,bryanramos62@contosoisd3.onmicrosoft.com,62,11,123,Active,4/2/2004,2020
st63,sch7,kathynguyen63,q^c7YnvD1a,Kathy,Nguyen,Amanda,kathynguyen63@contosoisd3.onmicrosoft.com,63,10,123,Active,4/2/2004,2020
st64,sch7,karenwood64,H*5)LTqe+k,Karen,Wood,Joe,karenwood64@contosoisd3.onmicrosoft.com,64,12,123,Active,4/2/2004,2020
st65,sch7,melissacollins65,r2Rc^lRy&2,Melissa,Collins,Stacy,melissacollins65@contosoisd3.onmicrosoft.com,65,11,123,Active,4/2/2004,2020
st66,sch7,christinahanna66,C$0Hjd!*_F,Christina,Hanna,Larry,christinahanna66@contosoisd3.onmicrosoft.com,66,9,123,Active,4/2/2004,2020
st67,sch7,amberberger67,(162lO4sj@,Amber,Berger,Krista,amberberger67@contosoisd3.onmicrosoft.com,67,11,123,Active,4/2/2004,2020
st68,sch7,heatherlewis68,0d3euTrk*p,Heather,Lewis,Tracy,heatherlewis68@contosoisd3.onmicrosoft.com,68,11,123,Active,4/2/2004,2020
st69,sch7,sarahsantiago69,UNI^%9Kz1C,Sarah,Santiago,Stephanie,sarahsantiago69@contosoisd3.onmicrosoft.com,69,9,123,Active,4/2/2004,2020
st70,sch7,brandonreynolds70,if)360IlEh,Brandon,Reynolds,Marissa,brandonreynolds70@contosoisd3.onmicrosoft.com,70,12,123,Active,4/2/2004,2020
st71,sch8,brittanycobb71,%2JVP1rLaE,Brittany,Cobb,Paul,brittanycobb71@contosoisd3.onmicrosoft.com,71,11,123,Active,4/2/2004,2020
st72,sch8,shanefarrell72,L9tG0W1s!l,Shane,Farrell,Melissa,shanefarrell72@contosoisd3.onmicrosoft.com,72,9,123,Active,4/2/2004,2020
st73,sch8,craigbrown73,C*4NrXpoB*,Craig,Brown,Debra,craigbrown73@contosoisd3.onmicrosoft.com,73,10,123,Active,4/2/2004,2020
st74,sch8,ronaldchavez74,H8KAeZGi^*,Ronald,Chavez,David,ronaldchavez74@contosoisd3.onmicrosoft.com,74,11,123,Active,4/2/2004,2020
st75,sch8,troyrhodes75,_VMXHs4525,Troy,Rhodes,Kathleen,troyrhodes75@contosoisd3.onmicrosoft.com,75,11,123,Active,4/2/2004,2020
st76,sch8,maxward76,szt6zGj!a),Max,Ward,Mackenzie,maxward76@contosoisd3.onmicrosoft.com,76,11,123,Active,4/2/2004,2020
st77,sch8,monicadavis77,I+5Czh_K!Z,Monica,Davis,Fred,monicadavis77@contosoisd3.onmicrosoft.com,77,11,123,Active,4/2/2004,2020
st78,sch8,dwayneramos78,(2NcW@j4eV,Dwayne,Ramos,Taylor,dwayneramos78@contosoisd3.onmicrosoft.com,78,9,123,Active,4/2/2004,2020
st79,sch8,jeanneramirez79,N+r53Cmd$m,Jeanne,Ramirez,Daniel,jeanneramirez79@contosoisd3.onmicrosoft.com,79,11,123,Active,4/2/2004,2020
st80,sch8,alexandrapearson80,F4hIFSEn5_,Alexandra,Pearson,Brian,alexandrapearson80@contosoisd3.onmicrosoft.com,80,10,123,Active,4/2/2004,2020
st81,sch9,annmyers81,tN9tAjwi%!,Ann,Myers,Manuel,annmyers81@contosoisd3.onmicrosoft.com,81,9,123,Active,4/2/2004,2020
st82,sch9,tammyschwartz82,N8T%mxsn_o,Tammy,Schwartz,Warren,tammyschwartz82@contosoisd3.onmicrosoft.com,82,10,123,Active,4/2/2004,2020
st83,sch9,benjaminharrison83,)lRiY%R!75,Benjamin,Harrison,Corey,benjaminharrison83@contosoisd3.onmicrosoft.com,83,9,123,Active,4/2/2004,2020
st84,sch9,heatherarmstrong84,R1Tp%($T*k,Heather,Armstrong,William,heatherarmstrong84@contosoisd3.onmicrosoft.com,84,11,123,Active,4/2/2004,2020
st85,sch9,ryanmendez85,%W%9JZhJo^,Ryan,Mendez,Shelley,ryanmendez85@contosoisd3.onmicrosoft.com,85,10,123,Active,4/2/2004,2020
st86,sch9,haroldperez86,!475CQ*osj,Harold,Perez,Lauren,haroldperez86@contosoisd3.onmicrosoft.com,86,9,123,Active,4/2/2004,2020
st87,sch9,austintate87,5O*9Y8AeO*,Austin,Tate,Richard,austintate87@contosoisd3.onmicrosoft.com,87,10,123,Active,4/2/2004,2020
st88,sch9,andrewross88,6XE2bW7n#j,Andrew,Ross,Anna,andrewross88@contosoisd3.onmicrosoft.com,88,9,123,Active,4/2/2004,2020
st89,sch9,nathanbaker89,4eGNfjEG@z,Nathan,Baker,Christopher,nathanbaker89@contosoisd3.onmicrosoft.com,89,9,123,Active,4/2/2004,2020
st90,sch9,christopherbishop90,nVECMcCi^0,Christopher,Bishop,Jesse,christopherbishop90@contosoisd3.onmicrosoft.com,90,10,123,Active,4/2/2004,2020
1 SIS ID School SIS ID Username Password First Name Last Name Middle Name Secondary Email Student Number Grade State ID Status Birthdate Graduation Year
2 st1 sch1 g'lendacosta1 i+0DQhwuIt Glenda Costa Paula glendacosta1@contosoisd3.onmicrosoft.com 1 12 123 Active 4/2/2004 2020
3 st2 sch1 tammyromero2xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx V3oPVJ5j_0 Tammy Romero Elizabeth tammyromero2@contosoisd3.onmicrosoft.com 2 9 123 Active 4/2/2004 2020
4 st3 sch1 marywood3 AoX0ZPb!+u Mary Wood Stephanie marywood3@contosoisd3.onmicrosoft.com 3 12 123 Active 4/2/2004 2020
5 sch1 josephkelley4 pwv0)jMz+E Joseph Kelley Lisa josephkelley4@contosoisd3.onmicrosoft.com 4 10 123 Active 4/2/2004 2020
6 st5 sch1 amberbuchanan5 ^7S1TSoa#v Amber Buchanan John amberbuchanan5@contosoisd3.onmicrosoft.com 5 10 123 Active 4/2/2004 2020
7 st6 sch1 maxwelljones6 aZ9Qf(BD#4 Maxwell Jones Ryan maxwelljones6@contosoisd3.onmicrosoft.com 6 11 123 Active 4/2/2004 2020
8 st7 sch1 rayjohnson7 #S4y7WqZHU Ray Johnson David rayjohnson7@contosoisd3.onmicrosoft.com 7 9 123 Active 4/2/2004 2020
9 st8 sch1 chadjones8 N!r#mxs0%2 Chad Jones James chadjones8@contosoisd3.onmicrosoft.com 8 11 123 Active 4/2/2004 2020
10 st9 sch1 peggyvargas9 9OC*1VmCzj Peggy Vargas Emily peggyvargas9@contosoisd3.onmicrosoft.com 9 11 123 Active 4/2/2004 2020
11 st10 sch1 mauricekhan10 y_f8Py3iWo Maurice Khan Michelle mauricekhan10@contosoisd3.onmicrosoft.com 10 10 123 Active 4/2/2004 2020
12 st11 sch2 mikaylaharrison11 ^24mFr&UD4 Mikayla Harrison Levi mikaylaharrison11@contosoisd3.onmicrosoft.com 11 10 123 Active 4/2/2004 2020
13 st12 sch2 kevincook12 W(96^S^zZ9 Kevin Cook Walter kevincook12@contosoisd3.onmicrosoft.com 12 9 123 Active 4/2/2004 2020
14 st13 sch2 stacythompson13 *Q2Kj_t##s Stacy Thompson Ryan stacythompson13@contosoisd3.onmicrosoft.com 13 11 123 Active 4/2/2004 2020
15 st14 sch2 elizabethking14 @SZLHn7@Z7 Elizabeth King Brittney elizabethking14@contosoisd3.onmicrosoft.com 14 12 123 Active 4/2/2004 2020
16 st15 sch2 joshuaelliott15 N1B9uCh4#c Joshua Elliott Cheryl joshuaelliott15@contosoisd3.onmicrosoft.com 15 10 123 Active 4/2/2004 2020
17 st16 sch2 teresarobinson16 +8rBdold@U Teresa Robinson Gregory teresarobinson16@contosoisd3.onmicrosoft.com 16 11 123 Active 4/2/2004 2020
18 st17 sch2 ashleytodd17 f!70g$ymYV Ashley Todd Melissa ashleytodd17@contosoisd3.onmicrosoft.com 17 9 123 Active 4/2/2004 2020
19 st18 sch2 shelbyberger18 &twKWI(o2h Shelby Berger Beth shelbyberger18@contosoisd3.onmicrosoft.com 18 10 123 Active 4/2/2004 2020
20 st19 sch2 johngreen19 2#i4Lpr0EE John Green Jamie johngreen19@contosoisd3.onmicrosoft.com 19 10 123 Active 4/2/2004 2020
21 st20 sch2 andrewhudson20 iy_P8JPv!! Andrew Hudson Reginald andrewhudson20@contosoisd3.onmicrosoft.com 20 12 123 Active 4/2/2004 2020
22 st21 sch3 jasonclark21 dta4TCcgz^ Jason Clark Ann jasonclark21@contosoisd3.onmicrosoft.com 21 10 123 Active 4/2/2004 2020
23 st22 sch3 michellerivera22 6a4qTuvw7$ Michelle Rivera Stephen michellerivera22@contosoisd3.onmicrosoft.com 22 12 123 Active 4/2/2004 2020
24 st23 sch3 patriciaalexander23 %fAHHO*d6W Patricia Alexander Lisa patriciaalexander23@contosoisd3.onmicrosoft.com 23 10 123 Active 4/2/2004 2020
25 st24 sch3 matthewmassey24 *HOF9WmfU@ Matthew Massey Daniel matthewmassey24@contosoisd3.onmicrosoft.com 24 9 123 Active 4/2/2004 2020
26 st25 sch3 alexissmith25 925mMksGq* Alexis Smith Christopher alexissmith25@contosoisd3.onmicrosoft.com 25 9 123 Active 4/2/2004 2020
27 st26 sch3 alexisherrera26 (K2Bi8m2L2 Alexis Herrera Savannah alexisherrera26@contosoisd3.onmicrosoft.com 26 12 123 Active 4/2/2004 2020
28 st27 sch3 catherinecastro27 (0Lrbehfh6 Catherine Castro Melissa catherinecastro27@contosoisd3.onmicrosoft.com 27 12 123 Active 4/2/2004 2020
29 st28 sch3 christopherli28 *8RKLder@Q Christopher Li Michele christopherli28@contosoisd3.onmicrosoft.com 28 12 123 Active 4/2/2004 2020
30 st29 sch3 jillgreen29 VoP3uPGj&1 Jill Green Penny jillgreen29@contosoisd3.onmicrosoft.com 29 11 123 Active 4/2/2004 2020
31 st30 sch3 ericwood30 5nDmaBAE(h Eric Wood Logan ericwood30@contosoisd3.onmicrosoft.com 30 9 123 Active 4/2/2004 2020
32 st31 sch4 christinahicks31 Ez!xNbSm)9 Christina Hicks Alicia christinahicks31@contosoisd3.onmicrosoft.com 31 12 123 Active 4/2/2004 2020
33 st32 sch4 stephanieortiz32 _PVS9JozgT Stephanie Ortiz Rachel stephanieortiz32@contosoisd3.onmicrosoft.com 32 11 123 Active 4/2/2004 2020
34 st33 sch4 patrickmarshall33 GlN_7YkF^k Patrick Marshall Kimberly patrickmarshall33@contosoisd3.onmicrosoft.com 33 9 123 Active 4/2/2004 2020
35 st34 sch4 travismata34 +64@6NCHfc Travis Mata Andrea travismata34@contosoisd3.onmicrosoft.com 34 10 123 Active 4/2/2004 2020
36 st35 sch4 sophiamontes35 n@zc8lVn3Z Sophia Montes Evelyn sophiamontes35@contosoisd3.onmicrosoft.com 35 10 123 Active 4/2/2004 2020
37 st36 sch4 catherinemendoza36 2TIrz6OwS# Catherine Mendoza Alan catherinemendoza36@contosoisd3.onmicrosoft.com 36 12 123 Active 4/2/2004 2020
38 st37 sch4 saranovak37 %iR48eI)u0 Sara Novak Sonya saranovak37@contosoisd3.onmicrosoft.com 37 12 123 Active 4/2/2004 2020
39 st38 sch4 kevinhenry38 51i5UT+pR* Kevin Henry Timothy kevinhenry38@contosoisd3.onmicrosoft.com 38 11 123 Active 4/2/2004 2020
40 st39 sch4 hollywalker39 Tb48WrJ!@_ Holly Walker Erin hollywalker39@contosoisd3.onmicrosoft.com 39 9 123 Active 4/2/2004 2020
41 st40 sch4 carolynstone40 !1Kc$lf*B7 Carolyn Stone Sara carolynstone40@contosoisd3.onmicrosoft.com 40 10 123 Active 4/2/2004 2020
42 st41 sch5 juliedunlap41 @7AFIM*jZy Julie Dunlap Alyssa juliedunlap41@contosoisd3.onmicrosoft.com 41 12 123 Active 4/2/2004 2020
43 st42 sch5 kristacarroll42 _6l5Zp+jt5 Krista Carroll Ryan kristacarroll42@contosoisd3.onmicrosoft.com 42 11 123 Active 4/2/2004 2020
44 st43 sch5 lisaalexander43 +%b30ZUtey Lisa Alexander Crystal lisaalexander43@contosoisd3.onmicrosoft.com 43 9 123 Active 4/2/2004 2020
45 st44 sch5 jeremywright44 ^3Zjf2vSUu Jeremy Wright Lauren jeremywright44@contosoisd3.onmicrosoft.com 44 12 123 Active 4/2/2004 2020
46 st45 sch5 stephenbennett45 (nwEHYet4G Stephen Bennett Rebecca stephenbennett45@contosoisd3.onmicrosoft.com 45 10 123 Active 4/2/2004 2020
47 st46 sch5 johnhampton46 V(J2vfFmaR John Hampton Ashley johnhampton46@contosoisd3.onmicrosoft.com 46 9 123 Active 4/2/2004 2020
48 st47 sch5 codybriggs47 !w88IWHy!R Cody Briggs Holly codybriggs47@contosoisd3.onmicrosoft.com 47 10 123 Active 4/2/2004 2020
49 st48 sch5 tylerramirez48 o#4Si_6D8M Tyler Ramirez Laurie tylerramirez48@contosoisd3.onmicrosoft.com 48 9 123 Active 4/2/2004 2020
50 st49 sch5 rubenwiggins49 G2Rok%hG)V Ruben Wiggins Melissa rubenwiggins49@contosoisd3.onmicrosoft.com 49 9 123 Active 4/2/2004 2020
51 st50 sch5 jennifersanders50 eDR&2HMjl+ Jennifer Sanders Christine jennifersanders50@contosoisd3.onmicrosoft.com 50 10 123 Active 4/2/2004 2020
52 st51 sch6 melissamays51 *qT&HPSq0E Melissa Mays Kevin melissamays51@contosoisd3.onmicrosoft.com 51 12 123 Active 4/2/2004 2020
53 st52 sch6 caitlinpeters52 1EGQ@T#R%z Caitlin Peters Charles caitlinpeters52@contosoisd3.onmicrosoft.com 52 10 123 Active 4/2/2004 2020
54 st53 sch6 ambercook53 (0UFHkJED7 Amber Cook Lori ambercook53@contosoisd3.onmicrosoft.com 53 12 123 Active 4/2/2004 2020
55 st54 sch6 andreaberry54 017Cwf73)N Andrea Berry Andrea andreaberry54@contosoisd3.onmicrosoft.com 54 10 123 Active 4/2/2004 2020
56 st55 sch6 zacharyjohnson55 IkAedYQ1^0 Zachary Johnson Jennifer zacharyjohnson55@contosoisd3.onmicrosoft.com 55 11 123 Active 4/2/2004 2020
57 st56 sch6 michaelbryant56 !y#5H!iu)# Michael Bryant John michaelbryant56@contosoisd3.onmicrosoft.com 56 12 123 Active 4/2/2004 2020
58 st57 sch6 sheryljones57 YvVXE2GaU) Sheryl Jones Deborah sheryljones57@contosoisd3.onmicrosoft.com 57 12 123 Active 4/2/2004 2020
59 st58 sch6 troywilkinson58 vpWgVir0)9 Troy Wilkinson Jonathon troywilkinson58@contosoisd3.onmicrosoft.com 58 10 123 Active 4/2/2004 2020
60 st59 sch6 brandonellis59 3NCzQpo(^t Brandon Ellis Alexis brandonellis59@contosoisd3.onmicrosoft.com 59 11 123 Active 4/2/2004 2020
61 st60 sch6 kristinberg60 bm%jKdD#$1 Kristin Berg Kelly kristinberg60@contosoisd3.onmicrosoft.com 60 9 123 Active 4/2/2004 2020
62 st61 sch7 josephperkins61 3(4HfCI@1Z Joseph Perkins Brian josephperkins61@contosoisd3.onmicrosoft.com 61 11 123 Active 4/2/2004 2020
63 st62 sch7 bryanramos62 x%&0X1j$$& Bryan Ramos Monica bryanramos62@contosoisd3.onmicrosoft.com 62 11 123 Active 4/2/2004 2020
64 st63 sch7 kathynguyen63 q^c7YnvD1a Kathy Nguyen Amanda kathynguyen63@contosoisd3.onmicrosoft.com 63 10 123 Active 4/2/2004 2020
65 st64 sch7 karenwood64 H*5)LTqe+k Karen Wood Joe karenwood64@contosoisd3.onmicrosoft.com 64 12 123 Active 4/2/2004 2020
66 st65 sch7 melissacollins65 r2Rc^lRy&2 Melissa Collins Stacy melissacollins65@contosoisd3.onmicrosoft.com 65 11 123 Active 4/2/2004 2020
67 st66 sch7 christinahanna66 C$0Hjd!*_F Christina Hanna Larry christinahanna66@contosoisd3.onmicrosoft.com 66 9 123 Active 4/2/2004 2020
68 st67 sch7 amberberger67 (162lO4sj@ Amber Berger Krista amberberger67@contosoisd3.onmicrosoft.com 67 11 123 Active 4/2/2004 2020
69 st68 sch7 heatherlewis68 0d3euTrk*p Heather Lewis Tracy heatherlewis68@contosoisd3.onmicrosoft.com 68 11 123 Active 4/2/2004 2020
70 st69 sch7 sarahsantiago69 UNI^%9Kz1C Sarah Santiago Stephanie sarahsantiago69@contosoisd3.onmicrosoft.com 69 9 123 Active 4/2/2004 2020
71 st70 sch7 brandonreynolds70 if)360IlEh Brandon Reynolds Marissa brandonreynolds70@contosoisd3.onmicrosoft.com 70 12 123 Active 4/2/2004 2020
72 st71 sch8 brittanycobb71 %2JVP1rLaE Brittany Cobb Paul brittanycobb71@contosoisd3.onmicrosoft.com 71 11 123 Active 4/2/2004 2020
73 st72 sch8 shanefarrell72 L9tG0W1s!l Shane Farrell Melissa shanefarrell72@contosoisd3.onmicrosoft.com 72 9 123 Active 4/2/2004 2020
74 st73 sch8 craigbrown73 C*4NrXpoB* Craig Brown Debra craigbrown73@contosoisd3.onmicrosoft.com 73 10 123 Active 4/2/2004 2020
75 st74 sch8 ronaldchavez74 H8KAeZGi^* Ronald Chavez David ronaldchavez74@contosoisd3.onmicrosoft.com 74 11 123 Active 4/2/2004 2020
76 st75 sch8 troyrhodes75 _VMXHs4525 Troy Rhodes Kathleen troyrhodes75@contosoisd3.onmicrosoft.com 75 11 123 Active 4/2/2004 2020
77 st76 sch8 maxward76 szt6zGj!a) Max Ward Mackenzie maxward76@contosoisd3.onmicrosoft.com 76 11 123 Active 4/2/2004 2020
78 st77 sch8 monicadavis77 I+5Czh_K!Z Monica Davis Fred monicadavis77@contosoisd3.onmicrosoft.com 77 11 123 Active 4/2/2004 2020
79 st78 sch8 dwayneramos78 (2NcW@j4eV Dwayne Ramos Taylor dwayneramos78@contosoisd3.onmicrosoft.com 78 9 123 Active 4/2/2004 2020
80 st79 sch8 jeanneramirez79 N+r53Cmd$m Jeanne Ramirez Daniel jeanneramirez79@contosoisd3.onmicrosoft.com 79 11 123 Active 4/2/2004 2020
81 st80 sch8 alexandrapearson80 F4hIFSEn5_ Alexandra Pearson Brian alexandrapearson80@contosoisd3.onmicrosoft.com 80 10 123 Active 4/2/2004 2020
82 st81 sch9 annmyers81 tN9tAjwi%! Ann Myers Manuel annmyers81@contosoisd3.onmicrosoft.com 81 9 123 Active 4/2/2004 2020
83 st82 sch9 tammyschwartz82 N8T%mxsn_o Tammy Schwartz Warren tammyschwartz82@contosoisd3.onmicrosoft.com 82 10 123 Active 4/2/2004 2020
84 st83 sch9 benjaminharrison83 )lRiY%R!75 Benjamin Harrison Corey benjaminharrison83@contosoisd3.onmicrosoft.com 83 9 123 Active 4/2/2004 2020
85 st84 sch9 heatherarmstrong84 R1Tp%($T*k Heather Armstrong William heatherarmstrong84@contosoisd3.onmicrosoft.com 84 11 123 Active 4/2/2004 2020
86 st85 sch9 ryanmendez85 %W%9JZhJo^ Ryan Mendez Shelley ryanmendez85@contosoisd3.onmicrosoft.com 85 10 123 Active 4/2/2004 2020
87 st86 sch9 haroldperez86 !475CQ*osj Harold Perez Lauren haroldperez86@contosoisd3.onmicrosoft.com 86 9 123 Active 4/2/2004 2020
88 st87 sch9 austintate87 5O*9Y8AeO* Austin Tate Richard austintate87@contosoisd3.onmicrosoft.com 87 10 123 Active 4/2/2004 2020
89 st88 sch9 andrewross88 6XE2bW7n#j Andrew Ross Anna andrewross88@contosoisd3.onmicrosoft.com 88 9 123 Active 4/2/2004 2020
90 st89 sch9 nathanbaker89 4eGNfjEG@z Nathan Baker Christopher nathanbaker89@contosoisd3.onmicrosoft.com 89 9 123 Active 4/2/2004 2020
91 st90 sch9 christopherbishop90 nVECMcCi^0 Christopher Bishop Jesse christopherbishop90@contosoisd3.onmicrosoft.com 90 10 123 Active 4/2/2004 2020

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -0,0 +1,19 @@
SIS ID,School SIS ID,Username,Password,First Name,Last Name,Middle Name,Secondary Email,Teacher Number,State ID,Status,Title,Qualification
t1,sch1,paigetaylor1,Ibz_1KVu^(,Paige,Taylor,Patricia,paigetaylor1@contosoisd3.onmicrosoft.com,1,123,Active,Teacher,EdLD
t2,sch1,,b!4A#5tJ(0,Stephen,Ramirez,Renee,stephenramirez2@contosoisd3.onmicrosoft.com,2,123,Active,Teacher,EdLD
t3,sch2,travisholland3,!86rGPzrn&,Travis,Holland,Elizabeth,travisholland3@contosoisd3.onmicrosoft.com,3,123,Active,Teacher,EdLD
t4,sch2,erikariley4,y&5^T6s9@f,Erika,Riley,Lisa,erikariley4@contosoisd3.onmicrosoft.com,4,123,Active,Teacher,EdLD
t5,sch3,ashleyhayes5,uxm7uOlQU%,Ashley,Hayes,Kyle,ashleyhayes5@contosoisd3.onmicrosoft.com,5,123,Active,Teacher,EdLD
t6,sch3,williamjohnson6,teIS$*S7%3,William,Johnson,Dawn,williamjohnson6@contosoisd3.onmicrosoft.com,6,123,Active,Teacher,EdLD
t7,sch4,hayleydavis7,rw(ukfAq^4,Hayley,Davis,Amanda,hayleydavis7@contosoisd3.onmicrosoft.com,7,123,Active,Teacher,EdLD
t8,sch4,cynthiadunn8,09KS6QRN!d,Cynthia,Dunn,Anthony,cynthiadunn8@contosoisd3.onmicrosoft.com,8,123,Active,Teacher,EdLD
t9,sch5,ernestanderson9,_6DPntemG1,Ernest,Anderson,Jennifer,ernestanderson9@contosoisd3.onmicrosoft.com,9,123,Active,Teacher,EdLD
t10,sch5,,90HT5I8i(O,Anna,Alvarado,Karen,annaalvarado10@contosoisd3.onmicrosoft.com,10,123,Active,Teacher,EdLD
t11,sch6,stevencline11,@X36N3+hhr,Steven,Cline,Emma,stevencline11@contosoisd3.onmicrosoft.com,11,123,Active,Teacher,EdLD
t12,sch6,angelabaxter12,(Zlb7KtZ((,Angela,Baxter,Kristen,angelabaxter12@contosoisd3.onmicrosoft.com,12,123,Active,Teacher,EdLD
t13,sch7,jessicawright13,PU1tkBOqS+,Jessica,Wright,Brett,jessicawright13@contosoisd3.onmicrosoft.com,13,123,Active,Teacher,EdLD
t14,sch7,samuelwatts14,_q2Ju$Ecl8,Samuel,Watts,Nicole,samuelwatts14@contosoisd3.onmicrosoft.com,14,123,Active,Teacher,EdLD
t15,sch8,adrianjordan15,d%t6VEhcQV,Adrian,Jordan,Stephanie,adrianjordan15@contosoisd3.onmicrosoft.com,15,123,Active,Teacher,EdLD
t16,sch8,edwardjohnson16,hyVPSPco_0,Edward,Johnson,Rhonda,edwardjohnson16@contosoisd3.onmicrosoft.com,16,123,Active,Teacher,EdLD
t17,sch9,jefffrye17,AwKqk_5+%8,Jeff,Frye,Leslie,jefffrye17@contosoisd3.onmicrosoft.com,17,123,Active,Teacher,EdLD
t18,sch9,benjaminrobinson18,@9YaC^mhM4,Benjamin,Robinson,Stephen,benjaminrobinson18@contosoisd3.onmicrosoft.com,18,123,Active,Teacher,EdLD
1 SIS ID School SIS ID Username Password First Name Last Name Middle Name Secondary Email Teacher Number State ID Status Title Qualification
2 t1 sch1 paigetaylor1 Ibz_1KVu^( Paige Taylor Patricia paigetaylor1@contosoisd3.onmicrosoft.com 1 123 Active Teacher EdLD
3 t2 sch1 b!4A#5tJ(0 Stephen Ramirez Renee stephenramirez2@contosoisd3.onmicrosoft.com 2 123 Active Teacher EdLD
4 t3 sch2 travisholland3 !86rGPzrn& Travis Holland Elizabeth travisholland3@contosoisd3.onmicrosoft.com 3 123 Active Teacher EdLD
5 t4 sch2 erikariley4 y&5^T6s9@f Erika Riley Lisa erikariley4@contosoisd3.onmicrosoft.com 4 123 Active Teacher EdLD
6 t5 sch3 ashleyhayes5 uxm7uOlQU% Ashley Hayes Kyle ashleyhayes5@contosoisd3.onmicrosoft.com 5 123 Active Teacher EdLD
7 t6 sch3 williamjohnson6 teIS$*S7%3 William Johnson Dawn williamjohnson6@contosoisd3.onmicrosoft.com 6 123 Active Teacher EdLD
8 t7 sch4 hayleydavis7 rw(ukfAq^4 Hayley Davis Amanda hayleydavis7@contosoisd3.onmicrosoft.com 7 123 Active Teacher EdLD
9 t8 sch4 cynthiadunn8 09KS6QRN!d Cynthia Dunn Anthony cynthiadunn8@contosoisd3.onmicrosoft.com 8 123 Active Teacher EdLD
10 t9 sch5 ernestanderson9 _6DPntemG1 Ernest Anderson Jennifer ernestanderson9@contosoisd3.onmicrosoft.com 9 123 Active Teacher EdLD
11 t10 sch5 90HT5I8i(O Anna Alvarado Karen annaalvarado10@contosoisd3.onmicrosoft.com 10 123 Active Teacher EdLD
12 t11 sch6 stevencline11 @X36N3+hhr Steven Cline Emma stevencline11@contosoisd3.onmicrosoft.com 11 123 Active Teacher EdLD
13 t12 sch6 angelabaxter12 (Zlb7KtZ(( Angela Baxter Kristen angelabaxter12@contosoisd3.onmicrosoft.com 12 123 Active Teacher EdLD
14 t13 sch7 jessicawright13 PU1tkBOqS+ Jessica Wright Brett jessicawright13@contosoisd3.onmicrosoft.com 13 123 Active Teacher EdLD
15 t14 sch7 samuelwatts14 _q2Ju$Ecl8 Samuel Watts Nicole samuelwatts14@contosoisd3.onmicrosoft.com 14 123 Active Teacher EdLD
16 t15 sch8 adrianjordan15 d%t6VEhcQV Adrian Jordan Stephanie adrianjordan15@contosoisd3.onmicrosoft.com 15 123 Active Teacher EdLD
17 t16 sch8 edwardjohnson16 hyVPSPco_0 Edward Johnson Rhonda edwardjohnson16@contosoisd3.onmicrosoft.com 16 123 Active Teacher EdLD
18 t17 sch9 jefffrye17 AwKqk_5+%8 Jeff Frye Leslie jefffrye17@contosoisd3.onmicrosoft.com 17 123 Active Teacher EdLD
19 t18 sch9 benjaminrobinson18 @9YaC^mhM4 Benjamin Robinson Stephen benjaminrobinson18@contosoisd3.onmicrosoft.com 18 123 Active Teacher EdLD

Просмотреть файл

@ -0,0 +1,233 @@
Section SIS ID,SIS ID
1,t1
2,t2
3,t1
4,t2
5,t1
6,t2
7,t1
8,t2
9,t1
10,t2
11,t1
12,t2
13,t1
14,t1
15,t2
16,t1
17,t2
18,t1
19,t2
20,t1
21,t2
22,t1
23,t2
24,t1
25,t2
26,t1
27,t3
28,t4
29,t3
30,t4
31,t3
32,t4
33,t3
34,t4
35,t3
36,t4
37,t3
38,t4
39,t3
40,t3
41,t4
42,t3
43,t4
44,t3
45,t4
46,t3
47,t4
48,t3
49,t4
50,t3
51,t4
52,t3
53,t5
54,t6
55,t5
56,t6
57,t5
58,t6
59,t5
60,t6
61,t5
62,t6
63,t5
64,t6
65,t5
66,t5
67,t6
68,t5
69,t6
70,t5
71,t6
72,t5
73,t6
74,t5
75,t6
76,t5
77,t6
78,t5
79,t7
80,t8
81,t7
82,t8
83,t7
84,t8
85,t7
86,t8
87,t7
88,t8
89,t7
90,t8
91,t7
92,t7
93,t8
94,t7
95,t8
96,t7
97,t8
98,t7
99,t8
100,t7
101,t8
102,t7
103,t8
104,t7
105,t9
106,t10
107,t9
108,t10
109,t9
110,t10
111,t9
112,t10
113,t9
114,t10
115,t9
116,t10
117,t9
118,t9
119,t10
120,t9
121,t10
122,t9
123,t10
124,t9
125,t10
126,t9
127,t10
128,t9
129,t10
130,t9
131,t11
132,t12
133,t11
134,t12
135,t11
136,t12
137,t11
138,t12
139,t11
140,t12
141,t11
142,t12
143,t11
144,t11
145,t12
146,t11
147,t12
148,t11
149,t12
150,t11
151,t12
152,t11
153,t12
154,t11
155,t12
156,t11
157,t13
158,t14
159,t13
160,t14
161,t13
162,t14
163,t13
164,t14
165,t13
166,t14
167,t13
168,t14
169,t13
170,t13
171,t14
172,t13
173,t14
174,t13
175,t14
176,t13
177,t14
178,t13
179,t14
180,t13
181,t14
182,t13
183,t15
184,t16
185,t15
186,t16
187,t15
188,t16
189,t15
190,t16
191,t15
192,t16
193,t15
194,t16
195,t15
196,t15
197,t16
198,t15
199,t16
200,t15
201,t16
202,t15
203,t16
204,t15
205,t16
206,t15
207,t16
208,t15
209,t17
210,t18
211,t17
212,t18
213,t17
214,t18
215,t17
216,t18
217,t17
218,t18
219,t17
220,t18
221,t17
223,t18
224,t17
225,t18
226,t17
227,t18
228,t17
229,t18
230,t17
231,t18
232,t17
234,t17
1 Section SIS ID SIS ID
2 1 t1
3 2 t2
4 3 t1
5 4 t2
6 5 t1
7 6 t2
8 7 t1
9 8 t2
10 9 t1
11 10 t2
12 11 t1
13 12 t2
14 13 t1
15 14 t1
16 15 t2
17 16 t1
18 17 t2
19 18 t1
20 19 t2
21 20 t1
22 21 t2
23 22 t1
24 23 t2
25 24 t1
26 25 t2
27 26 t1
28 27 t3
29 28 t4
30 29 t3
31 30 t4
32 31 t3
33 32 t4
34 33 t3
35 34 t4
36 35 t3
37 36 t4
38 37 t3
39 38 t4
40 39 t3
41 40 t3
42 41 t4
43 42 t3
44 43 t4
45 44 t3
46 45 t4
47 46 t3
48 47 t4
49 48 t3
50 49 t4
51 50 t3
52 51 t4
53 52 t3
54 53 t5
55 54 t6
56 55 t5
57 56 t6
58 57 t5
59 58 t6
60 59 t5
61 60 t6
62 61 t5
63 62 t6
64 63 t5
65 64 t6
66 65 t5
67 66 t5
68 67 t6
69 68 t5
70 69 t6
71 70 t5
72 71 t6
73 72 t5
74 73 t6
75 74 t5
76 75 t6
77 76 t5
78 77 t6
79 78 t5
80 79 t7
81 80 t8
82 81 t7
83 82 t8
84 83 t7
85 84 t8
86 85 t7
87 86 t8
88 87 t7
89 88 t8
90 89 t7
91 90 t8
92 91 t7
93 92 t7
94 93 t8
95 94 t7
96 95 t8
97 96 t7
98 97 t8
99 98 t7
100 99 t8
101 100 t7
102 101 t8
103 102 t7
104 103 t8
105 104 t7
106 105 t9
107 106 t10
108 107 t9
109 108 t10
110 109 t9
111 110 t10
112 111 t9
113 112 t10
114 113 t9
115 114 t10
116 115 t9
117 116 t10
118 117 t9
119 118 t9
120 119 t10
121 120 t9
122 121 t10
123 122 t9
124 123 t10
125 124 t9
126 125 t10
127 126 t9
128 127 t10
129 128 t9
130 129 t10
131 130 t9
132 131 t11
133 132 t12
134 133 t11
135 134 t12
136 135 t11
137 136 t12
138 137 t11
139 138 t12
140 139 t11
141 140 t12
142 141 t11
143 142 t12
144 143 t11
145 144 t11
146 145 t12
147 146 t11
148 147 t12
149 148 t11
150 149 t12
151 150 t11
152 151 t12
153 152 t11
154 153 t12
155 154 t11
156 155 t12
157 156 t11
158 157 t13
159 158 t14
160 159 t13
161 160 t14
162 161 t13
163 162 t14
164 163 t13
165 164 t14
166 165 t13
167 166 t14
168 167 t13
169 168 t14
170 169 t13
171 170 t13
172 171 t14
173 172 t13
174 173 t14
175 174 t13
176 175 t14
177 176 t13
178 177 t14
179 178 t13
180 179 t14
181 180 t13
182 181 t14
183 182 t13
184 183 t15
185 184 t16
186 185 t15
187 186 t16
188 187 t15
189 188 t16
190 189 t15
191 190 t16
192 191 t15
193 192 t16
194 193 t15
195 194 t16
196 195 t15
197 196 t15
198 197 t16
199 198 t15
200 199 t16
201 200 t15
202 201 t16
203 202 t15
204 203 t16
205 204 t15
206 205 t16
207 206 t15
208 207 t16
209 208 t15
210 209 t17
211 210 t18
212 211 t17
213 212 t18
214 213 t17
215 214 t18
216 215 t17
217 216 t18
218 217 t17
219 218 t18
220 219 t17
221 220 t18
222 221 t17
223 223 t18
224 224 t17
225 225 t18
226 226 t17
227 227 t18
228 228 t17
229 229 t18
230 230 t17
231 231 t18
232 232 t17
233 234 t17