Paging 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-marketing-audience-paging-schema.json", "title": "Paging", "description": "Paging from LinkedIn API", "type": "object", "properties": { "start": { "type": "integer", "description": "Starting index", "example": 0 }, "count": { "type": "integer", "description": "Number of results returned", "example": 10 }, "total": { "type": "integer", "description": "Total number of results", "example": 2 }, "links": { "type": "array", "items": { "type": "string" } } } }