@berlin-vegan/berlin-vegan-data-js
Version:
A library and stand-alone program that specifies the native open-source JSON format used by Berlin-Vegan and allows to convert data in this format to be converted to OpenStreetMap/Overpass and Schema.org JSON formats.
10 lines (9 loc) • 349 B
TypeScript
import { NativeLocation } from "./NativeLocation";
export interface NativeShoppingLocation extends NativeLocation {
/**
* Tags describing the type of the location
*
* 1 to 8 items.
*/
tags: ("foods" | "clothing" | "toiletries" | "supermarket" | "hairdressers" | "sports" | "tattoostudio" | "accommodation")[];
}