LinkedIn · Schema

AdvertiserTransparencyResponse

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
sponsoredAccountUrn string The URN of the sponsored account
month integer The month of the transparency data
totalSpend number Total advertising spend for the month
impressions integer Total impressions delivered
currency string Currency code for spend amounts
advertiserName string Name of the advertiser
country string Country of the advertiser
View JSON Schema on GitHub

JSON Schema

linkedin-advertisertransparencyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdvertiserTransparencyResponse",
  "title": "AdvertiserTransparencyResponse",
  "type": "object",
  "properties": {
    "sponsoredAccountUrn": {
      "type": "string",
      "description": "The URN of the sponsored account",
      "example": "urn:li:sponsoredAccount:123456789"
    },
    "month": {
      "type": "integer",
      "description": "The month of the transparency data",
      "example": 202312
    },
    "totalSpend": {
      "type": "number",
      "format": "double",
      "description": "Total advertising spend for the month",
      "example": 15000.5
    },
    "impressions": {
      "type": "integer",
      "description": "Total impressions delivered",
      "example": 500000
    },
    "currency": {
      "type": "string",
      "description": "Currency code for spend amounts",
      "example": "USD"
    },
    "advertiserName": {
      "type": "string",
      "description": "Name of the advertiser",
      "example": "Acme Corporation"
    },
    "country": {
      "type": "string",
      "description": "Country of the advertiser",
      "example": "United States"
    }
  },
  "required": [
    "sponsoredAccountUrn",
    "month"
  ]
}