MemberProfile from LinkedIn API
{ "$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" } } }