export type AddressSchema = {
streetName: string
streetNumber: string
zipCode: string
city: string
province: string
region: string
country: string
plainAddress: string
position: {
type: string | 'Point'
coordinates: [number, number]
}
placeId: string
}