forked from ebhomengo/niki
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
|
package data
|
||
|
|
||
|
// School type and names
|
||
|
var School = map[string][]string{
|
||
|
"type": {"Elementary School", "Middle School", "University", "High School", "Kindergarten", "Academy", "College", "Institute"},
|
||
|
"isPrivate": {"Private", "State"},
|
||
|
"name": {"Maplewood",
|
||
|
"Pineville",
|
||
|
"Riverside",
|
||
|
"Willowbrook",
|
||
|
"Crestwood",
|
||
|
"Sunset",
|
||
|
"Greenfield",
|
||
|
"Oakwood",
|
||
|
"Willowbrook",
|
||
|
"Hawthorn",
|
||
|
"Brookside",
|
||
|
"Pleasant View",
|
||
|
"Crescent Valley",
|
||
|
"Sycamore",
|
||
|
"Springfield",
|
||
|
"Meadowbrook",
|
||
|
"Greenwood",
|
||
|
"Riverbend",
|
||
|
"Valley Forge",
|
||
|
"Ridgeview",
|
||
|
"Cottonwood",
|
||
|
"Cedarwood",
|
||
|
"Golden Oak",
|
||
|
"Stonebridge",
|
||
|
"Harborview",
|
||
|
"Windsor",
|
||
|
"Northbrook",
|
||
|
"Sunset",
|
||
|
"Redwood Valley",
|
||
|
"Liberty",
|
||
|
"Washington Central",
|
||
|
"Franklin",
|
||
|
"Jefferson",
|
||
|
"Lincoln Park",
|
||
|
"Madison",
|
||
|
"Roosevelt",
|
||
|
"Westwood",
|
||
|
"Central Lakeside",
|
||
|
"Fairview",
|
||
|
"Heritage Hills",
|
||
|
"Kingsbridge",
|
||
|
"Harrisonville",
|
||
|
"Valley View",
|
||
|
"Hillside",
|
||
|
"Northridge",
|
||
|
"Brooklyn Heights",
|
||
|
"Oakridge",
|
||
|
"Countryside",
|
||
|
},
|
||
|
}
|