LinkedIn · Schema

Address

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
line1 string
city string
geographicArea string
postalCode string
country string
View JSON Schema on GitHub

JSON Schema

linkedin-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Address",
  "title": "Address",
  "type": "object",
  "properties": {
    "line1": {
      "type": "string",
      "example": "123 Main Street"
    },
    "city": {
      "type": "string",
      "example": "San Francisco"
    },
    "geographicArea": {
      "type": "string",
      "example": "California"
    },
    "postalCode": {
      "type": "string",
      "example": "94102"
    },
    "country": {
      "type": "string",
      "example": "US"
    }
  }
}