LinkedIn · JSON Structure

Linkedin Regulatory Ads Transparency Advertiser Transparency Response Structure

AdvertiserTransparencyResponse from LinkedIn API

Type: object Properties: 7 Required: 2
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

AdvertiserTransparencyResponse is a JSON Structure definition published by LinkedIn, describing 7 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sponsoredAccountUrn month totalSpend impressions currency advertiserName country

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-structure/linkedin-regulatory-ads-transparency-advertiser-transparency-response-structure.json",
  "name": "AdvertiserTransparencyResponse",
  "description": "AdvertiserTransparencyResponse from LinkedIn API",
  "type": "object",
  "properties": {
    "sponsoredAccountUrn": {
      "type": "string",
      "description": "The URN of the sponsored account",
      "example": "urn:li:sponsoredAccount:123456789"
    },
    "month": {
      "type": "int32",
      "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": "int32",
      "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"
  ]
}