LinkedIn · Schema

Contract

Contract from LinkedIn API

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
View JSON Schema on GitHub

JSON Schema

linkedin-sales-navigator-contract-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-sales-navigator-contract-schema.json",
  "title": "Contract",
  "description": "Contract from LinkedIn API",
  "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"
  ]
}