LinkedIn · Schema

Paging

Paging from LinkedIn API

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
total integer Total number of results
count integer Number of results in this response
start integer Starting index
links array
View JSON Schema on GitHub

JSON Schema

linkedin-learning-activity-reports-paging-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-learning-activity-reports-paging-schema.json",
  "title": "Paging",
  "description": "Paging from LinkedIn API",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of results",
      "example": 1
    },
    "count": {
      "type": "integer",
      "description": "Number of results in this response",
      "example": 1
    },
    "start": {
      "type": "integer",
      "description": "Starting index",
      "example": 0
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PagingLink"
      }
    }
  }
}