<!--- >
Organized by tbl
Types are:
- preset (ex. country)
- agg (aggregate. can be expanded by user pool over time)
< --->
<var list = "country,state,city,school,college,church">
<var Def = DeSerializeJSON('{
"country": {
"tbl": "country",
"label": "Country",
"plural": "Countries",
"type": "preset"
},
"state": {
"tbl": "state",
"label": "State",
"plural": "States",
"type": "preset"
},
"city": {
"tbl": "city",
"label": "City",
"plural": "Cities",
"type": "agg"
},
"school": {
"tbl": "school",
"label": "School",
"plural": "Schools",
"type": "agg"
},
"college": {
"tbl": "college",
"label": "College",
"plural": "Colleges",
"type": "agg"
},
"church": {
"tbl": "church",
"label": "Place of Worship",
"plural": "Places of Worship",
"type": "agg"
}
}')>
<var Ret = StructNew()>
<var Ret.Def = Def>
<var Ret.list = list>
<return Ret>