{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SalesAnalyticsExportJobRequest", "title": "SalesAnalyticsExportJobRequest", "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" ] }