display_ads (view)
Data source:
simonw/russian-ira-facebook-ads-datasette
2 rows
where an ad_target was and_must_also_match:interests:Support Our Veterans sorted by spend_usd
This data as JSON, CSV (advanced)
id
|
img
|
targeting
|
impressions
|
clicks
|
url
|
text
|
spend_usd ▼
|
spend_amount
|
spend_currency
|
created
|
ended
|
2780 |
 |
location_living_in:United States, excluded_connections:Exclude people who like Veterans Come First, age:30 - 65+, language:English (UK), language:English (US), placements:Instagram Feed, people_who_match:industry:Veterans (US), people_who_match:industry:Politics: Likely to engage with political content (conservative), and_must_also_match:interests:Iraq War Veterans, and_must_also_match:interests:Veterans of Foreign Wars, and_must_also_match:interests:Support Our Veterans, and_must_also_match:interests:Veterans benefits support, and_must_also_match:interests:Disabled American Veterans, and_must_also_match:interests:Veterans Advantage, and_must_also_match:interests:Dysfunctional Veterans |
609 |
4 |
https://www.facebook.comNeterans-Come-First-1757336424535312/ |
Forever grateful!
|
4.237760000000001 |
264.86 |
RUB |
2017-05-03T07:24:41-07:00 |
|
2779 |
 |
location_living_in:United States, excluded_connections:Exclude people who like Veterans Come First, age:30 - 65+, language:English (UK), language:English (US), placements:News Feed on desktop computers, placements:News Feed on mobile devices, placements:Right column on desktop computers, people_who_match:industry:Veterans (US), people_who_match:industry:Politics: Likely to engage with political content (conservative), and_must_also_match:interests:Iraq War Veterans, and_must_also_match:interests:Veterans of Foreign Wars, and_must_also_match:interests:Support Our Veterans, and_must_also_match:interests:Veterans benefits support, and_must_also_match:interests:Disabled American Veterans, and_must_also_match:interests:Veterans Advantage, and_must_also_match:interests:Dysfunctional Veterans |
112737 |
15163 |
https://www.facebook.comNeterans-Come-First-1757336424535312/ |
They fought for our freedom, now its our time to fight for their rights!
|
1163.76224 |
72735.14 |
RUB |
2017-04-06T05:56:18-07:00 |
|
CREATE VIEW display_ads AS
select ads.id,
case when image is not null then
json_object("img_src", "https://raw.githubusercontent.com/umd-mith/irads/master/site/" || image, "width", 200)
else
"no image"
end as img,
json_group_array(
json_object(
"label", targets.name,
"href", "/russian-ads/display_ads?_target="
|| urllib_quote_plus(targets.id)
)
) as targeting,
ads.impressions, ads.clicks, ads.url, ads.text,
cast(case
when ads.spend_currency == "RUB" then ads.spend_amount * 0.016
else ads.spend_amount
end as float) as spend_usd,
ads.spend_amount, ads.spend_currency,
ads.created, ads.ended
from ads
join ad_targets on ads.id = ad_targets.ad_id
join targets on ad_targets.target_id = targets.id
group by ads.id
order by ads.id