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