-
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 Stripe: New Streams - Prices (#26127)
* Initial commit * Update metadata.yaml * Fix md file * resolve comments * fix: format python files with flake * fix: change created type in price schema to integer * update expected_records of prices stream --------- Co-authored-by: sajarin <sajarindider@gmail.com>
- Loading branch information
1 parent
d3bb55b
commit 236c407
Showing
11 changed files
with
202 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
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
87 changes: 87 additions & 0 deletions
87
airbyte-integrations/connectors/source-stripe/source_stripe/schemas/prices.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,87 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Prices Schema", | ||
"additionalProperties": true, | ||
"type": ["null", "object"], | ||
"properties": { | ||
"id": { | ||
"type": ["null", "string"] | ||
}, | ||
"object": { | ||
"type": ["null", "string"] | ||
}, | ||
"active": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"billing_scheme": { | ||
"type": ["null", "string"] | ||
}, | ||
"created": { | ||
"type": ["null", "integer"] | ||
}, | ||
"currency": { | ||
"type": ["null", "string"] | ||
}, | ||
"custom_unit_amount": { | ||
"type": ["null", "string"] | ||
}, | ||
"livemode": { | ||
"type": ["null", "boolean"] | ||
}, | ||
"lookup_key": { | ||
"type": ["null", "string"] | ||
}, | ||
"metadata": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"nickname": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"nickname": { | ||
"type": ["null", "string"] | ||
}, | ||
"product": { | ||
"type": ["null", "string"] | ||
}, | ||
"recurring": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"aggregate_usage": { | ||
"type": ["null", "string"] | ||
}, | ||
"interval": { | ||
"type": ["null", "string"] | ||
}, | ||
"interval_count": { | ||
"type": ["null", "number"] | ||
}, | ||
"trial_period_days": { | ||
"type": ["null", "string"] | ||
}, | ||
"usage_type": { | ||
"type": ["null", "string"] | ||
} | ||
} | ||
}, | ||
"tax_behavior": { | ||
"type": ["null", "string"] | ||
}, | ||
"tiers_mode": { | ||
"type": ["null", "string"] | ||
}, | ||
"transform_quantity": { | ||
"type": ["null", "string"] | ||
}, | ||
"type": { | ||
"type": ["null", "string"] | ||
}, | ||
"unit_amount": { | ||
"type": ["null", "number"] | ||
}, | ||
"unit_amount_decimal": { | ||
"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
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