-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplace.ts
48 lines (46 loc) · 1.71 KB
/
place.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { ImageObject } from "./image-object";
import { PropertyValue } from "./property-value";
import { Thing } from "./thing";
export type Place = Thing & {
additionalProperty?: PropertyValue;
//address?: PostalAddress | string;
//aggregateRating?: AggregateRating;
//amenityFeature?: LocationFeatureSpecification;
branchCode?: string;
containedInPlace?: Place;
containsPlace?: Place;
event?: Event;
faxNumber?: string;
//geo?: GeoCoordinates | GeoShape;
//geoContains?: GeospatialGeometry | Place;
//geoCoveredBy?: GeospatialGeometry | Place;
//geoCovers?: GeospatialGeometry | Place;
//geoCrosses?: GeospatialGeometry | Place;
//geoDisjoint?: GeospatialGeometry | Place;
//geoEquals?: GeospatialGeometry | Place;
//geoIntersects?: GeospatialGeometry | Place;
//geoOverlaps?: GeospatialGeometry | Place;
//geoTouches?: GeospatialGeometry | Place;
//geoWithin?: GeospatialGeometry | Place;
globalLocationNumber?: string;
//hasCertification?: Certification;
hasDriveThroughService?: boolean;
hasGS1DigitalLink?: URL;
//hasMap?: Map | URL;
isAccessibleForFree?: boolean;
isicV4?: string;
//keywords?: DefinedTerm | string | URL;
latitude?: number | string;
logo?: ImageObject | URL;
longitude?: number | string;
maximumAttendeeCapacity?: number;
//openingHoursSpecification?: OpeningHoursSpecification;
//photo?: ImageObject | Photograph;
publicAccess?: boolean;
//review?: Review;
slogan?: string;
smokingAllowed?: boolean;
//specialOpeningHoursSpecification?: OpeningHoursSpecification;
telephone?: string;
tourBookingPage?: URL;
};