Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[source-linkedin-ads] Add schema precisions on Lead Forms and Lead Form responses streams #53611

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 137ece28-5434-455c-8f34-69dc3782f451
dockerImageTag: 5.2.0
dockerImageTag: 5.2.1
dockerRepository: airbyte/source-linkedin-ads
documentationUrl: https://docs.airbyte.com/integrations/sources/linkedin-ads
githubIssueLabel: source-linkedin-ads
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "5.2.0"
version = "5.2.1"
name = "source-linkedin-ads"
description = "Source implementation for Linkedin Ads."
authors = [ "Airbyte <[email protected]>",]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2686,6 +2686,15 @@ schemas:
type:
- "null"
- object
properties:
name:
type:
- "null"
- string
value:
type:
- "null"
- string
reviewInfo:
description: |
Latest information about the content review of the Lead Form.
Expand Down Expand Up @@ -2755,6 +2764,16 @@ schemas:
type:
- "null"
- object
properties:
sponsoredLeadMetadata:
type:
- "null"
- object
properties:
campaign:
type:
- "null"
- string
leadMetadataInfo:
description: Record containing a subset of fields resolved on demand from the lead metadata references (e.g. campaign name , campaign type). If there is no value, an empty object is returned.
type:
Expand All @@ -2765,6 +2784,11 @@ schemas:
type:
- "null"
- object
properties:
associatedCreative:
type:
- "null"
- string
associatedEntityInfo:
description: Record containing useful fields (creative status, ugc reference etc.) resolved on demand from the associated entity object. If there is no value, an empty object is returned.
type:
Expand All @@ -2785,6 +2809,51 @@ schemas:
type:
- "null"
- object
properties:
answers:
type:
- "null"
- array
items:
type:
- "null"
- object
properties:
questionId:
type:
- "null"
- integer
answerDetails:
type:
- "null"
- object
properties:
textQuestionAnswer:
type:
- "null"
- object
properties:
answer:
type:
- "null"
- string
multipleChoiceAnswer:
type:
- "null"
- object
properties:
options:
type:
- "null"
- array
items:
type:
- "null"
- integer
consentResponses:
type:
- "null"
- array
testLead:
description: Whether this is a test lead created for testing purposes.
type:
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/linkedin-ads.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ No workaround has been identified to manage this issue as of 2025, February.

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------|
| 5.2.1 | 2025-02-10 | [53611](https://github.com/airbytehq/airbyte/pull/53611) | Add schema precisions for `Lead forms` and `Lead form responses` streams |
| 5.2.0 | 2025-02-04 | [52047](https://github.com/airbytehq/airbyte/pull/52047) | Add `Lead forms` and `Lead form responses` new streams - See Limits & considerations |
| 5.1.6 | 2025-02-02 | [49458](https://github.com/airbytehq/airbyte/pull/49458) | Update Linkedin Ads API version to 202410 for creatives stream |
| 5.1.5 | 2025-02-01 | [52791](https://github.com/airbytehq/airbyte/pull/52791) | Update dependencies |
Expand Down
Loading