Skip to content
Draft
Show file tree
Hide file tree
Changes from 2 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
@@ -0,0 +1,10 @@
FROM airbyte/source-facebook-marketing:latest

COPY . ./airbyte/integration_code
RUN pip install ./airbyte/integration_code

COPY source_facebook_marketing ./source_facebook_marketing

# The entrypoint and default env vars are already set in the base image
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,32 @@
}
}
},
"learning_stage_info": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "string"]
},
"learning_stage_info": {
"type": ["null", "object"],
"properties": {
"attribution_windows": {
"type": ["null", "array"],
"items": ["null", "string"]
},
"conversions": {
"type": ["null", "integer"]
},
"last_sig_edit_ts": {
"type": ["null", "integer"]
},
"status": {
"type": ["null", "string"]
}
}
}
}
},
"adlabels": {
"type": ["null", "array"],
"items": {
Expand Down