{ "$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" ] }