-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source Hubspot: adding form_submissions stream (#8011)
* Source Hubspot: adding form_submissions stream * Adding form_id to form_submissions output * Adding form_id to form_submissions output and schema * Removing field deletions and id generation * Adding new line to form_submissions.json * Fixing form_submissions.json schema * add form_submissions as empty_stream to run ci airbyte * add forms_submissions to empty_stream * bump connector seed version Co-authored-by: Marcos Marx <marcosmarxm@gmail.com>
- Loading branch information
1 parent
5f4a5bb
commit 9cc2560
Showing
12 changed files
with
99 additions
and
6 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
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
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
35 changes: 35 additions & 0 deletions
35
airbyte-integrations/connectors/source-hubspot/source_hubspot/schemas/form_submissions.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,35 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"type": ["null", "object"], | ||
"properties": { | ||
"submittedAt": { | ||
"type": ["null", "integer"] | ||
}, | ||
"updatedAt": { | ||
"type": ["null", "integer"] | ||
}, | ||
"values": { | ||
"type": ["null", "array"], | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": ["null", "string"] | ||
}, | ||
"value": { | ||
"type": ["null", "string"] | ||
}, | ||
"objectTypeId": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} | ||
}, | ||
"pageUrl": { | ||
"type": ["null", "string"] | ||
}, | ||
"formId": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
} |
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