-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Source Cart.com: add order_items stream (#5582)
* add order_items stream * run format * add order_items in integration_tests
- Loading branch information
1 parent
9dd05d4
commit 93032a8
Showing
9 changed files
with
119 additions
and
7 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
86 changes: 86 additions & 0 deletions
86
airbyte-integrations/connectors/source-cart/source_cart/schemas/order_items.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,86 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "integer" | ||
}, | ||
"order_id": { | ||
"type": ["integer", "null"] | ||
}, | ||
"product_id": { | ||
"type": ["integer", "null"] | ||
}, | ||
"item_number": { | ||
"type": ["string", "null"] | ||
}, | ||
"item_name": { | ||
"type": ["string", "null"] | ||
}, | ||
"price": { | ||
"type": ["number", "null"] | ||
}, | ||
"cost": { | ||
"type": ["number", "null"] | ||
}, | ||
"quantity": { | ||
"type": ["integer", "null"] | ||
}, | ||
"is_discount_item": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"weight": { | ||
"type": ["number", "null"] | ||
}, | ||
"is_taxable": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"weigh_unit": { | ||
"type": ["string", "null"] | ||
}, | ||
"parent_order_item_id": { | ||
"type": ["integer", "null"] | ||
}, | ||
"is_quantity_bound_to_parent": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"updated_at": { | ||
"type": ["string", "null"] | ||
}, | ||
"created_at": { | ||
"type": ["string", "null"] | ||
}, | ||
"height": { | ||
"type": ["number", "null"] | ||
}, | ||
"length": { | ||
"type": ["number", "null"] | ||
}, | ||
"width": { | ||
"type": ["number", "null"] | ||
}, | ||
"size_unit": { | ||
"type": ["string", "null"] | ||
}, | ||
"admin_comments": { | ||
"type": ["string", "null"] | ||
}, | ||
"do_not_discount": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"line_item_note": { | ||
"type": ["string", "null"] | ||
}, | ||
"gift_message": { | ||
"type": ["string", "null"] | ||
}, | ||
"delivery_date": { | ||
"type": ["string", "null"] | ||
}, | ||
"is_subscription_product": { | ||
"type": ["boolean", "null"] | ||
}, | ||
"warehouse_id": { | ||
"type": ["integer", "null"] | ||
} | ||
} | ||
} |
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