whosonfirst / whosonfirst-www-boundaryissues

Boundary Issues is a web-application for editing Who's On First data.
BSD 3-Clause "New" or "Revised" License
8 stars 0 forks source link

Add wof:placetype_alt to the schema #339

Closed stepps00 closed 7 years ago

stepps00 commented 7 years ago

This property should be catalogued as a list (not a string). Example:

"wof:placetype_alt":[
    "county", 
    "localadmin"
],
thisisaaronland commented 7 years ago

wait, what? that’s going to break a bunch of code - what is the rationale for a list? are these just quantum places?

stepps00 commented 7 years ago

This is follow-up to our conversation about the wof:placetype_alt property. We should ensure the wof:placetype_alt property is a list, rather than a string. Because a record can have multiple alt placetypes, we should use:

"wof:placetype_alt":[
    "county", 
    "localadmin"
],

rather than..

"wof:placetype_alt":"country, localadmin"