Skip to main content

Address

The type address is used to represent a physical location, typically including details such as street address, city, district, postal code, and country.

Structure

{
"street": "Street 1",
"zip": "12345",
"city": "City",
"district": "urbanDistrict",
"country": "Country"
}
  • street: The street address, which may include house number and street name.
  • zip: The postal code or ZIP code of the address.
  • city: The city of the address.
  • district: An optional field to specify a district or neighborhood within the city.
  • country: The country of the address.

Example

{
"types": [
"schema:Organization"
],
"content": {
"venus:address": {
"street": "Example Street 123",
"city": "Example City",
"zip": "12345",
"country": "Example Country"
}
}
}