LinkedIn · Schema
LearnerEntity
LearnerEntity from LinkedIn API
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| accountUrn | string | URN of the enterprise account |
| groupUrn | string | URN of the learner group (if grouped by group) |
| learnerUrn | string | URN of the individual learner (if grouped by individual) |
| contentUrn | string | URN of the content (if grouped by content) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-learning-activity-reports-learner-entity-schema.json",
"title": "LearnerEntity",
"description": "LearnerEntity from LinkedIn API",
"type": "object",
"properties": {
"accountUrn": {
"type": "string",
"description": "URN of the enterprise account",
"example": "urn:li:enterpriseAccount:999"
},
"groupUrn": {
"type": "string",
"description": "URN of the learner group (if grouped by group)",
"example": "urn:li:learnerGroup:456"
},
"learnerUrn": {
"type": "string",
"description": "URN of the individual learner (if grouped by individual)",
"example": "urn:li:learner:789"
},
"contentUrn": {
"type": "string",
"description": "URN of the content (if grouped by content)",
"example": "urn:li:learningCourse:123"
}
}
}