Address Entity

{
    address: {                  // address entity (optional "address")
        name:                   // receiver
        extra:                  // extra information
        street:                 // street
        zip:                    // zip
        city:                   // city
        country:                // country
    }
}

For the country key, the ISO 3166-1 alpha-2 standard is used, with Germany as the only exception, which is D (instead of DE).

Example Entity

{
    address: {
        name: "Maximilian Mustermann"
        extra: "c/o Musterfrau"
        street: "Hauptweg 15"
        zip: "12345"
        city: "Berlin"
        country: "D"
    }
}