Represents contact information for an entity
{
"name": {
"givenName": "John",
"familyName": "Doe",
"additionalName": "string"
},
"phone": "+14539842345",
"address": {
"address1": "156 5th Avenue",
"address2": "string",
"locality": "New York",
"postalCode": "10019",
"region": "US-NY",
"country": "US"
},
"email": "john.doe@gmail.com"
}
Properties
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
name | object | true | none | Represents the full name |
➥ givenName | string | true | none | Given name |
➥ familyName | string | true | none | Family name |
➥ additionalName | string | false | none | Additional name, if any |
phone | string | false | none | Telephone number including country code |
address | object | false | none | Represents a fully defined address for an entity |
➥ address1 | string | true | none | First address line |
➥ address2 | string | false | none | Second address line |
➥ locality | string | true | none | The locality (e.g. City) of the address. |
➥ postalCode | string | true | none | The administrative postal code (e.g. Zip Code) |
➥ region | string | true | none | The region or first-level administration division (e.g. State/Province) of the address. |
➥ country | string | true | none | The two character ISO-3166-1 country code. |
string(email) | false | none | Email address |