-
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.
* Add ReviewsStream to Klaviyo integration This commit introduces a new stream, ReviewsStream, to the Klaviyo integration. The ReviewsStream is defined with its own name, path, primary keys, and replication key, allowing for the extraction of review data from the Klaviyo API. This enhances the data extraction capabilities of the tap. * Enhance Klaviyo integration with new features and updates - Updated the HTTP headers revision date in KlaviyoStream to "2024-10-15". - Introduced methods for loading schemas and filling missing properties in KlaviyoStream, improving schema handling. - Added a new ReviewsStream with updated replication key and URL parameterization for pagination. - Created a new JSON schema file for reviews, defining the structure and required properties for review data. These changes improve the functionality and robustness of the Klaviyo integration, enabling better data extraction and schema management.
- Loading branch information
1 parent
4849ecb
commit 4cbfd38
Showing
4 changed files
with
315 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,256 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"review" | ||
] | ||
}, | ||
"id": { | ||
"type": "string", | ||
"description": "The ID of the review" | ||
}, | ||
"attributes": { | ||
"type": "object", | ||
"properties": { | ||
"email": { | ||
"type": "string", | ||
"description": "The email of the author of this review" | ||
}, | ||
"status": { | ||
"type": "string", | ||
"enum": [ | ||
"featured", | ||
"pending", | ||
"published", | ||
"rejected", | ||
"unpublished" | ||
], | ||
"description": "The status of this review" | ||
}, | ||
"verified": { | ||
"type": "boolean", | ||
"description": "The verification status of this review (aka whether or not we have confirmation that the customer bought the product)" | ||
}, | ||
"review_type": { | ||
"type": "string", | ||
"enum": [ | ||
"review", | ||
"question", | ||
"rating" | ||
], | ||
"description": "The type of this review" | ||
}, | ||
"created": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "The datetime when this review was created" | ||
}, | ||
"updated": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "The datetime when this review was updated" | ||
}, | ||
"images": { | ||
"type": "array", | ||
"items": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"description": "The list of images submitted with this review (represented as a list of urls). If there are no images, this field will be an empty list." | ||
}, | ||
"product": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"description": "The product associated with this review", | ||
"properties": { | ||
"url": { | ||
"type": "string", | ||
"description": "The URL of the product" | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the product" | ||
}, | ||
"image_url": { | ||
"type": "string", | ||
"description": "The URL of the product image" | ||
} | ||
} | ||
}, | ||
"rating": { | ||
"type": [ | ||
"integer", | ||
"null" | ||
], | ||
"description": "The rating of this review on a scale from 1-5" | ||
}, | ||
"author": { | ||
"type": [ | ||
"string", | ||
"null" | ||
], | ||
"description": "The author of this review" | ||
}, | ||
"content": { | ||
"type": [ | ||
"string", | ||
"null" | ||
], | ||
"description": "The content of this review" | ||
}, | ||
"title": { | ||
"type": [ | ||
"string", | ||
"null" | ||
], | ||
"description": "The title of this review" | ||
}, | ||
"smart_quote": { | ||
"type": [ | ||
"string", | ||
"null" | ||
], | ||
"description": "A quote from this review that summarizes the content" | ||
}, | ||
"public_reply": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"properties": { | ||
"content": { | ||
"type": "string", | ||
"description": "The content of the public reply" | ||
}, | ||
"author": { | ||
"type": "string", | ||
"description": "The author of the public reply" | ||
}, | ||
"updated": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "The datetime when this public reply was updated" | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"email", | ||
"verified", | ||
"review_type", | ||
"created", | ||
"updated", | ||
"images" | ||
] | ||
}, | ||
"links": { | ||
"type": "object", | ||
"properties": { | ||
"self": { | ||
"type": "string", | ||
"format": "uri", | ||
"description": "Self link" | ||
} | ||
}, | ||
"required": [ | ||
"self" | ||
] | ||
}, | ||
"relationships": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"properties": { | ||
"events": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"properties": { | ||
"data": { | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string", | ||
"enum": [ | ||
"event" | ||
] | ||
}, | ||
"id": { | ||
"type": "string", | ||
"description": "Related Events" | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"id" | ||
] | ||
} | ||
}, | ||
"links": { | ||
"type": "object", | ||
"properties": { | ||
"self": { | ||
"type": "string", | ||
"format": "uri", | ||
"description": "Self link" | ||
}, | ||
"related": { | ||
"type": "string", | ||
"format": "uri", | ||
"description": "Related link" | ||
} | ||
}, | ||
"required": [ | ||
"self", | ||
"related" | ||
] | ||
} | ||
} | ||
}, | ||
"item": { | ||
"type": "object", | ||
"properties": { | ||
"links": { | ||
"type": "object", | ||
"properties": { | ||
"self": { | ||
"type": "string", | ||
"format": "uri", | ||
"description": "Self link" | ||
}, | ||
"related": { | ||
"type": "string", | ||
"format": "uri", | ||
"description": "Related link" | ||
} | ||
}, | ||
"required": [ | ||
"self", | ||
"related" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"type", | ||
"id", | ||
"attributes", | ||
"links" | ||
] | ||
} |
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