forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Source Facebook: add the "videos" stream. (airbytehq#7855)
* Source Facebook: add the "videos" stream. * bump the version * run seed and update doc Co-authored-by: Marcos Marx <[email protected]>
- Loading branch information
1 parent
bec3b3b
commit aac54da
Showing
8 changed files
with
129 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
111 changes: 111 additions & 0 deletions
111
...ations/connectors/source-facebook-marketing/source_facebook_marketing/schemas/videos.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
{ | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"ad_breaks": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": "integer" | ||
} | ||
}, | ||
"backdated_time": { | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"backdated_time_granularity": { | ||
"type": ["null", "string"] | ||
}, | ||
"content_category": { | ||
"type": ["null", "string"] | ||
}, | ||
"content_tags": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"created_time": { | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"custom_labels": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"description": { | ||
"type": ["null", "string"] | ||
}, | ||
"embed_html": { | ||
"type": ["null", "string"] | ||
}, | ||
"embeddable": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"format": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"filter": "string", | ||
"embed_html": "string", | ||
"width": "integer", | ||
"height": "integer", | ||
"picture": "string" | ||
} | ||
}, | ||
"icon": { | ||
"type": ["null", "string"] | ||
}, | ||
"is_crosspost_video": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"is_crossposting_eligible": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"is_episode": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"is_instagram_eligible": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"length": { | ||
"type": "number" | ||
}, | ||
"live_status": { | ||
"type": "string" | ||
}, | ||
"permalink_url": { | ||
"type": ["null", "string"] | ||
}, | ||
"post_views": { | ||
"type": ["null", "integer"] | ||
}, | ||
"premiere_living_room_status": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"published": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"scheduled_publish_time": { | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"source": { | ||
"type": ["null", "string"] | ||
}, | ||
"title": { | ||
"type": ["null", "string"] | ||
}, | ||
"universal_video_id": { | ||
"type": ["null", "string"] | ||
}, | ||
"updated_time": { | ||
"type": "string", | ||
"format": "date-time" | ||
}, | ||
"views": { | ||
"type": ["null", "integer"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters