LinkedIn · Schema
AdvertiserTransparencyResponse
AdvertiserTransparencyResponse from LinkedIn API
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-regulatory-ads-transparency-advertiser-transparency-response-schema.json",
"title": "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": "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"
]
}