Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Address

Matthias Rohmer edited this page Sep 30, 2021 · 1 revision

Addresses describe an actual place in the real world.

Resource

interface Address {
  type: "address";
  attributes: {
    street1: string;
    street2?: string;
    city: string;
    zipCode: string;
  };
}
Clone this wiki locally