-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tdl-18267
- Loading branch information
Showing
10 changed files
with
544 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include LICENSE | ||
include tap_hubspot/schemas/*.json | ||
include tap_hubspot/schemas/shared/*.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"type": [ | ||
"null", | ||
"object" | ||
], | ||
"properties": { | ||
"results": { | ||
"type": [ | ||
"null", | ||
"array" | ||
], | ||
"items": { | ||
"type": [ | ||
"null", | ||
"object" | ||
], | ||
"properties": { | ||
"id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"type": { | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"createdAt": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"updatedAt": { | ||
"type": ["null", "string"], | ||
"format": "date-time" | ||
}, | ||
"archived": { | ||
"type": [ | ||
"null", | ||
"boolean" | ||
] | ||
}, | ||
"associations": { | ||
"type": [ | ||
"null", | ||
"object" | ||
], | ||
"properties": { | ||
"emails": {"$ref": "associations_schema.json"}, | ||
"meetings": {"$ref": "associations_schema.json"}, | ||
"notes": {"$ref": "associations_schema.json"}, | ||
"tasks": {"$ref": "associations_schema.json"}, | ||
"calls": {"$ref": "associations_schema.json"}, | ||
"conversation_session": {"$ref": "associations_schema.json"}, | ||
"companies": {"$ref": "associations_schema.json"}, | ||
"contacts": {"$ref": "associations_schema.json"}, | ||
"deals": {"$ref": "associations_schema.json"}, | ||
"products": {"$ref": "associations_schema.json"}, | ||
"tickets": {"$ref": "associations_schema.json"} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.