PostalAddress
Physical mailing address with optional geographic coordinates
Properties
| Property | Type | Mode | Description | Required |
|---|---|---|---|---|
| use | string | enum | Purpose of this address Values: Example: | Optional |
| label | string | stored | Human-readable label for this address Example: | Optional |
| streetAddress | string | stored | Street address (number and street name) Example: | Required |
| addressLocality | string | stored | City or locality Example: | Required |
| addressRegion | string | stored | State, province, or region Example: | Optional |
| postalCode | string | stored | Postal or ZIP code Example: | Required |
| addressCountry | string | stored | Country (ISO 3166-1 alpha-2 country code) Example: | Required |
| postOfficeBoxNumber | string | stored | P.O. Box number if applicable Example: | Optional |
| latitude | number | stored | Geographic latitude coordinate for precise location Example: | Optional |
| longitude | number | stored | Geographic longitude coordinate for precise location Example: | Optional |
Examples
Example 1
{
"@type": "PostalAddress",
"streetAddress": "123 Main Street",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94105",
"addressCountry": "US",
"latitude": 37.7749,
"longitude": -122.4194
}Example 2
{
"@type": "PostalAddress",
"streetAddress": "10 Rue de la Paix",
"addressLocality": "Paris",
"postalCode": "75002",
"addressCountry": "FR",
"latitude": 48.8698,
"longitude": 2.3308
}