Interface Place

Represents a physical location, typically where a job is based or an event occurs.

interface Place {
    additional_info?: string;
    address: PostalAddress;
}

Properties

additional_info?: string

Additional details about the place (optional).

"Office Building"
address: PostalAddress

The address of the place, using a structured postal address.

{ street_address: "123 Main St", address_locality: "Tech City", address_region: "TX", postal_code: "12345", address_country: "USA" }