Schema.org · Schema
Schema.org PostalAddress
The mailing address.
Schema.orgStructured DataLinked DataJSON-LDVocabularySEOWeb StandardsRDFOntology
Properties
| Name | Type | Description |
|---|---|---|
| @type | string | The Schema.org type. |
| @context | string | |
| streetAddress | string | The street address. |
| addressLocality | string | The locality (city). |
| addressRegion | string | The region (state, province). |
| postalCode | string | The postal code. |
| addressCountry | string | The country. Use the two-letter ISO 3166-1 alpha-2 country code. |
| postOfficeBoxNumber | string | The post office box number. |
| name | string | The name of the address. |
| telephone | string | The telephone number. |
| faxNumber | string | The fax number. |
| string | Email address. | |
| contactType | string | A person or organization can have different contact points for different purposes. |
| areaServed | string | The geographic area where a service is provided. |
| availableLanguage | object | A language someone may use with or at the item. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://schema.org/schemas/postal-address.json",
"title": "Schema.org PostalAddress",
"description": "The mailing address.",
"type": "object",
"required": ["@type"],
"properties": {
"@type": {
"type": "string",
"const": "PostalAddress",
"description": "The Schema.org type."
},
"@context": {
"type": "string",
"default": "https://schema.org"
},
"streetAddress": {
"type": "string",
"description": "The street address."
},
"addressLocality": {
"type": "string",
"description": "The locality (city)."
},
"addressRegion": {
"type": "string",
"description": "The region (state, province)."
},
"postalCode": {
"type": "string",
"description": "The postal code."
},
"addressCountry": {
"type": "string",
"description": "The country. Use the two-letter ISO 3166-1 alpha-2 country code."
},
"postOfficeBoxNumber": {
"type": "string",
"description": "The post office box number."
},
"name": {
"type": "string",
"description": "The name of the address."
},
"telephone": {
"type": "string",
"description": "The telephone number."
},
"faxNumber": {
"type": "string",
"description": "The fax number."
},
"email": {
"type": "string",
"format": "email",
"description": "Email address."
},
"contactType": {
"type": "string",
"description": "A person or organization can have different contact points for different purposes."
},
"areaServed": {
"type": "string",
"description": "The geographic area where a service is provided."
},
"availableLanguage": {
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
],
"description": "A language someone may use with or at the item."
}
}
}