{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-sales-navigator-sales-analytics-export-job-request-schema.json", "title": "SalesAnalyticsExportJobRequest", "description": "SalesAnalyticsExportJobRequest from LinkedIn API", "type": "object", "properties": { "contract": { "type": "string", "description": "Sales Navigator contract URN", "example": "urn:li:salesContract:12345" }, "startAt": { "type": "integer", "description": "Start date of the exported data (milliseconds since epoch)", "example": 1638316800000 }, "endAt": { "type": "integer", "description": "End date of the exported data (milliseconds since epoch)", "example": 1640908800000 } }, "required": [ "contract", "startAt", "endAt" ] }