Skip to content

Commit 95763fb

Browse files
committed
Add spotlight property to creatives schema
Add a new 'spotlight' property to tap_linkedin_ads/schemas/creatives.json. The field accepts null or an object with a nullable 'landing_page' string and disallows additional properties, enabling validation for spotlight creatives.
1 parent 93bda4b commit 95763fb

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

tap_linkedin_ads/schemas/creatives.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,21 @@
6868
]
6969
}
7070
}
71+
},
72+
"spotlight": {
73+
"type": [
74+
"null",
75+
"object"
76+
],
77+
"additionalProperties": false,
78+
"properties": {
79+
"landing_page": {
80+
"type": [
81+
"null",
82+
"string"
83+
]
84+
}
85+
}
7186
}
7287
}
7388
},

0 commit comments

Comments
 (0)