LinkedIn · JSON Structure

Linkedin Compliance Events Member Profile Structure

MemberProfile from LinkedIn API

Type: object Properties: 3
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

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

Properties

firstName lastName headline

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-compliance-events-member-profile-structure.json",
  "name": "MemberProfile",
  "description": "MemberProfile from LinkedIn API",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "description": "First name of the member",
      "example": "John"
    },
    "lastName": {
      "type": "string",
      "description": "Last name of the member",
      "example": "Doe"
    },
    "headline": {
      "type": "string",
      "description": "Professional headline",
      "example": "Software Engineer at Tech Corp"
    }
  }
}