From 5d0f87f0b87b85851fe511900d04d190f26d8ae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9lanie=20Vistry?= Date: Wed, 15 Jul 2026 16:53:59 +0200 Subject: [PATCH] Added ad_extension_details_repot --- .../bing-ads/v2/bing-ads-v2-tables.yml | 18 +++++++++ .../v2/json/ad_extension_detail_report.json | 39 +++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 _data/taps/schemas/bing-ads/v2/json/ad_extension_detail_report.json diff --git a/_data/taps/schemas/bing-ads/v2/bing-ads-v2-tables.yml b/_data/taps/schemas/bing-ads/v2/bing-ads-v2-tables.yml index fc8ecd729..abce4435e 100644 --- a/_data/taps/schemas/bing-ads/v2/bing-ads-v2-tables.yml +++ b/_data/taps/schemas/bing-ads/v2/bing-ads-v2-tables.yml @@ -205,6 +205,24 @@ tables: - _sdc_report_datetime - TimePeriod replication-key: TimePeriod +- name: ad_extension_detail_report + description: 'The `{{ table.name }}` table contains info about ad extension items. + + + [This is a **Report** table](#replication). See the **Replication** section for + information on how data is replicated and loaded for this table. + + ' + links: + doc-link: https://docs.microsoft.com/en-us/advertising/reporting-service/adextensiondetailreportfilter?view=bingads-13 + table-details: + replication-method: Key-based Incremental + loading-behavior: Append-Only + primary-keys: + - AccountId + - _sdc_report_datetime + - TimePeriod + replication-key: TimePeriod - name: age_gender_audience_report description: 'The `{{ table.name }}` table contains info about the age and gender demographics of people interacting with your campaigns and ad groups. diff --git a/_data/taps/schemas/bing-ads/v2/json/ad_extension_detail_report.json b/_data/taps/schemas/bing-ads/v2/json/ad_extension_detail_report.json new file mode 100644 index 000000000..915720776 --- /dev/null +++ b/_data/taps/schemas/bing-ads/v2/json/ad_extension_detail_report.json @@ -0,0 +1,39 @@ +{ + "properties": { + "AccountId": { + "type": [ + "integer" + ] + }, + "AdExtensionId": { + "type": [ + "integer" + ] + }, + "AdExtensionType": { + "type": [ + "string" + ] + }, + "AdExtensionTypeId": { + "type": [ + "string" + ] + }, + "AdExtensionPropertyValue": { + "type": [ + "string" + ] + }, + "TimePeriod": { + "type": [ + "date" + ] + }, + "_sdc_report_datetime": { + "type": [ + "date-time" + ] + } + } +}