LinkedIn · Schema
Contract
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| contract | string | The URN of this Sales Navigator contract |
| name | string | The name of this contract, appropriate for display to an end-user |
| description | string | Additional information about the contract |
| hasReportingAccess | boolean | Indicates whether the user can export data for this contract |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Contract",
"title": "Contract",
"type": "object",
"properties": {
"contract": {
"type": "string",
"description": "The URN of this Sales Navigator contract",
"example": "urn:li:salesContract:12345"
},
"name": {
"type": "string",
"description": "The name of this contract, appropriate for display to an end-user",
"example": "Enterprise Sales Contract"
},
"description": {
"type": "string",
"nullable": true,
"description": "Additional information about the contract",
"example": "Annual enterprise subscription for sales team"
},
"hasReportingAccess": {
"type": "boolean",
"description": "Indicates whether the user can export data for this contract",
"example": true
}
},
"required": [
"contract",
"name",
"hasReportingAccess"
]
}