@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.
14 lines (13 loc) • 325 B
TypeScript
import { PostalAddress } from "./PostalAddress";
import { Review } from "./Review";
import { Thing } from "./Thing";
/**
* https://schema.org/Place
*/
export interface Place extends Thing {
address: PostalAddress;
latitude: number;
longitude: number;
review?: Review;
telephone?: string;
}