Interface Address

Describes an address.

interface Address {
    @type: "address";
    city: string;
    country_code: string;
    postal_code: string;
    state: string;
    street_line1: string;
    street_line2: string;
}

Properties

@type: "address"
city: string

City.

country_code: string

A two-letter ISO 3166-1 alpha-2 country code.

postal_code: string

Address postal code.

state: string

State, if applicable.

street_line1: string

First line of the address.

street_line2: string

Second line of the address.