LinkedIn · JSON Structure

Linkedin Regulations Data Portability Address Structure

Address from LinkedIn API

Type: object Properties: 5
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Address is a JSON Structure definition published by LinkedIn, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

line1 city geographicArea postalCode country

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-structure/linkedin-regulations-data-portability-address-structure.json",
  "name": "Address",
  "description": "Address from LinkedIn API",
  "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"
    }
  }
}