LinkedIn · Schema

MemberProfile

MemberProfile from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
firstName string First name of the member
lastName string Last name of the member
headline string Professional headline
View JSON Schema on GitHub

JSON Schema

linkedin-compliance-events-member-profile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-compliance-events-member-profile-schema.json",
  "title": "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"
    }
  }
}