From 14d74d76f8070a879fdf4676751b4da6f1dd5e46 Mon Sep 17 00:00:00 2001 From: Peter Marton Date: Thu, 30 Jan 2025 10:25:02 -0800 Subject: [PATCH] chore(api): generate cloud --- api/client/go/client.gen.go | 1828 ++++++++++------- api/client/javascript/src/client/schemas.d.ts | 229 ++- api/openapi.cloud.yaml | 1176 ++++++----- 3 files changed, 1941 insertions(+), 1292 deletions(-) diff --git a/api/client/go/client.gen.go b/api/client/go/client.gen.go index e7f177143..51e45b1f2 100644 --- a/api/client/go/client.gen.go +++ b/api/client/go/client.gen.go @@ -87,6 +87,49 @@ const ( SendInvoice CollectionMethod = "send_invoice" ) +// Defines values for CreateCheckoutSessionTaxIdCollectionRequired. +const ( + CreateCheckoutSessionTaxIdCollectionRequiredIfSupported CreateCheckoutSessionTaxIdCollectionRequired = "if_supported" + CreateCheckoutSessionTaxIdCollectionRequiredNever CreateCheckoutSessionTaxIdCollectionRequired = "never" +) + +// Defines values for CreateStripeCheckoutSessionBillingAddressCollection. +const ( + CreateStripeCheckoutSessionBillingAddressCollectionAuto CreateStripeCheckoutSessionBillingAddressCollection = "auto" + CreateStripeCheckoutSessionBillingAddressCollectionRequired CreateStripeCheckoutSessionBillingAddressCollection = "required" +) + +// Defines values for CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition. +const ( + CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPositionAuto CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition = "auto" + CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPositionHidden CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition = "hidden" +) + +// Defines values for CreateStripeCheckoutSessionConsentCollectionPromotions. +const ( + CreateStripeCheckoutSessionConsentCollectionPromotionsAuto CreateStripeCheckoutSessionConsentCollectionPromotions = "auto" + CreateStripeCheckoutSessionConsentCollectionPromotionsNone CreateStripeCheckoutSessionConsentCollectionPromotions = "none" +) + +// Defines values for CreateStripeCheckoutSessionConsentCollectionTermsOfService. +const ( + CreateStripeCheckoutSessionConsentCollectionTermsOfServiceNone CreateStripeCheckoutSessionConsentCollectionTermsOfService = "none" + CreateStripeCheckoutSessionConsentCollectionTermsOfServiceRequired CreateStripeCheckoutSessionConsentCollectionTermsOfService = "required" +) + +// Defines values for CreateStripeCheckoutSessionCustomerUpdateBehavior. +const ( + CreateStripeCheckoutSessionCustomerUpdateBehaviorAuto CreateStripeCheckoutSessionCustomerUpdateBehavior = "auto" + CreateStripeCheckoutSessionCustomerUpdateBehaviorNever CreateStripeCheckoutSessionCustomerUpdateBehavior = "never" +) + +// Defines values for CreateStripeCheckoutSessionRedirectOnCompletion. +const ( + Always CreateStripeCheckoutSessionRedirectOnCompletion = "always" + IfRequired CreateStripeCheckoutSessionRedirectOnCompletion = "if_required" + Never CreateStripeCheckoutSessionRedirectOnCompletion = "never" +) + // Defines values for CustomerOrderBy. const ( CustomerOrderByCreatedAt CustomerOrderBy = "createdAt" @@ -1079,12 +1122,82 @@ type ConflictProblemResponse = UnexpectedProblemResponse // Custom two-letter country codes are also supported for convenience. type CountryCode = string +// CreateCheckoutSessionTaxIdCollection Create Stripe checkout session tax ID collection. +type CreateCheckoutSessionTaxIdCollection struct { + // Enabled Enable tax ID collection during checkout. Defaults to false. + Enabled bool `json:"enabled"` + + // Required Describes whether a tax ID is required during checkout. Defaults to never. + Required *CreateCheckoutSessionTaxIdCollectionRequired `json:"required,omitempty"` +} + +// CreateCheckoutSessionTaxIdCollectionRequired Create Stripe checkout session tax ID collection required. +type CreateCheckoutSessionTaxIdCollectionRequired string + +// CreateStripeCheckoutSessionBillingAddressCollection Specify whether Checkout should collect the customer’s billing address. +type CreateStripeCheckoutSessionBillingAddressCollection string + +// CreateStripeCheckoutSessionConsentCollection Configure fields for the Checkout Session to gather active consent from customers. +type CreateStripeCheckoutSessionConsentCollection struct { + // PaymentMethodReuseAgreement Determines the position and visibility of the payment method reuse agreement in the UI. + // When set to auto, Stripe’s defaults will be used. When set to hidden, the payment method reuse agreement text will always be hidden in the UI. + PaymentMethodReuseAgreement *CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement `json:"paymentMethodReuseAgreement,omitempty"` + + // Promotions If set to auto, enables the collection of customer consent for promotional communications. + // The Checkout Session will determine whether to display an option to opt into promotional + // communication from the merchant depending on the customer’s locale. Only available to US merchants. + Promotions *CreateStripeCheckoutSessionConsentCollectionPromotions `json:"promotions,omitempty"` + + // TermsOfService If set to required, it requires customers to check a terms of service checkbox before being able to pay. + // There must be a valid terms of service URL set in your Stripe Dashboard settings. + // https://dashboard.stripe.com/settings/public + TermsOfService *CreateStripeCheckoutSessionConsentCollectionTermsOfService `json:"termsOfService,omitempty"` +} + +// CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement Create Stripe checkout session payment method reuse agreement. +type CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement struct { + // Position Create Stripe checkout session consent collection agreement position. + Position *CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition `json:"position,omitempty"` +} + +// CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition Create Stripe checkout session consent collection agreement position. +type CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition string + +// CreateStripeCheckoutSessionConsentCollectionPromotions Create Stripe checkout session consent collection promotions. +type CreateStripeCheckoutSessionConsentCollectionPromotions string + +// CreateStripeCheckoutSessionConsentCollectionTermsOfService Create Stripe checkout session consent collection terms of service. +type CreateStripeCheckoutSessionConsentCollectionTermsOfService string + +// CreateStripeCheckoutSessionCustomerUpdate Controls what fields on Customer can be updated by the Checkout Session. +type CreateStripeCheckoutSessionCustomerUpdate struct { + // Address Describes whether Checkout saves the billing address onto customer.address. + // To always collect a full billing address, use billing_address_collection. + // Defaults to never. + Address *CreateStripeCheckoutSessionCustomerUpdateBehavior `json:"address,omitempty"` + + // Name Describes whether Checkout saves the name onto customer.name. + // Defaults to never. + Name *CreateStripeCheckoutSessionCustomerUpdateBehavior `json:"name,omitempty"` + + // Shipping Describes whether Checkout saves shipping information onto customer.shipping. + // To collect shipping information, use shipping_address_collection. + // Defaults to never. + Shipping *CreateStripeCheckoutSessionCustomerUpdateBehavior `json:"shipping,omitempty"` +} + +// CreateStripeCheckoutSessionCustomerUpdateBehavior Create Stripe checkout session customer update behavior. +type CreateStripeCheckoutSessionCustomerUpdateBehavior string + +// CreateStripeCheckoutSessionRedirectOnCompletion Create Stripe checkout session redirect on completion. +type CreateStripeCheckoutSessionRedirectOnCompletion string + // CreateStripeCheckoutSessionRequest Create Stripe checkout session request. type CreateStripeCheckoutSessionRequest struct { // AppId If not provided, the default Stripe app is used if any. AppId *string `json:"appId,omitempty"` - // Customer Provide a customer ID to use an existing OpenMeter customer. + // Customer Provide a customer ID or key to use an existing OpenMeter customer. // or provide a customer object to create a new customer. Customer CreateStripeCheckoutSessionRequest_Customer `json:"customer"` @@ -1097,29 +1210,67 @@ type CreateStripeCheckoutSessionRequest struct { StripeCustomerId *string `json:"stripeCustomerId,omitempty"` } -// CreateStripeCheckoutSessionRequest_Customer Provide a customer ID to use an existing OpenMeter customer. +// CreateStripeCheckoutSessionRequest_Customer Provide a customer ID or key to use an existing OpenMeter customer. // or provide a customer object to create a new customer. type CreateStripeCheckoutSessionRequest_Customer struct { union json.RawMessage } // CreateStripeCheckoutSessionRequestOptions Create Stripe checkout session options +// See https://docs.stripe.com/api/checkout/sessions/create type CreateStripeCheckoutSessionRequestOptions struct { - CancelURL *string `json:"cancelURL,omitempty"` + // BillingAddressCollection Specify whether Checkout should collect the customer’s billing address. Defaults to auto. + BillingAddressCollection *CreateStripeCheckoutSessionBillingAddressCollection `json:"billingAddressCollection,omitempty"` + + // CancelURL If set, Checkout displays a back button and customers will be directed to this URL if they decide to cancel payment and return to your website. + // This parameter is not allowed if ui_mode is embedded. + CancelURL *string `json:"cancelURL,omitempty"` + + // ClientReferenceID A unique string to reference the Checkout Session. This can be a customer ID, a cart ID, or similar, and can be used to reconcile the session with your internal systems. ClientReferenceID *string `json:"clientReferenceID,omitempty"` - // Currency Three-letter [ISO4217](https://www.iso.org/iso-4217-currency-codes.html) currency code. - // Custom three-letter currency codes are also supported for convenience. + // ConsentCollection Configure fields for the Checkout Session to gather active consent from customers. + ConsentCollection *CreateStripeCheckoutSessionConsentCollection `json:"consentCollection,omitempty"` + + // Currency Three-letter ISO currency code, in lowercase. Currency *CurrencyCode `json:"currency,omitempty"` - // CustomText Stripe CheckoutSession.custom_text - CustomText *CheckoutSessionCustomTextAfterSubmitParams `json:"customText,omitempty"` - Metadata *map[string]string `json:"metadata,omitempty"` - PaymentMethodTypes *[]string `json:"paymentMethodTypes,omitempty"` - ReturnURL *string `json:"returnURL,omitempty"` - SuccessURL *string `json:"successURL,omitempty"` + // CustomText Display additional text for your customers using custom text. + CustomText *CheckoutSessionCustomTextAfterSubmitParams `json:"customText,omitempty"` + + // CustomerUpdate Controls what fields on Customer can be updated by the Checkout Session. + CustomerUpdate *CreateStripeCheckoutSessionCustomerUpdate `json:"customerUpdate,omitempty"` + + // ExpiresAt The Epoch time in seconds at which the Checkout Session will expire. + // It can be anywhere from 30 minutes to 24 hours after Checkout Session creation. By default, this value is 24 hours from creation. + ExpiresAt *int64 `json:"expiresAt,omitempty"` + Locale *string `json:"locale,omitempty"` + + // Metadata Set of key-value pairs that you can attach to an object. + // This can be useful for storing additional information about the object in a structured format. + // Individual keys can be unset by posting an empty value to them. + // All keys can be unset by posting an empty value to metadata. + Metadata *map[string]string `json:"metadata,omitempty"` - // UiMode Stripe CheckoutSession.ui_mode + // PaymentMethodTypes A list of the types of payment methods (e.g., card) this Checkout Session can accept. + PaymentMethodTypes *[]string `json:"paymentMethodTypes,omitempty"` + + // RedirectOnCompletion This parameter applies to ui_mode: embedded. Defaults to always. + // Learn more about the redirect behavior of embedded sessions at + // https://docs.stripe.com/payments/checkout/custom-success-page?payment-ui=embedded-form + RedirectOnCompletion *CreateStripeCheckoutSessionRedirectOnCompletion `json:"redirectOnCompletion,omitempty"` + ReturnURL *string `json:"returnURL,omitempty"` + + // SuccessURL The URL to which Stripe should send customers when payment or setup is complete. + // This parameter is not allowed if ui_mode is embedded. + // If you’d like to use information from the successful Checkout Session on your page, read the guide on customizing your success page: + // https://docs.stripe.com/payments/checkout/custom-success-page + SuccessURL *string `json:"successURL,omitempty"` + + // TaxIdCollection Controls tax ID collection during checkout. + TaxIdCollection *CreateCheckoutSessionTaxIdCollection `json:"taxIdCollection,omitempty"` + + // UiMode The UI mode of the Session. Defaults to hosted. UiMode *CheckoutSessionUIMode `json:"uiMode,omitempty"` } @@ -1244,6 +1395,11 @@ type Customer struct { // Id A unique identifier for the resource. Id *string `json:"id,omitempty"` + // Key An optional unique key of the customer. + // Useful to reference the customer in external systems. + // For example, your database ID. + Key *string `json:"key,omitempty"` + // Metadata Additional metadata for the resource. Metadata *Metadata `json:"metadata"` @@ -1295,6 +1451,11 @@ type CustomerCreate struct { // Description Optional description of the resource. Maximum 1024 characters. Description *string `json:"description,omitempty"` + // Key An optional unique key of the customer. + // Useful to reference the customer in external systems. + // For example, your database ID. + Key *string `json:"key,omitempty"` + // Metadata Additional metadata for the resource. Metadata *Metadata `json:"metadata"` @@ -1308,12 +1469,17 @@ type CustomerCreate struct { UsageAttribution CustomerUsageAttribution `json:"usageAttribution"` } -// CustomerId Create Stripe checkout session customer ID. +// CustomerId Create Stripe checkout session with customer ID. type CustomerId struct { // Id ULID (Universally Unique Lexicographically Sortable Identifier). Id string `json:"id"` } +// CustomerKey Create Stripe checkout session with customer key. +type CustomerKey struct { + Key string `json:"key"` +} + // CustomerOrderBy Order by options for customers. type CustomerOrderBy string @@ -1345,6 +1511,11 @@ type CustomerReplaceUpdate struct { // Description Optional description of the resource. Maximum 1024 characters. Description *string `json:"description,omitempty"` + // Key An optional unique key of the customer. + // Useful to reference the customer in external systems. + // For example, your database ID. + Key *string `json:"key,omitempty"` + // Metadata Additional metadata for the resource. Metadata *Metadata `json:"metadata"` @@ -4798,6 +4969,9 @@ type PlanOrderByOrderingOrderBy = PlanOrderBy // QueryCustomerListIncludeDeleted defines model for queryCustomerList.includeDeleted. type QueryCustomerListIncludeDeleted = bool +// QueryCustomerListKey defines model for queryCustomerList.key. +type QueryCustomerListKey = string + // QueryCustomerListName defines model for queryCustomerList.name. type QueryCustomerListName = string @@ -4966,6 +5140,10 @@ type ListCustomersParams struct { // IncludeDeleted Include deleted customers. IncludeDeleted *QueryCustomerListIncludeDeleted `form:"includeDeleted,omitempty" json:"includeDeleted,omitempty"` + // Key Filter customers by key. + // Case-sensitive exact match. + Key *QueryCustomerListKey `form:"key,omitempty" json:"key,omitempty"` + // Name Filter customers by name. // Case-insensitive partial match. Name *QueryCustomerListName `form:"name,omitempty" json:"name,omitempty"` @@ -5796,6 +5974,32 @@ func (t *CreateStripeCheckoutSessionRequest_Customer) MergeCustomerId(v Customer return err } +// AsCustomerKey returns the union data inside the CreateStripeCheckoutSessionRequest_Customer as a CustomerKey +func (t CreateStripeCheckoutSessionRequest_Customer) AsCustomerKey() (CustomerKey, error) { + var body CustomerKey + err := json.Unmarshal(t.union, &body) + return body, err +} + +// FromCustomerKey overwrites any union data inside the CreateStripeCheckoutSessionRequest_Customer as the provided CustomerKey +func (t *CreateStripeCheckoutSessionRequest_Customer) FromCustomerKey(v CustomerKey) error { + b, err := json.Marshal(v) + t.union = b + return err +} + +// MergeCustomerKey performs a merge with any union data inside the CreateStripeCheckoutSessionRequest_Customer, using the provided CustomerKey +func (t *CreateStripeCheckoutSessionRequest_Customer) MergeCustomerKey(v CustomerKey) error { + b, err := json.Marshal(v) + if err != nil { + return err + } + + merged, err := runtime.JSONMerge(t.union, b) + t.union = merged + return err +} + // AsCustomerCreate returns the union data inside the CreateStripeCheckoutSessionRequest_Customer as a CustomerCreate func (t CreateStripeCheckoutSessionRequest_Customer) AsCustomerCreate() (CustomerCreate, error) { var body CustomerCreate @@ -11700,6 +11904,22 @@ func NewListCustomersRequest(server string, params *ListCustomersParams) (*http. } + if params.Key != nil { + + if queryFrag, err := runtime.StyleParamWithLocation("form", false, "key", runtime.ParamLocationQuery, *params.Key); err != nil { + return nil, err + } else if parsed, err := url.ParseQuery(queryFrag); err != nil { + return nil, err + } else { + for k, v := range parsed { + for _, v2 := range v { + queryValues.Add(k, v2) + } + } + } + + } + if params.Name != nil { if queryFrag, err := runtime.StyleParamWithLocation("form", false, "name", runtime.ParamLocationQuery, *params.Name); err != nil { @@ -28887,783 +29107,811 @@ func ParseUnscheduleCancelationResponse(rsp *http.Response) (*UnscheduleCancelat // Base64 encoded, gzipped, json marshaled Swagger object var swaggerSpec = []string{ - "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", - "9P8HAAD//4Tq4ofedgcA", + "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", + "3s7n95///wAAAP//lgDElZuXBwA=", } // GetSwagger returns the content of the embedded swagger specification file diff --git a/api/client/javascript/src/client/schemas.d.ts b/api/client/javascript/src/client/schemas.d.ts index dd89c2d56..ae7bc9cd2 100644 --- a/api/client/javascript/src/client/schemas.d.ts +++ b/api/client/javascript/src/client/schemas.d.ts @@ -2293,17 +2293,125 @@ export interface components { * @example US */ CountryCode: string - /** @description Create Stripe checkout session request. */ + /** @description Create Stripe checkout session tax ID collection. */ + CreateCheckoutSessionTaxIdCollection: { + /** @description Enable tax ID collection during checkout. Defaults to false. */ + enabled: boolean + /** @description Describes whether a tax ID is required during checkout. Defaults to never. */ + required?: components['schemas']['CreateCheckoutSessionTaxIdCollectionRequired'] + } + /** + * @description Create Stripe checkout session tax ID collection required. + * @enum {string} + */ + CreateCheckoutSessionTaxIdCollectionRequired: 'if_supported' | 'never' + /** + * @description Specify whether Checkout should collect the customer’s billing address. + * @enum {string} + */ + CreateStripeCheckoutSessionBillingAddressCollection: 'auto' | 'required' + /** @description Configure fields for the Checkout Session to gather active consent from customers. */ + CreateStripeCheckoutSessionConsentCollection: { + /** @description Determines the position and visibility of the payment method reuse agreement in the UI. + * When set to auto, Stripe’s defaults will be used. When set to hidden, the payment method reuse agreement text will always be hidden in the UI. */ + paymentMethodReuseAgreement?: components['schemas']['CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement'] + /** @description If set to auto, enables the collection of customer consent for promotional communications. + * The Checkout Session will determine whether to display an option to opt into promotional + * communication from the merchant depending on the customer’s locale. Only available to US merchants. */ + promotions?: components['schemas']['CreateStripeCheckoutSessionConsentCollectionPromotions'] + /** @description If set to required, it requires customers to check a terms of service checkbox before being able to pay. + * There must be a valid terms of service URL set in your Stripe Dashboard settings. + * https://dashboard.stripe.com/settings/public */ + termsOfService?: components['schemas']['CreateStripeCheckoutSessionConsentCollectionTermsOfService'] + } + /** @description Create Stripe checkout session payment method reuse agreement. */ + CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement: { + position?: components['schemas']['CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition'] + } + /** + * @description Create Stripe checkout session consent collection agreement position. + * @enum {string} + */ + CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition: + | 'auto' + | 'hidden' + /** + * @description Create Stripe checkout session consent collection promotions. + * @enum {string} + */ + CreateStripeCheckoutSessionConsentCollectionPromotions: 'auto' | 'none' + /** + * @description Create Stripe checkout session consent collection terms of service. + * @enum {string} + */ + CreateStripeCheckoutSessionConsentCollectionTermsOfService: + | 'none' + | 'required' + /** @description Controls what fields on Customer can be updated by the Checkout Session. */ + CreateStripeCheckoutSessionCustomerUpdate: { + /** @description Describes whether Checkout saves the billing address onto customer.address. + * To always collect a full billing address, use billing_address_collection. + * Defaults to never. */ + address?: components['schemas']['CreateStripeCheckoutSessionCustomerUpdateBehavior'] + /** @description Describes whether Checkout saves the name onto customer.name. + * Defaults to never. */ + name?: components['schemas']['CreateStripeCheckoutSessionCustomerUpdateBehavior'] + /** @description Describes whether Checkout saves shipping information onto customer.shipping. + * To collect shipping information, use shipping_address_collection. + * Defaults to never. */ + shipping?: components['schemas']['CreateStripeCheckoutSessionCustomerUpdateBehavior'] + } + /** + * @description Create Stripe checkout session customer update behavior. + * @enum {string} + */ + CreateStripeCheckoutSessionCustomerUpdateBehavior: 'auto' | 'never' + /** + * @description Create Stripe checkout session redirect on completion. + * @enum {string} + */ + CreateStripeCheckoutSessionRedirectOnCompletion: + | 'always' + | 'if_required' + | 'never' + /** + * @description Create Stripe checkout session request. + * @example { + * "customer": { + * "name": "ACME, Inc.", + * "currency": "USD", + * "usageAttribution": { + * "subjectKeys": [ + * "my-identifier" + * ] + * } + * }, + * "options": { + * "currency": "USD", + * "successURL": "http://example.com", + * "billingAddressCollection": "required", + * "taxIdCollection": { + * "enabled": true, + * "required": "if_supported" + * }, + * "customerUpdate": { + * "name": "auto", + * "address": "auto" + * } + * } + * } + */ CreateStripeCheckoutSessionRequest: { /** * @description If not provided, the default Stripe app is used if any. * @example 01G65Z755AFWAKHE12NY0CQ9FH */ appId?: string - /** @description Provide a customer ID to use an existing OpenMeter customer. + /** @description Provide a customer ID or key to use an existing OpenMeter customer. * or provide a customer object to create a new customer. */ customer: | components['schemas']['CustomerId'] + | components['schemas']['CustomerKey'] | components['schemas']['CustomerCreate'] /** @description Stripe customer ID. * If not provided OpenMeter creates a new Stripe customer or @@ -2312,19 +2420,54 @@ export interface components { /** @description Options passed to Stripe when creating the checkout session. */ options: components['schemas']['CreateStripeCheckoutSessionRequestOptions'] } - /** @description Create Stripe checkout session options */ + /** @description Create Stripe checkout session options + * See https://docs.stripe.com/api/checkout/sessions/create */ CreateStripeCheckoutSessionRequestOptions: { - currency?: components['schemas']['CurrencyCode'] + /** @description Specify whether Checkout should collect the customer’s billing address. Defaults to auto. */ + billingAddressCollection?: components['schemas']['CreateStripeCheckoutSessionBillingAddressCollection'] + /** @description If set, Checkout displays a back button and customers will be directed to this URL if they decide to cancel payment and return to your website. + * This parameter is not allowed if ui_mode is embedded. */ cancelURL?: string + /** @description A unique string to reference the Checkout Session. This can be a customer ID, a cart ID, or similar, and can be used to reconcile the session with your internal systems. */ clientReferenceID?: string + /** @description Controls what fields on Customer can be updated by the Checkout Session. */ + customerUpdate?: components['schemas']['CreateStripeCheckoutSessionCustomerUpdate'] + /** @description Configure fields for the Checkout Session to gather active consent from customers. */ + consentCollection?: components['schemas']['CreateStripeCheckoutSessionConsentCollection'] + /** @description Three-letter ISO currency code, in lowercase. */ + currency?: components['schemas']['CurrencyCode'] + /** @description Display additional text for your customers using custom text. */ customText?: components['schemas']['CheckoutSessionCustomTextAfterSubmitParams'] + /** + * Format: int64 + * @description The Epoch time in seconds at which the Checkout Session will expire. + * It can be anywhere from 30 minutes to 24 hours after Checkout Session creation. By default, this value is 24 hours from creation. + */ + expiresAt?: number + locale?: string + /** @description Set of key-value pairs that you can attach to an object. + * This can be useful for storing additional information about the object in a structured format. + * Individual keys can be unset by posting an empty value to them. + * All keys can be unset by posting an empty value to metadata. */ metadata?: { [key: string]: string } returnURL?: string + /** @description The URL to which Stripe should send customers when payment or setup is complete. + * This parameter is not allowed if ui_mode is embedded. + * If you’d like to use information from the successful Checkout Session on your page, read the guide on customizing your success page: + * https://docs.stripe.com/payments/checkout/custom-success-page */ successURL?: string + /** @description The UI mode of the Session. Defaults to hosted. */ uiMode?: components['schemas']['CheckoutSessionUIMode'] + /** @description A list of the types of payment methods (e.g., card) this Checkout Session can accept. */ paymentMethodTypes?: string[] + /** @description This parameter applies to ui_mode: embedded. Defaults to always. + * Learn more about the redirect behavior of embedded sessions at + * https://docs.stripe.com/payments/checkout/custom-success-page?payment-ui=embedded-form */ + redirectOnCompletion?: components['schemas']['CreateStripeCheckoutSessionRedirectOnCompletion'] + /** @description Controls tax ID collection during checkout. */ + taxIdCollection?: components['schemas']['CreateCheckoutSessionTaxIdCollection'] } /** @description Create Stripe Checkout Session response. */ CreateStripeCheckoutSessionResult: { @@ -2504,6 +2647,13 @@ export interface components { * @example 2024-01-01T01:01:01.001Z */ readonly deletedAt?: Date + /** + * Key + * @description An optional unique key of the customer. + * Useful to reference the customer in external systems. + * For example, your database ID. + */ + key?: string /** * Usage Attribution * @description Mapping to attribute metered usage to the customer @@ -2576,6 +2726,13 @@ export interface components { * @description Additional metadata for the resource. */ metadata?: components['schemas']['Metadata'] | null + /** + * Key + * @description An optional unique key of the customer. + * Useful to reference the customer in external systems. + * For example, your database ID. + */ + key?: string /** * Usage Attribution * @description Mapping to attribute metered usage to the customer @@ -2599,7 +2756,7 @@ export interface components { */ billingAddress?: components['schemas']['Address'] } - /** @description Create Stripe checkout session customer ID. */ + /** @description Create Stripe checkout session with customer ID. */ CustomerId: { /** * @description ULID (Universally Unique Lexicographically Sortable Identifier). @@ -2607,6 +2764,10 @@ export interface components { */ id: string } + /** @description Create Stripe checkout session with customer key. */ + CustomerKey: { + key: string + } /** * @description Order by options for customers. * @enum {string} @@ -2649,6 +2810,13 @@ export interface components { * @description Additional metadata for the resource. */ metadata?: components['schemas']['Metadata'] | null + /** + * Key + * @description An optional unique key of the customer. + * Useful to reference the customer in external systems. + * For example, your database ID. + */ + key?: string /** * Usage Attribution * @description Mapping to attribute metered usage to the customer @@ -6079,11 +6247,7 @@ export interface components { * Price * @description The price of the rate card. * When null, the feature or service is free. - * @example { - * "type": "flat", - * "amount": "100", - * "paymentTerm": "in_arrears" - * } + * @example {} */ price: components['schemas']['FlatPriceWithPaymentTerm'] | null } @@ -6609,9 +6773,7 @@ export interface components { * @example Customer Name */ displayName?: string | null - /** @example { - * "hubspotId": "123456" - * } */ + /** @example {} */ metadata?: { [key: string]: unknown } | null @@ -6654,9 +6816,7 @@ export interface components { * @example Customer Name */ displayName?: string | null - /** @example { - * "hubspotId": "123456" - * } */ + /** @example {} */ metadata?: { [key: string]: unknown } | null @@ -6929,11 +7089,7 @@ export interface components { * Price * @description The price of the rate card. * When null, the feature or service is free. - * @example { - * "type": "flat", - * "amount": "100", - * "paymentTerm": "in_arrears" - * } + * @example {} */ price: | (components['schemas']['FlatPriceWithPaymentTerm'] | null) @@ -7484,6 +7640,9 @@ export interface components { 'PlanOrderByOrdering.orderBy': components['schemas']['PlanOrderBy'] /** @description Include deleted customers. */ 'queryCustomerList.includeDeleted': boolean + /** @description Filter customers by key. + * Case-sensitive exact match. */ + 'queryCustomerList.key': string /** @description Filter customers by name. * Case-insensitive partial match. */ 'queryCustomerList.name': string @@ -7574,6 +7733,28 @@ export type CollectionMethod = components['schemas']['CollectionMethod'] export type ConflictProblemResponse = components['schemas']['ConflictProblemResponse'] export type CountryCode = components['schemas']['CountryCode'] +export type CreateCheckoutSessionTaxIdCollection = + components['schemas']['CreateCheckoutSessionTaxIdCollection'] +export type CreateCheckoutSessionTaxIdCollectionRequired = + components['schemas']['CreateCheckoutSessionTaxIdCollectionRequired'] +export type CreateStripeCheckoutSessionBillingAddressCollection = + components['schemas']['CreateStripeCheckoutSessionBillingAddressCollection'] +export type CreateStripeCheckoutSessionConsentCollection = + components['schemas']['CreateStripeCheckoutSessionConsentCollection'] +export type CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement = + components['schemas']['CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement'] +export type CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition = + components['schemas']['CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition'] +export type CreateStripeCheckoutSessionConsentCollectionPromotions = + components['schemas']['CreateStripeCheckoutSessionConsentCollectionPromotions'] +export type CreateStripeCheckoutSessionConsentCollectionTermsOfService = + components['schemas']['CreateStripeCheckoutSessionConsentCollectionTermsOfService'] +export type CreateStripeCheckoutSessionCustomerUpdate = + components['schemas']['CreateStripeCheckoutSessionCustomerUpdate'] +export type CreateStripeCheckoutSessionCustomerUpdateBehavior = + components['schemas']['CreateStripeCheckoutSessionCustomerUpdateBehavior'] +export type CreateStripeCheckoutSessionRedirectOnCompletion = + components['schemas']['CreateStripeCheckoutSessionRedirectOnCompletion'] export type CreateStripeCheckoutSessionRequest = components['schemas']['CreateStripeCheckoutSessionRequest'] export type CreateStripeCheckoutSessionRequestOptions = @@ -7595,6 +7776,7 @@ export type CustomerAppDataPaginatedResponse = components['schemas']['CustomerAppDataPaginatedResponse'] export type CustomerCreate = components['schemas']['CustomerCreate'] export type CustomerId = components['schemas']['CustomerId'] +export type CustomerKey = components['schemas']['CustomerKey'] export type CustomerOrderBy = components['schemas']['CustomerOrderBy'] export type CustomerPaginatedResponse = components['schemas']['CustomerPaginatedResponse'] @@ -8029,6 +8211,8 @@ export type ParameterPlanOrderByOrderingOrderBy = components['parameters']['PlanOrderByOrdering.orderBy'] export type ParameterQueryCustomerListIncludeDeleted = components['parameters']['queryCustomerList.includeDeleted'] +export type ParameterQueryCustomerListKey = + components['parameters']['queryCustomerList.key'] export type ParameterQueryCustomerListName = components['parameters']['queryCustomerList.name'] export type ParameterQueryCustomerListPlanKey = @@ -10389,6 +10573,9 @@ export interface operations { orderBy?: components['parameters']['CustomerOrderByOrdering.orderBy'] /** @description Include deleted customers. */ includeDeleted?: components['parameters']['queryCustomerList.includeDeleted'] + /** @description Filter customers by key. + * Case-sensitive exact match. */ + key?: components['parameters']['queryCustomerList.key'] /** @description Filter customers by name. * Case-insensitive partial match. */ name?: components['parameters']['queryCustomerList.name'] diff --git a/api/openapi.cloud.yaml b/api/openapi.cloud.yaml index 89583ba95..bc91c73a6 100644 --- a/api/openapi.cloud.yaml +++ b/api/openapi.cloud.yaml @@ -101,8 +101,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -164,8 +164,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -233,8 +233,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -293,8 +293,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -353,8 +353,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -427,9 +427,9 @@ paths: type: array items: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - $ref: '#/components/parameters/Pagination.page' - $ref: '#/components/parameters/Pagination.pageSize' - $ref: '#/components/parameters/LimitOffset.offset' @@ -492,8 +492,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -569,8 +569,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -632,8 +632,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -697,8 +697,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -962,8 +962,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ - name: expand in: query required: false @@ -1044,8 +1044,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -1106,8 +1106,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -1181,8 +1181,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -1252,8 +1252,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -1319,8 +1319,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -1386,8 +1386,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -1455,8 +1455,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -1656,8 +1656,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -1715,8 +1715,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ - name: expand in: query required: false @@ -1785,8 +1785,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -1911,6 +1911,7 @@ paths: - $ref: '#/components/parameters/CustomerOrderByOrdering.order' - $ref: '#/components/parameters/CustomerOrderByOrdering.orderBy' - $ref: '#/components/parameters/queryCustomerList.includeDeleted' + - $ref: '#/components/parameters/queryCustomerList.key' - $ref: '#/components/parameters/queryCustomerList.name' - $ref: '#/components/parameters/queryCustomerList.primaryEmail' - $ref: '#/components/parameters/queryCustomerList.subject' @@ -1971,8 +1972,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ - $ref: '#/components/parameters/PaginatedQuery.page' - $ref: '#/components/parameters/PaginatedQuery.pageSize' - $ref: '#/components/parameters/queryCustomerList.type' @@ -2037,8 +2038,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -2111,15 +2112,15 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ - name: appId in: path required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -2189,7 +2190,7 @@ paths: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z responses: '200': description: The request has succeeded. @@ -2252,8 +2253,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -2315,8 +2316,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -2384,8 +2385,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -2599,8 +2600,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -4121,8 +4122,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -4190,8 +4191,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -4256,8 +4257,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -4320,7 +4321,7 @@ paths: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z - name: to in: query required: false @@ -4330,7 +4331,7 @@ paths: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z - name: feature in: query required: false @@ -4364,9 +4365,9 @@ paths: type: array items: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - name: channel in: query required: false @@ -4378,9 +4379,9 @@ paths: type: array items: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - $ref: '#/components/parameters/Pagination.page' - $ref: '#/components/parameters/Pagination.pageSize' - $ref: '#/components/parameters/NotificationEventOrderByOrdering.order' @@ -4666,8 +4667,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -4735,8 +4736,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -4801,8 +4802,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -4861,8 +4862,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '201': description: The request has succeeded and a new resource has been created as a result. @@ -4993,9 +4994,9 @@ paths: type: array items: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - name: key in: query required: false @@ -5138,9 +5139,9 @@ paths: schema: anyOf: - type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - type: string minLength: 1 maxLength: 64 @@ -5210,8 +5211,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -5280,9 +5281,9 @@ paths: schema: anyOf: - type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - type: string minLength: 1 maxLength: 64 @@ -5365,8 +5366,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '204': description: 'There is no content to send for this request, but the headers may be useful. ' @@ -5425,8 +5426,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -5489,8 +5490,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -6497,7 +6498,7 @@ paths: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z responses: '200': description: The request has succeeded. @@ -6708,7 +6709,7 @@ paths: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z - name: to in: query required: false @@ -6718,7 +6719,7 @@ paths: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z - name: windowSize in: query required: true @@ -6929,8 +6930,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ - name: at in: query required: false @@ -6938,7 +6939,7 @@ paths: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z responses: '200': description: The request has succeeded. @@ -7002,8 +7003,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -7078,8 +7079,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -7147,8 +7148,8 @@ paths: effectiveDate: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: If not provided the subscription is canceled immediately. - example: '2023-01-01T01:01:01.001Z' /api/v1/subscriptions/{subscriptionId}/change: post: operationId: changeSubscription @@ -7162,8 +7163,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -7238,8 +7239,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -7318,8 +7319,8 @@ paths: required: true schema: type: string - pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ example: 01G65Z755AFWAKHE12NY0CQ9FH + pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ responses: '200': description: The request has succeeded. @@ -7493,9 +7494,9 @@ components: type: array items: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH InvoiceListParams.expand: name: expand in: query @@ -7530,7 +7531,7 @@ components: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z InvoiceListParams.issuedBefore: name: issuedBefore in: query @@ -7539,7 +7540,7 @@ components: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z InvoiceListParams.statuses: name: statuses in: query @@ -7628,7 +7629,7 @@ components: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z MeterQuery.groupBy: name: groupBy in: query @@ -7660,7 +7661,7 @@ components: schema: type: string format: date-time - example: '2023-01-01T01:01:01.001Z' + example: 2023-01-01T01:01:01.001Z MeterQuery.windowSize: name: windowSize in: query @@ -7856,6 +7857,16 @@ components: type: boolean default: false explode: false + queryCustomerList.key: + name: key + in: query + required: false + description: |- + Filter customers by key. + Case-sensitive exact match. + schema: + type: string + explode: false queryCustomerList.name: name: name in: query @@ -7932,9 +7943,9 @@ components: Annotations: type: object additionalProperties: {} - description: Set of key-value pairs managed by the system. Cannot be modified by user. example: externalId: 019142cc-a016-796a-8113-1a942fecd26d + description: Set of key-value pairs managed by the system. Cannot be modified by user. App: anyOf: - $ref: '#/components/schemas/StripeApp' @@ -8001,15 +8012,15 @@ components: description: type: string description: The capability description. - description: |- - App capability. - - Capabilities only exist in config so they don't extend the Resource model. example: type: collectPayments key: stripe_collect_payment name: Collect Payments description: Stripe payments collects outstanding revenue with Stripe customer's default payment method. + description: |- + App capability. + + Capabilities only exist in config so they don't extend the Resource model. AppCapabilityType: type: string enum: @@ -8052,9 +8063,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The ID of the app. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: |- App reference @@ -8088,14 +8099,14 @@ components: usage: type: number format: double - description: The total usage of the feature in the period. example: 100 + description: The total usage of the feature in the period. readOnly: true balanceAtStart: type: number format: double - description: The entitlement balance at the start of the period. example: 100 + description: The entitlement balance at the start of the period. readOnly: true description: The balance history window. BillingLineCharge: @@ -8109,29 +8120,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ID of the charge or discount. - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true percent: allOf: @@ -8212,9 +8223,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -8238,22 +8249,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true supplier: @@ -8333,27 +8344,27 @@ components: tax: anyOf: - type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - type: string description: The tax app used for this workflow x-go-type: string invoicing: anyOf: - type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - type: string description: The invoicing app used for this workflow x-go-type: string payment: anyOf: - type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - type: string description: The payment app used for this workflow x-go-type: string @@ -8417,22 +8428,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true workflow: @@ -8441,12 +8452,12 @@ components: description: The details of the overrides active for this specific customer. billingProfile: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- The billing profile this override is associated with. If not provided, the default billing profile is chosen if available. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: Customer specific workflow overrides. BillingProfileCustomerOverrideCreate: type: object @@ -8457,12 +8468,12 @@ components: description: The details of the overrides active for this specific customer. billingProfile: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- The billing profile this override is associated with. If not provided, the default billing profile is chosen if available. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: Payload for creating a new or updating an existing customer override. BillingProfileCustomerOverrideOrderBy: type: string @@ -8479,16 +8490,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -8573,16 +8584,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -8687,12 +8698,12 @@ components: interval: type: string format: ISO8601 + example: P1D description: |- This grace period can be used to delay the collection of the pending line items specified in alignment. This is useful, in case of multiple subscriptions having slightly different billing periods. - example: P1D default: PT1H description: Workflow collection specifies how to collect the pending line items for an invoice BillingWorkflowCreate: @@ -8721,14 +8732,14 @@ components: draftPeriod: type: string format: ISO8601 - description: The period for the invoice to be kept in draft status for manual reviews. example: P1D + description: The period for the invoice to be kept in draft status for manual reviews. default: P1D dueAfter: type: string format: ISO8601 - description: The period after which the invoice is due. example: P1D + description: The period after which the invoice is due. default: P7D progressiveBilling: type: boolean @@ -8806,13 +8817,123 @@ components: description: The request could not be completed due to a conflict with the current state of the target resource. CountryCode: type: string + example: US minLength: 2 maxLength: 2 pattern: ^[A-Z]{2}$ description: |- [ISO 3166-1](https://www.iso.org/iso-3166-country-codes.html) alpha-2 country code. Custom two-letter country codes are also supported for convenience. - example: US + CreateCheckoutSessionTaxIdCollection: + type: object + required: + - enabled + properties: + enabled: + type: boolean + description: Enable tax ID collection during checkout. Defaults to false. + required: + allOf: + - $ref: '#/components/schemas/CreateCheckoutSessionTaxIdCollectionRequired' + description: Describes whether a tax ID is required during checkout. Defaults to never. + description: Create Stripe checkout session tax ID collection. + CreateCheckoutSessionTaxIdCollectionRequired: + type: string + enum: + - if_supported + - never + description: Create Stripe checkout session tax ID collection required. + CreateStripeCheckoutSessionBillingAddressCollection: + type: string + enum: + - auto + - required + description: Specify whether Checkout should collect the customer’s billing address. + CreateStripeCheckoutSessionConsentCollection: + type: object + properties: + paymentMethodReuseAgreement: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement' + description: |- + Determines the position and visibility of the payment method reuse agreement in the UI. + When set to auto, Stripe’s defaults will be used. When set to hidden, the payment method reuse agreement text will always be hidden in the UI. + promotions: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionConsentCollectionPromotions' + description: |- + If set to auto, enables the collection of customer consent for promotional communications. + The Checkout Session will determine whether to display an option to opt into promotional + communication from the merchant depending on the customer’s locale. Only available to US merchants. + termsOfService: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionConsentCollectionTermsOfService' + description: |- + If set to required, it requires customers to check a terms of service checkbox before being able to pay. + There must be a valid terms of service URL set in your Stripe Dashboard settings. + https://dashboard.stripe.com/settings/public + description: Configure fields for the Checkout Session to gather active consent from customers. + CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreement: + type: object + properties: + position: + $ref: '#/components/schemas/CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition' + description: Create Stripe checkout session payment method reuse agreement. + CreateStripeCheckoutSessionConsentCollectionPaymentMethodReuseAgreementPosition: + type: string + enum: + - auto + - hidden + description: Create Stripe checkout session consent collection agreement position. + CreateStripeCheckoutSessionConsentCollectionPromotions: + type: string + enum: + - auto + - none + description: Create Stripe checkout session consent collection promotions. + CreateStripeCheckoutSessionConsentCollectionTermsOfService: + type: string + enum: + - none + - required + description: Create Stripe checkout session consent collection terms of service. + CreateStripeCheckoutSessionCustomerUpdate: + type: object + properties: + address: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionCustomerUpdateBehavior' + description: |- + Describes whether Checkout saves the billing address onto customer.address. + To always collect a full billing address, use billing_address_collection. + Defaults to never. + name: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionCustomerUpdateBehavior' + description: |- + Describes whether Checkout saves the name onto customer.name. + Defaults to never. + shipping: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionCustomerUpdateBehavior' + description: |- + Describes whether Checkout saves shipping information onto customer.shipping. + To collect shipping information, use shipping_address_collection. + Defaults to never. + description: Controls what fields on Customer can be updated by the Checkout Session. + CreateStripeCheckoutSessionCustomerUpdateBehavior: + type: string + enum: + - auto + - never + description: Create Stripe checkout session customer update behavior. + CreateStripeCheckoutSessionRedirectOnCompletion: + type: string + enum: + - always + - if_required + - never + description: Create Stripe checkout session redirect on completion. CreateStripeCheckoutSessionRequest: type: object required: @@ -8821,15 +8942,16 @@ components: properties: appId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: If not provided, the default Stripe app is used if any. - example: 01G65Z755AFWAKHE12NY0CQ9FH customer: anyOf: - $ref: '#/components/schemas/CustomerId' + - $ref: '#/components/schemas/CustomerKey' - $ref: '#/components/schemas/CustomerCreate' description: |- - Provide a customer ID to use an existing OpenMeter customer. + Provide a customer ID or key to use an existing OpenMeter customer. or provide a customer object to create a new customer. stripeCustomerId: type: string @@ -8841,33 +8963,104 @@ components: allOf: - $ref: '#/components/schemas/CreateStripeCheckoutSessionRequestOptions' description: Options passed to Stripe when creating the checkout session. + example: + customer: + name: ACME, Inc. + currency: USD + usageAttribution: + subjectKeys: + - my-identifier + options: + currency: USD + successURL: http://example.com + billingAddressCollection: required + taxIdCollection: + enabled: true + required: if_supported + customerUpdate: + name: auto + address: auto description: Create Stripe checkout session request. CreateStripeCheckoutSessionRequestOptions: type: object properties: - currency: - $ref: '#/components/schemas/CurrencyCode' + billingAddressCollection: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionBillingAddressCollection' + description: Specify whether Checkout should collect the customer’s billing address. Defaults to auto. cancelURL: type: string + description: |- + If set, Checkout displays a back button and customers will be directed to this URL if they decide to cancel payment and return to your website. + This parameter is not allowed if ui_mode is embedded. clientReferenceID: type: string + description: A unique string to reference the Checkout Session. This can be a customer ID, a cart ID, or similar, and can be used to reconcile the session with your internal systems. + customerUpdate: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionCustomerUpdate' + description: Controls what fields on Customer can be updated by the Checkout Session. + consentCollection: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionConsentCollection' + description: Configure fields for the Checkout Session to gather active consent from customers. + currency: + allOf: + - $ref: '#/components/schemas/CurrencyCode' + description: Three-letter ISO currency code, in lowercase. customText: - $ref: '#/components/schemas/CheckoutSessionCustomTextAfterSubmitParams' + allOf: + - $ref: '#/components/schemas/CheckoutSessionCustomTextAfterSubmitParams' + description: Display additional text for your customers using custom text. + expiresAt: + type: integer + format: int64 + description: |- + The Epoch time in seconds at which the Checkout Session will expire. + It can be anywhere from 30 minutes to 24 hours after Checkout Session creation. By default, this value is 24 hours from creation. + locale: + type: string metadata: type: object additionalProperties: type: string + description: |- + Set of key-value pairs that you can attach to an object. + This can be useful for storing additional information about the object in a structured format. + Individual keys can be unset by posting an empty value to them. + All keys can be unset by posting an empty value to metadata. returnURL: type: string successURL: type: string + description: |- + The URL to which Stripe should send customers when payment or setup is complete. + This parameter is not allowed if ui_mode is embedded. + If you’d like to use information from the successful Checkout Session on your page, read the guide on customizing your success page: + https://docs.stripe.com/payments/checkout/custom-success-page uiMode: - $ref: '#/components/schemas/CheckoutSessionUIMode' + allOf: + - $ref: '#/components/schemas/CheckoutSessionUIMode' + description: The UI mode of the Session. Defaults to hosted. paymentMethodTypes: type: array items: type: string - description: Create Stripe checkout session options + description: A list of the types of payment methods (e.g., card) this Checkout Session can accept. + redirectOnCompletion: + allOf: + - $ref: '#/components/schemas/CreateStripeCheckoutSessionRedirectOnCompletion' + description: |- + This parameter applies to ui_mode: embedded. Defaults to always. + Learn more about the redirect behavior of embedded sessions at + https://docs.stripe.com/payments/checkout/custom-success-page?payment-ui=embedded-form + taxIdCollection: + allOf: + - $ref: '#/components/schemas/CreateCheckoutSessionTaxIdCollection' + description: Controls tax ID collection during checkout. + description: |- + Create Stripe checkout session options + See https://docs.stripe.com/api/checkout/sessions/create CreateStripeCheckoutSessionResult: type: object required: @@ -8879,9 +9072,9 @@ components: properties: customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The OpenMeter customer ID. - example: 01G65Z755AFWAKHE12NY0CQ9FH stripeCustomerId: type: string description: The Stripe customer ID. @@ -8924,8 +9117,8 @@ components: issuedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: IssueAt reflects the time the document was issued. - example: '2023-01-01T01:01:01.001Z' readOnly: true number: allOf: @@ -8965,13 +9158,13 @@ components: description: Currency describes a currency supported by OpenMeter. CurrencyCode: type: string + example: USD minLength: 3 maxLength: 3 pattern: ^[A-Z]{3}$ description: |- Three-letter [ISO4217](https://www.iso.org/iso-4217-currency-codes.html) currency code. Custom three-letter currency codes are also supported for convenience. - example: USD CustomPlanInput: type: object allOf: @@ -9025,8 +9218,8 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' customPlan: $ref: '#/components/schemas/CustomPlanInput' description: Change a custom subscription. @@ -9040,15 +9233,15 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' customPlan: $ref: '#/components/schemas/CustomPlanInput' customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH description: Create a custom subscription. Customer: type: object @@ -9061,9 +9254,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -9087,24 +9280,31 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true + key: + type: string + description: |- + An optional unique key of the customer. + Useful to reference the customer in external systems. + For example, your database ID. + title: Key usageAttribution: allOf: - $ref: '#/components/schemas/CustomerUsageAttribution' @@ -9130,20 +9330,20 @@ components: title: Billing Address currentSubscriptionId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The ID of the Subscription if the customer has one. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: Current Subscription ID readOnly: true - description: A customer object. example: id: 01G65Z755AFWAKHE12NY0CQ9FH name: ACME Inc. usageAttribution: subjectKeys: - my_subject_key - createdAt: '2024-01-01T01:01:01.001Z' - updatedAt: '2024-01-01T01:01:01.001Z' + createdAt: 2024-01-01T01:01:01.001Z + updatedAt: 2024-01-01T01:01:01.001Z + description: A customer object. CustomerAppData: anyOf: - $ref: '#/components/schemas/StripeCustomerAppData' @@ -9167,16 +9367,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -9207,6 +9407,13 @@ components: nullable: true description: Additional metadata for the resource. title: Metadata + key: + type: string + description: |- + An optional unique key of the customer. + Useful to reference the customer in external systems. + For example, your database ID. + title: Key usageAttribution: allOf: - $ref: '#/components/schemas/CustomerUsageAttribution' @@ -9238,15 +9445,23 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH - description: Create Stripe checkout session customer ID. - CustomerOrderBy: - type: string - enum: - - id - - name + description: Create Stripe checkout session with customer ID. + CustomerKey: + type: object + required: + - key + properties: + key: + type: string + description: Create Stripe checkout session with customer key. + CustomerOrderBy: + type: string + enum: + - id + - name - createdAt description: Order by options for customers. CustomerPaginatedResponse: @@ -9259,16 +9474,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -9299,6 +9514,13 @@ components: nullable: true description: Additional metadata for the resource. title: Metadata + key: + type: string + description: |- + An optional unique key of the customer. + Useful to reference the customer in external systems. + For example, your database ID. + title: Key usageAttribution: allOf: - $ref: '#/components/schemas/CustomerUsageAttribution' @@ -9485,22 +9707,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true metadata: @@ -9510,18 +9732,18 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence start of the resource. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence end of the resource. - example: '2023-01-01T01:01:01.001Z' id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Readonly unique ULID identifier. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV readOnly: true type: allOf: @@ -9544,9 +9766,9 @@ components: example: example-feature-key featureId: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The feature the subject is entitled to use. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV currentUsagePeriod: allOf: - $ref: '#/components/schemas/Period' @@ -9575,22 +9797,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true metadata: @@ -9600,18 +9822,18 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence start of the resource. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence end of the resource. - example: '2023-01-01T01:01:01.001Z' id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Readonly unique ULID identifier. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV readOnly: true subjectKey: type: string @@ -9629,9 +9851,9 @@ components: example: example-feature-key featureId: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The feature the subject is entitled to use. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV currentUsagePeriod: allOf: - $ref: '#/components/schemas/Period' @@ -9659,11 +9881,11 @@ components: example: example-feature-key featureId: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- The feature the subject is entitled to use. Either featureKey or featureId is required. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV metadata: allOf: - $ref: '#/components/schemas/Metadata' @@ -9703,33 +9925,34 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true amount: type: number format: double + example: 100 minimum: 0 description: The amount to grant. Should be a positive number. - example: 100 priority: type: integer format: uint8 + example: 1 minimum: 1 maximum: 255 description: |- @@ -9739,12 +9962,11 @@ components: When there are several grants available for the same subject, the system selects the grant with the highest priority. In cases where grants share the same priority level, the grant closest to its expiration will be used first. In the case of two grants have identical priorities and expiration dates, the system will use the grant that was created first. - example: 1 effectiveAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Effective date for grants and anchor for recurring grants. Provided value will be ceiled to metering windowSize (minute). - example: '2023-01-01T01:01:01.001Z' expiration: allOf: - $ref: '#/components/schemas/ExpirationPeriod' @@ -9752,52 +9974,52 @@ components: maxRolloverAmount: type: number format: double + example: 100 description: |- Grants are rolled over at reset, after which they can have a different balance compared to what they had before the reset. Balance after the reset is calculated as: Balance_After_Reset = MIN(MaxRolloverAmount, MAX(Balance_Before_Reset, MinRolloverAmount)) - example: 100 default: 0 minRolloverAmount: type: number format: double + example: 100 description: |- Grants are rolled over at reset, after which they can have a different balance compared to what they had before the reset. Balance after the reset is calculated as: Balance_After_Reset = MIN(MaxRolloverAmount, MAX(Balance_Before_Reset, MinRolloverAmount)) - example: 100 default: 0 metadata: allOf: - $ref: '#/components/schemas/Metadata' - description: The grant metadata. example: stripePaymentId: pi_4OrAkhLvyihio9p51h9iiFnB + description: The grant metadata. id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Readonly unique ULID identifier. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV readOnly: true entitlementId: type: string - description: The unique entitlement ULID that the grant is associated with. example: 01ARZ3NDEKTSV4RRFFQ69G5FAV + description: The unique entitlement ULID that the grant is associated with. readOnly: true nextRecurrence: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The next time the grant will recurr. - example: '2023-01-01T01:01:01.001Z' expiresAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time the grant expires. - example: '2023-01-01T01:01:01.001Z' readOnly: true voidedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time the grant was voided. - example: '2023-01-01T01:01:01.001Z' recurrence: allOf: - $ref: '#/components/schemas/RecurringPeriod' @@ -9813,12 +10035,13 @@ components: amount: type: number format: double + example: 100 minimum: 0 description: The amount to grant. Should be a positive number. - example: 100 priority: type: integer format: uint8 + example: 1 minimum: 1 maximum: 255 description: |- @@ -9828,12 +10051,11 @@ components: When there are several grants available for the same subject, the system selects the grant with the highest priority. In cases where grants share the same priority level, the grant closest to its expiration will be used first. In the case of two grants have identical priorities and expiration dates, the system will use the grant that was created first. - example: 1 effectiveAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Effective date for grants and anchor for recurring grants. Provided value will be ceiled to metering windowSize (minute). - example: '2023-01-01T01:01:01.001Z' expiration: allOf: - $ref: '#/components/schemas/ExpirationPeriod' @@ -9841,25 +10063,25 @@ components: maxRolloverAmount: type: number format: double + example: 100 description: |- Grants are rolled over at reset, after which they can have a different balance compared to what they had before the reset. Balance after the reset is calculated as: Balance_After_Reset = MIN(MaxRolloverAmount, MAX(Balance_Before_Reset, MinRolloverAmount)) - example: 100 default: 0 minRolloverAmount: type: number format: double + example: 100 description: |- Grants are rolled over at reset, after which they can have a different balance compared to what they had before the reset. Balance after the reset is calculated as: Balance_After_Reset = MIN(MaxRolloverAmount, MAX(Balance_Before_Reset, MinRolloverAmount)) - example: 100 default: 0 metadata: allOf: - $ref: '#/components/schemas/Metadata' - description: The grant metadata. example: stripePaymentId: pi_4OrAkhLvyihio9p51h9iiFnB + description: The grant metadata. recurrence: allOf: - $ref: '#/components/schemas/RecurringPeriodCreateInput' @@ -9921,22 +10143,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true metadata: @@ -9946,18 +10168,18 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence start of the resource. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence end of the resource. - example: '2023-01-01T01:01:01.001Z' id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Readonly unique ULID identifier. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV readOnly: true subjectKey: type: string @@ -9975,14 +10197,14 @@ components: example: example-feature-key featureId: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The feature the subject is entitled to use. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV lastReset: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time the last reset happened. - example: '2023-01-01T01:01:01.001Z' readOnly: true currentUsagePeriod: allOf: @@ -9992,8 +10214,8 @@ components: measureUsageFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time from which usage is measured. If not specified on creation, defaults to entitlement creation time. - example: '2023-01-01T01:01:01.001Z' readOnly: true usagePeriod: allOf: @@ -10020,11 +10242,11 @@ components: example: example-feature-key featureId: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- The feature the subject is entitled to use. Either featureKey or featureId is required. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV metadata: allOf: - $ref: '#/components/schemas/Metadata' @@ -10091,16 +10313,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -10127,27 +10349,27 @@ components: config: type: string format: json - description: The JSON parsable config of the entitlement. This value is also returned when checking entitlement access and it is useful for configuring fine-grained access settings to the feature, implemented in your own system. Has to be an object. example: '{ "integrations": ["github"] }' + description: The JSON parsable config of the entitlement. This value is also returned when checking entitlement access and it is useful for configuring fine-grained access settings to the feature, implemented in your own system. Has to be an object. createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true metadata: @@ -10157,18 +10379,18 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence start of the resource. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence end of the resource. - example: '2023-01-01T01:01:01.001Z' id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Readonly unique ULID identifier. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV readOnly: true subjectKey: type: string @@ -10186,9 +10408,9 @@ components: example: example-feature-key featureId: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The feature the subject is entitled to use. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV currentUsagePeriod: allOf: - $ref: '#/components/schemas/Period' @@ -10215,11 +10437,11 @@ components: example: example-feature-key featureId: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- The feature the subject is entitled to use. Either featureKey or featureId is required. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV metadata: allOf: - $ref: '#/components/schemas/Metadata' @@ -10235,8 +10457,8 @@ components: config: type: string format: json - description: The JSON parsable config of the entitlement. This value is also returned when checking entitlement access and it is useful for configuring fine-grained access settings to the feature, implemented in your own system. Has to be an object. example: '{ "integrations": ["github"] }' + description: The JSON parsable config of the entitlement. This value is also returned when checking entitlement access and it is useful for configuring fine-grained access settings to the feature, implemented in your own system. Has to be an object. description: Create inputs for static entitlement EntitlementType: type: string @@ -10253,31 +10475,31 @@ components: properties: hasAccess: type: boolean - description: Whether the subject has access to the feature. Shared accross all entitlement types. example: true + description: Whether the subject has access to the feature. Shared accross all entitlement types. readOnly: true balance: type: number format: double - description: Only available for metered entitlements. Metered entitlements are built around a balance calculation where feature usage is deducted from the issued grants. Balance represents the remaining balance of the entitlement, it's value never turns negative. example: 100 + description: Only available for metered entitlements. Metered entitlements are built around a balance calculation where feature usage is deducted from the issued grants. Balance represents the remaining balance of the entitlement, it's value never turns negative. readOnly: true usage: type: number format: double - description: Only available for metered entitlements. Returns the total feature usage in the current period. example: 50 + description: Only available for metered entitlements. Returns the total feature usage in the current period. readOnly: true overage: type: number format: double - description: Only available for metered entitlements. Overage represents the usage that wasn't covered by grants, e.g. if the subject had a total feature usage of 100 in the period but they were only granted 80, there would be 20 overage. example: 0 + description: Only available for metered entitlements. Overage represents the usage that wasn't covered by grants, e.g. if the subject had a total feature usage of 100 in the period but they were only granted 80, there would be 20 overage. readOnly: true config: type: string - description: Only available for static entitlements. The JSON parsable config of the entitlement. example: '{ key: "value" }' + description: Only available for static entitlements. The JSON parsable config of the entitlement. readOnly: true description: Entitlements are the core of OpenMeter access management. They define access to features for subjects. Entitlements can be metered, boolean, or static. Event: @@ -10291,33 +10513,33 @@ components: properties: id: type: string + example: 5c10fade-1c9e-4d6c-8275-c52c36731d3c minLength: 1 description: Identifies the event. - example: 5c10fade-1c9e-4d6c-8275-c52c36731d3c source: type: string + example: service-name minLength: 1 format: uri-reference description: Identifies the context in which an event happened. - example: service-name specversion: type: string + example: '1.0' minLength: 1 description: The version of the CloudEvents specification which the event uses. - example: '1.0' default: '1.0' type: type: string + example: com.example.someevent minLength: 1 description: Contains a value describing the type of event related to the originating occurrence. - example: com.example.someevent datacontenttype: type: string enum: - application/json nullable: true - description: Content type of the CloudEvents data value. Only the value "application/json" is allowed over HTTP. example: application/json + description: Content type of the CloudEvents data value. Only the value "application/json" is allowed over HTTP. dataschema: type: string format: uri @@ -10326,14 +10548,14 @@ components: description: Identifies the schema that data adheres to. subject: type: string + example: customer-id minLength: 1 description: Describes the subject of the event in the context of the event producer (identified by source). - example: customer-id time: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Timestamp of when the occurrence happened. Must adhere to RFC 3339. - example: '2023-01-01T01:01:01.001Z' nullable: true data: type: object @@ -10342,18 +10564,18 @@ components: description: |- The event payload. Optional, if present it must be a JSON object. - description: |- - CloudEvents Specification JSON Schema - - Optional properties are nullable according to the CloudEvents specification: - OPTIONAL not omitted attributes MAY be represented as a null JSON value. example: id: 5c10fade-1c9e-4d6c-8275-c52c36731d3c source: service-name specversion: '1.0' type: prompt subject: customer-id - time: '2023-01-01T01:01:01.001Z' + time: 2023-01-01T01:01:01.001Z + description: |- + CloudEvents Specification JSON Schema + + Optional properties are nullable according to the CloudEvents specification: + OPTIONAL not omitted attributes MAY be represented as a null JSON value. x-go-type-import: path: github.com/cloudevents/sdk-go/v2/event x-go-type: event.Event @@ -10378,8 +10600,8 @@ components: description: The unit of time for the expiration period. count: type: integer - description: The number of time units in the expiration period. example: 12 + description: The number of time units in the expiration period. description: The grant expiration definition Feature: type: object @@ -10393,29 +10615,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true archivedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Timestamp of when the resource was archived. - example: '2023-01-01T01:01:01.001Z' title: Archival Time readOnly: true key: @@ -10431,35 +10653,35 @@ components: metadata: allOf: - $ref: '#/components/schemas/Metadata' - title: Optional metadata example: key: value + title: Optional metadata meterSlug: type: string minLength: 1 maxLength: 64 pattern: ^[a-z0-9]+(?:_[a-z0-9]+)*$ description: A key is a unique string that is used to identify a resource. - title: Meter slug example: tokens_total + title: Meter slug meterGroupByFilters: type: object additionalProperties: type: string + example: + model: gpt-4 + type: input description: |- Optional meter group by filters. Useful if the meter scope is broader than what feature tracks. Example scenario would be a meter tracking all token use with groupBy fields for the model, then the feature could filter for model=gpt-4. title: Meter group by filters - example: - model: gpt-4 - type: input id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Readonly unique ULID identifier. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV readOnly: true description: |- Represents a feature that can be enabled or disabled for a plan. @@ -10483,30 +10705,30 @@ components: metadata: allOf: - $ref: '#/components/schemas/Metadata' - title: Optional metadata example: key: value + title: Optional metadata meterSlug: type: string minLength: 1 maxLength: 64 pattern: ^[a-z0-9]+(?:_[a-z0-9]+)*$ description: A key is a unique string that is used to identify a resource. - title: Meter slug example: tokens_total + title: Meter slug meterGroupByFilters: type: object additionalProperties: type: string + example: + model: gpt-4 + type: input description: |- Optional meter group by filters. Useful if the meter scope is broader than what feature tracks. Example scenario would be a meter tracking all token use with groupBy fields for the model, then the feature could filter for model=gpt-4. title: Meter group by filters - example: - model: gpt-4 - type: input description: |- Represents a feature that can be enabled or disabled for a plan. Used both for product catalog and entitlements. @@ -10518,17 +10740,17 @@ components: properties: id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Unique identifier of a feature. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV title: Feature Unique Identifier key: type: string + example: gpt4_tokens description: |- The key is an immutable unique identifier of the feature used throughout the API, for example when interacting with a subject's entitlements. title: Feature Key - example: gpt4_tokens description: Limited representation of a feature resource which includes only its unique identifiers (id, key). FeatureOrderBy: type: string @@ -10547,16 +10769,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -10631,44 +10853,44 @@ components: usage: type: number format: double - description: The total usage of the grant in the period. example: 100 + description: The total usage of the grant in the period. readOnly: true overage: type: number format: double - description: Overuse that wasn't covered by grants. example: 100 + description: Overuse that wasn't covered by grants. readOnly: true balanceAtStart: type: number format: double - description: entitlement balance at the start of the period. example: 100 + description: entitlement balance at the start of the period. readOnly: true grantBalancesAtStart: type: object additionalProperties: type: number format: double - description: 'The balance breakdown of each active grant at the start of the period: GrantID: Balance' example: 01G65Z755AFWAKHE12NY0CQ9FH: 100 + description: 'The balance breakdown of each active grant at the start of the period: GrantID: Balance' readOnly: true balanceAtEnd: type: number format: double - description: The entitlement balance at the end of the period. example: 100 + description: The entitlement balance at the end of the period. readOnly: true grantBalancesAtEnd: type: object additionalProperties: type: number format: double - description: 'The balance breakdown of each active grant at the end of the period: GrantID: Balance' example: 01G65Z755AFWAKHE12NY0CQ9FH: 100 + description: 'The balance breakdown of each active grant at the end of the period: GrantID: Balance' readOnly: true grantUsages: type: array @@ -10697,16 +10919,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -10721,14 +10943,14 @@ components: properties: grantId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The id of the grant - example: 01G65Z755AFWAKHE12NY0CQ9FH usage: type: number format: double - description: The usage in the period example: 100 + description: The usage in the period description: Usage Record IDResource: type: object @@ -10737,9 +10959,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true description: IDResource is a resouce with an ID. @@ -10769,14 +10991,13 @@ components: ingestedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The date and time the event was ingested. - example: '2023-01-01T01:01:01.001Z' storedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The date and time the event was stored. - example: '2023-01-01T01:01:01.001Z' - description: An ingested event with optional validation error. example: event: id: 5c10fade-1c9e-4d6c-8275-c52c36731d3c @@ -10784,9 +11005,10 @@ components: specversion: '1.0' type: prompt subject: customer-id - time: '2023-01-01T01:01:01.001Z' - ingestedAt: '2023-01-01T01:01:01.001Z' - storedAt: '2023-01-01T01:01:02.001Z' + time: 2023-01-01T01:01:01.001Z + ingestedAt: 2023-01-01T01:01:01.001Z + storedAt: 2023-01-01T01:01:02.001Z + description: An ingested event with optional validation error. InternalServerErrorProblemResponse: type: object allOf: @@ -10810,9 +11032,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true description: @@ -10830,22 +11052,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true type: @@ -10915,29 +11137,29 @@ components: issuedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: |- The time the invoice was issued. Depending on the status of the invoice this can mean multiple things: - draft, gathering: The time the invoice will be issued based on the workflow settings. - issued: The time the invoice was issued. - example: '2023-01-01T01:01:01.001Z' readOnly: true draftUntil: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: |- The time until the invoice is in draft status. On draft invoice creation it is calculated from the workflow settings. If manual approval is required, the draftUntil time is set. - example: '2023-01-01T01:01:01.001Z' dueAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Due time of the fulfillment of the invoice (if available). - example: '2023-01-01T01:01:01.001Z' readOnly: true period: allOf: @@ -10946,11 +11168,11 @@ components: voidedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: |- The time the invoice was voided. If the invoice was voided, this field will be set to the time the invoice was voided. - example: '2023-01-01T01:01:01.001Z' readOnly: true workflow: allOf: @@ -11127,29 +11349,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ID of the line. - example: 01G65Z755AFWAKHE12NY0CQ9FH managedBy: allOf: - $ref: '#/components/schemas/InvoiceLineManagedBy' @@ -11223,8 +11445,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' externalIds: allOf: - $ref: '#/components/schemas/InvoiceLineAppExternalIds' @@ -11301,8 +11523,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' type: type: string enum: @@ -11328,9 +11550,9 @@ components: default: regular id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The ID of the line. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: |- InvoiceFlatFeeLineReplaceUpdate represents the update model for a flat fee invoice line. @@ -11383,8 +11605,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' type: type: string enum: @@ -11410,9 +11632,9 @@ components: default: regular customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The customer this line item belongs to. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: InvoiceFlatFeePendingLineCreate represents the create model for an invoice line that is sold to the customer as a manually added fee. InvoiceGenericDocumentRef: type: object @@ -11471,29 +11693,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ID of the charge or discount. - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true percent: allOf: @@ -11601,6 +11823,7 @@ components: description: TaxConfig stores the configuration for a tax line relative to an invoice line. InvoiceNumber: type: string + example: INV-2024-01-01-01 minLength: 1 maxLength: 256 description: |- @@ -11610,7 +11833,6 @@ components: The uniqueness depends on a lot of factors: - app setting (unique per app or unique per customer) - multiple app scenarios (multiple apps generating invoices with the same prefix) - example: INV-2024-01-01-01 InvoiceOrderBy: type: string enum: @@ -11630,16 +11852,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -11673,9 +11895,9 @@ components: type: array items: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH description: |- The pending line items to include in the invoice, if not provided: - all line items that have invoice_at < asOf will be included @@ -11684,16 +11906,16 @@ components: asOf: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: |- The time as of which the invoice is created. If not provided, the current time is used. - example: '2023-01-01T01:01:01.001Z' customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The customer ID for which to create the invoice. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: |- BillingInvoiceActionInput is the input for creating an invoice. @@ -11706,9 +11928,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The ID of the invoice. - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true number: allOf: @@ -11739,13 +11961,13 @@ components: draftUntil: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: |- The time until the invoice is in draft status. On draft invoice creation it is calculated from the workflow settings. If manual approval is required, the draftUntil time is set. - example: '2023-01-01T01:01:01.001Z' supplier: allOf: - $ref: '#/components/schemas/BillingPartyReplaceUpdate' @@ -11806,8 +12028,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' type: type: string enum: @@ -11833,12 +12055,12 @@ components: default: regular id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- ID of the line. If not specified it will be auto-generated. When discounts are specified, this must be provided, so that the discount can reference it. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: InvoiceSimulationFlatFeeLine represents a flat fee line item that can be input to the simulation endpoint. InvoiceSimulationInput: type: object @@ -11916,8 +12138,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' type: type: string enum: @@ -11943,12 +12165,12 @@ components: description: The quantity of the item used before this line's period, if the line is billed progressively. id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- ID of the line. If not specified it will be auto-generated. When discounts are specified, this must be provided, so that the discount can reference it. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: InvoiceSimulationUsageBasedLine represents a usage-based line item that can be input to the simulation endpoint. InvoiceStatus: type: string @@ -12081,29 +12303,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ID of the line. - example: 01G65Z755AFWAKHE12NY0CQ9FH managedBy: allOf: - $ref: '#/components/schemas/InvoiceLineManagedBy' @@ -12177,8 +12399,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' externalIds: allOf: - $ref: '#/components/schemas/InvoiceLineAppExternalIds' @@ -12260,8 +12482,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' type: type: string enum: @@ -12279,9 +12501,9 @@ components: description: The feature that the usage is based on. id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The ID of the line. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: |- InvoiceUpdateUsageBasedLineReplaceUpdate represents the update model for an UBP invoice line. @@ -12334,8 +12556,8 @@ components: invoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time this line item should be invoiced. - example: '2023-01-01T01:01:01.001Z' type: type: string enum: @@ -12353,9 +12575,9 @@ components: description: The feature that the usage is based on. customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The customer this line item belongs to. - example: 01G65Z755AFWAKHE12NY0CQ9FH description: InvoiceUsageBasedLineCreateWithCustomer represents the create model for an invoice line that is sold to the customer based on usage. InvoiceWorkflowInvoicingSettingsReplaceUpdate: type: object @@ -12367,14 +12589,14 @@ components: draftPeriod: type: string format: ISO8601 - description: The period for the invoice to be kept in draft status for manual reviews. example: P1D + description: The period for the invoice to be kept in draft status for manual reviews. default: P1D dueAfter: type: string format: ISO8601 - description: The period after which the invoice is due. example: P1D + description: The period after which the invoice is due. default: P7D defaultTaxConfig: allOf: @@ -12410,13 +12632,13 @@ components: readOnly: true sourceBillingProfileId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- sourceBillingProfileID is the billing profile on which the workflow was based on. The profile is snapshotted on invoice creation, after which it can be altered independently of the profile itself. - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true workflow: allOf: @@ -12497,11 +12719,6 @@ components: items: $ref: '#/components/schemas/AppCapability' description: The app's capabilities. - description: |- - A marketplace listing. - Represent an available app in the app marketplace that can be installed to the organization. - - Marketplace apps only exist in config so they don't extend the Resource model. example: type: stripe name: Stripe @@ -12519,6 +12736,11 @@ components: key: stripe_collect_payments name: Collect Payments description: Stripe payments collects outstanding revenue with Stripe customer's default payment method. + description: |- + A marketplace listing. + Represent an available app in the app marketplace that can be installed to the organization. + + Marketplace apps only exist in config so they don't extend the Resource model. MarketplaceListingList: type: object required: @@ -12562,17 +12784,17 @@ components: MeasureUsageFromTime: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' Metadata: type: object additionalProperties: type: string + example: + externalId: 019142cc-a016-796a-8113-1a942fecd26d description: |- Set of key-value pairs. Metadata can be used to store additional information about a resource. - example: - externalId: 019142cc-a016-796a-8113-1a942fecd26d x-go-type: map[string]string Meter: type: object @@ -12585,9 +12807,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the meter. - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true slug: type: string @@ -12600,9 +12822,9 @@ components: example: tokens_total description: type: string + example: AI Token Usage minLength: 1 description: A description of the meter. - example: AI Token Usage aggregation: allOf: - $ref: '#/components/schemas/MeterAggregation' @@ -12613,11 +12835,12 @@ components: example: MINUTE eventType: type: string + example: prompt minLength: 1 description: The event type to aggregate. - example: prompt valueProperty: type: string + example: $.tokens minLength: 1 description: |- JSONPath expression to extract the value from the ingested event's data property. @@ -12625,20 +12848,18 @@ components: The ingested value for SUM, AVG, MIN, and MAX aggregations is a number or a string that can be parsed to a number. For UNIQUE_COUNT aggregation, the ingested value must be a string. For COUNT aggregation the valueProperty is ignored. - example: $.tokens groupBy: type: object additionalProperties: type: string + example: + type: $.type description: |- Named JSONPath expressions to extract the group by values from the event data. Keys must be unique and consist only alphanumeric and underscore characters. TODO: add key format enforcement - example: - type: $.type - description: A meter is a configuration that defines how to match and aggregate events. example: id: 01G65Z755AFWAKHE12NY0CQ9FH slug: tokens_total @@ -12650,6 +12871,7 @@ components: groupBy: model: $.model type: $.type + description: A meter is a configuration that defines how to match and aggregate events. x-go-type-import: path: github.com/openmeterio/openmeter/pkg/models x-go-type: models.Meter @@ -12685,9 +12907,9 @@ components: example: tokens_total description: type: string + example: AI Token Usage minLength: 1 description: A description of the meter. - example: AI Token Usage aggregation: allOf: - $ref: '#/components/schemas/MeterAggregation' @@ -12698,11 +12920,12 @@ components: example: MINUTE eventType: type: string + example: prompt minLength: 1 description: The event type to aggregate. - example: prompt valueProperty: type: string + example: $.tokens minLength: 1 description: |- JSONPath expression to extract the value from the ingested event's data property. @@ -12710,20 +12933,18 @@ components: The ingested value for SUM, AVG, MIN, and MAX aggregations is a number or a string that can be parsed to a number. For UNIQUE_COUNT aggregation, the ingested value must be a string. For COUNT aggregation the valueProperty is ignored. - example: $.tokens groupBy: type: object additionalProperties: type: string + example: + type: $.type description: |- Named JSONPath expressions to extract the group by values from the event data. Keys must be unique and consist only alphanumeric and underscore characters. TODO: add key format enforcement - example: - type: $.type - description: A meter is a configuration that defines how to match and aggregate events. example: slug: tokens_total description: AI Token Usage @@ -12734,6 +12955,7 @@ components: groupBy: model: $.model type: $.type + description: A meter is a configuration that defines how to match and aggregate events. x-go-type-import: path: github.com/openmeterio/openmeter/pkg/models x-go-type: models.Meter @@ -12745,32 +12967,32 @@ components: from: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' to: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' windowSize: $ref: '#/components/schemas/WindowSize' data: type: array items: $ref: '#/components/schemas/MeterQueryRow' - description: The result of a meter query. example: - from: '2023-01-01T00:00:00Z' - to: '2023-01-02T00:00:00Z' + from: 2023-01-01T00:00:00Z + to: 2023-01-02T00:00:00Z windowSize: DAY data: - value: 12 - windowStart: '2023-01-01T00:00:00Z' - windowEnd: '2023-01-02T00:00:00Z' + windowStart: 2023-01-01T00:00:00Z + windowEnd: 2023-01-02T00:00:00Z subject: customer-1 groupBy: model: gpt-4-turbo type: prompt + description: The result of a meter query. MeterQueryRow: type: object required: @@ -12783,28 +13005,28 @@ components: windowStart: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' windowEnd: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' subject: type: string groupBy: type: object additionalProperties: type: string - description: A row in the result of a meter query. example: value: 12 - windowStart: '2023-01-01T00:00:00Z' - windowEnd: '2023-01-02T00:00:00Z' + windowStart: 2023-01-01T00:00:00Z + windowEnd: 2023-01-02T00:00:00Z subject: customer-1 groupBy: model: gpt-4-turbo type: prompt + description: A row in the result of a meter query. x-go-type-import: path: github.com/openmeterio/openmeter/pkg/models x-go-type: models.MeterQueryRow @@ -12836,9 +13058,9 @@ components: properties: id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Identifies the notification channel. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV title: Channel Unique Identifier readOnly: true type: @@ -12866,16 +13088,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -12902,29 +13124,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Identifies the notification channel. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV title: Channel Unique Identifier readOnly: true type: @@ -12935,20 +13157,20 @@ components: title: Channel Type name: type: string + example: customer-webhook description: User friendly name of the channel. title: Channel Name - example: customer-webhook disabled: type: boolean + example: true description: Whether the channel is disabled or not. title: Channel Disabled - example: true default: false url: type: string + example: https://example.com/webhook description: Webhook URL where the notification is sent. title: Webhook URL - example: https://example.com/webhook customHeaders: type: object additionalProperties: @@ -12957,13 +13179,13 @@ components: title: Custom HTTP Headers signingSecret: type: string + example: whsec_S6g2HLnTwd9AhHwUIMFggVS9OfoPafN8 pattern: ^(whsec_)?[a-zA-Z0-9+/=]{32,100}$ description: |- Signing secret used for webhook request validation on the receiving end. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24 title: Signing Secret - example: whsec_S6g2HLnTwd9AhHwUIMFggVS9OfoPafN8 description: Notification channel with webhook type. NotificationChannelWebhookCreateRequest: type: object @@ -12980,20 +13202,20 @@ components: title: Channel Type name: type: string + example: customer-webhook description: User friendly name of the channel. title: Channel Name - example: customer-webhook disabled: type: boolean + example: true description: Whether the channel is disabled or not. title: Channel Disabled - example: true default: false url: type: string + example: https://example.com/webhook description: Webhook URL where the notification is sent. title: Webhook URL - example: https://example.com/webhook customHeaders: type: object additionalProperties: @@ -13002,13 +13224,13 @@ components: title: Custom HTTP Headers signingSecret: type: string + example: whsec_S6g2HLnTwd9AhHwUIMFggVS9OfoPafN8 pattern: ^(whsec_)?[a-zA-Z0-9+/=]{32,100}$ description: |- Signing secret used for webhook request validation on the receiving end. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24 title: Signing Secret - example: whsec_S6g2HLnTwd9AhHwUIMFggVS9OfoPafN8 description: Request with input parameters for creating new notification channel with webhook type. NotificationEvent: type: object @@ -13022,9 +13244,9 @@ components: properties: id: type: string + example: 01J2KNP1YTXQRXHTDJ4KPR7PZ0 pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier of the notification event. - example: 01J2KNP1YTXQRXHTDJ4KPR7PZ0 title: Event Identifier readOnly: true type: @@ -13036,8 +13258,8 @@ components: createdAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Timestamp when the notification event was created in RFC 3339 format. - example: '2023-01-01T01:01:01.001Z' title: Creation Time readOnly: true rule: @@ -13074,9 +13296,9 @@ components: properties: id: type: string + example: 01J2KNP1YTXQRXHTDJ4KPR7PZ0 pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the notification event the payload belongs to. - example: 01J2KNP1YTXQRXHTDJ4KPR7PZ0 title: Notification Event Identifier readOnly: true type: @@ -13089,8 +13311,8 @@ components: timestamp: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Timestamp when the notification event was created in RFC 3339 format. - example: '2023-01-01T01:01:01.001Z' title: Creation Time readOnly: true data: @@ -13146,20 +13368,20 @@ components: state: allOf: - $ref: '#/components/schemas/NotificationEventDeliveryStatusState' - description: Delivery state of the notification event to the channel. example: SUCCESS + description: Delivery state of the notification event to the channel. readOnly: true reason: type: string + example: Failed to dispatch event due to provider error. description: The reason of the last deliverry state update. title: State Reason - example: Failed to dispatch event due to provider error. readOnly: true updatedAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Timestamp of when the status was last updated in RFC 3339 format. - example: '2023-01-01T01:01:01.001Z' title: Last Update Time readOnly: true channel: @@ -13199,16 +13421,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -13244,29 +13466,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true id: type: string + example: 01ARZ3NDEKTSV4RRFFQ69G5FAV pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: Identifies the notification rule. - example: 01ARZ3NDEKTSV4RRFFQ69G5FAV title: Rule Unique Identifier readOnly: true type: @@ -13277,14 +13499,14 @@ components: title: Rule Type name: type: string + example: Balance threshold reached description: The user friendly name of the notification rule. title: Rule Name - example: Balance threshold reached disabled: type: boolean + example: true description: Whether the rule is disabled or not. title: Rule Disabled - example: true default: false channels: type: array @@ -13324,14 +13546,14 @@ components: title: Rule Type name: type: string + example: Balance threshold reached description: The user friendly name of the notification rule. title: Rule Name - example: Balance threshold reached disabled: type: boolean + example: true description: Whether the rule is disabled or not. title: Rule Disabled - example: true default: false thresholds: type: array @@ -13345,9 +13567,9 @@ components: type: array items: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH minItems: 1 description: List of notification channels the rule is applied to. title: Channels @@ -13376,14 +13598,14 @@ components: value: type: number format: double + example: 100 description: Value of the threshold. title: Threshold Value - example: 100 type: allOf: - $ref: '#/components/schemas/NotificationRuleBalanceThresholdValueType' - description: Type of the threshold. example: NUMBER + description: Type of the threshold. description: Threshold value with multiple supported types. NotificationRuleBalanceThresholdValueType: type: string @@ -13418,16 +13640,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -13458,8 +13680,8 @@ components: dueAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: When the payment is due. - example: '2023-01-01T01:01:01.001Z' readOnly: true notes: type: string @@ -13545,13 +13767,13 @@ components: from: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: Period start time. - example: '2023-01-01T01:01:01.001Z' to: type: string format: date-time + example: 2023-02-01T01:01:01.001Z description: Period end time. - example: '2023-02-01T01:01:01.001Z' description: A period with a start and end time. Plan: type: object @@ -13568,9 +13790,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -13594,22 +13816,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true key: @@ -13635,15 +13857,15 @@ components: effectiveFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The date and time when the plan becomes effective. When not specified, the plan is a draft. - example: '2023-01-01T01:01:01.001Z' title: Effective start date readOnly: true effectiveTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The date and time when the plan is no longer effective. When not specified, the plan is effective indefinitely. - example: '2023-01-01T01:01:01.001Z' title: Effective end date readOnly: true status: @@ -13736,16 +13958,16 @@ components: properties: totalCount: type: integer - description: The items in the current page. example: 500 + description: The items in the current page. page: type: integer - description: The items in the current page. example: 1 + description: The items in the current page. pageSize: type: integer - description: The items in the current page. example: 100 + description: The items in the current page. items: type: array items: @@ -13789,9 +14011,9 @@ components: type: string format: duration nullable: true + example: P1Y description: The duration of the phase. title: Duration - example: P1Y rateCards: type: array items: @@ -13814,9 +14036,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The plan ID. - example: 01G65Z755AFWAKHE12NY0CQ9FH key: type: string minLength: 1 @@ -13898,8 +14120,8 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' name: type: string description: @@ -13920,17 +14142,17 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' name: type: string description: type: string customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH description: Create subscription based on plan. PortalToken: type: object @@ -13939,9 +14161,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true subject: type: string @@ -13949,8 +14171,8 @@ components: expiresAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' readOnly: true expired: type: boolean @@ -13958,21 +14180,21 @@ components: createdAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T01:01:01.001Z' readOnly: true token: type: string - description: The token is only returned at creation. example: om_portal_IAnD3PpWW2A2Wr8m9jfzeHlGX8xmCXwG.y5q4S-AWqFu6qjfaFz0zQq4Ez28RsnyVwJffX5qxMvo + description: The token is only returned at creation. readOnly: true allowedMeterSlugs: type: array items: type: string - description: Optional, if defined only the specified meters will be allowed. example: - tokens_total + description: Optional, if defined only the specified meters will be allowed. description: |- A consumer portal token. @@ -14132,14 +14354,11 @@ components: allOf: - $ref: '#/components/schemas/FlatPriceWithPaymentTerm' nullable: true + example: {} description: |- The price of the rate card. When null, the feature or service is free. title: Price - example: - type: flat - amount: '100' - paymentTerm: in_arrears description: A flat fee rate card defines a one-time purchase or a recurring fee. RateCardMeteredEntitlement: type: object @@ -14207,8 +14426,8 @@ components: config: type: string format: json - description: The JSON parsable config of the entitlement. This value is also returned when checking entitlement access and it is useful for configuring fine-grained access settings to the feature, implemented in your own system. Has to be an object. example: '{ "integrations": ["github"] }' + description: The JSON parsable config of the entitlement. This value is also returned when checking entitlement access and it is useful for configuring fine-grained access settings to the feature, implemented in your own system. Has to be an object. description: Entitlement template of a static entitlement. RateCardUsageBased: type: object @@ -14314,14 +14533,14 @@ components: anchor: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: A date-time anchor to base the recurring period on. - example: '2023-01-01T01:01:01.001Z' title: Anchor time - description: Recurring period with an interval and an anchor. example: interval: DAY intervalISO: P1D - anchor: '2023-01-01T01:01:01.001Z' + anchor: 2023-01-01T01:01:01.001Z + description: Recurring period with an interval and an anchor. RecurringPeriodCreateInput: type: object required: @@ -14335,13 +14554,13 @@ components: anchor: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: A date-time anchor to base the recurring period on. - example: '2023-01-01T01:01:01.001Z' title: Anchor time - description: Recurring period with an interval and an anchor. example: interval: DAY - anchor: '2023-01-01T01:01:01.001Z' + anchor: 2023-01-01T01:01:01.001Z + description: Recurring period with an interval and an anchor. RecurringPeriodInterval: anyOf: - type: string @@ -14370,8 +14589,8 @@ components: effectiveAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time at which the reset takes effect, defaults to now. The reset cannot be in the future. The provided value is truncated to the minute due to how historical meter data is stored. - example: '2023-01-01T01:01:01.001Z' retainAnchor: type: boolean description: |- @@ -14399,9 +14618,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -14425,22 +14644,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true listing: @@ -14480,11 +14699,11 @@ components: readOnly: true id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- The app ID. If not provided, it will use the global default for the app type. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: App ID type: type: string @@ -14531,9 +14750,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -14557,22 +14776,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true listing: @@ -14606,7 +14825,6 @@ components: description: |- The masked API key. Only shows the first 8 and last 3 characters. - description: A installed Stripe app object. example: id: 01G65Z755AFWAKHE12NY0CQ9FH type: stripe @@ -14630,11 +14848,12 @@ components: key: stripe_collect_payments name: Collect Payments description: Stripe payments collects outstanding revenue with Stripe customer's default payment method. - createdAt: '2024-01-01T01:01:01.001Z' - updatedAt: '2024-01-01T01:01:01.001Z' + createdAt: 2024-01-01T01:01:01.001Z + updatedAt: 2024-01-01T01:01:01.001Z stripeAccountId: acct_123456789 livemode: true maskedAPIKey: sk_live_************abc + description: A installed Stripe app object. StripeCheckoutSessionMode: type: string enum: @@ -14648,11 +14867,11 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: |- The app ID. If not provided, it will use the global default for the app type. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: App ID type: type: string @@ -14671,10 +14890,10 @@ components: stripeDefaultPaymentMethodId: type: string description: The Stripe default payment method ID. - description: Stripe Customer App Data. example: type: stripe stripeCustomerId: cus_xxxxxxxxxxxxxx + description: Stripe Customer App Data. StripePaymentIntentStatus: type: string enum: @@ -14724,13 +14943,13 @@ components: properties: code: type: string + example: txcd_10000000 pattern: ^txcd_\d{8}$ description: |- Product tax code. See: https://docs.stripe.com/tax/tax-codes title: Tax code - example: txcd_10000000 description: The tax config for Stripe. StripeWebhookEvent: type: object @@ -14771,19 +14990,19 @@ components: properties: namespaceId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH appId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ULID (Universally Unique Lexicographically Sortable Identifier). - example: 01G65Z755AFWAKHE12NY0CQ9FH description: Stripe webhook response. Subject: type: object @@ -14793,49 +15012,48 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the subject. - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true key: type: string - description: A unique, human-readable identifier for the subject. example: customer-id + description: A unique, human-readable identifier for the subject. displayName: type: string nullable: true - description: A human-readable display name for the subject. example: Customer Name + description: A human-readable display name for the subject. metadata: type: object additionalProperties: {} nullable: true - example: - hubspotId: '123456' + example: {} currentPeriodStart: type: string format: date-time + example: 2023-01-01T00:00:00Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T00:00:00Z' currentPeriodEnd: type: string format: date-time + example: 2023-02-01T00:00:00Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-02-01T00:00:00Z' stripeCustomerId: type: string nullable: true example: cus_JMOlctsKV8 - description: A subject is a unique identifier for a user or entity. example: id: 01G65Z755AFWAKHE12NY0CQ9FH key: customer-id displayName: Customer Name metadata: hubspotId: '123456' - currentPeriodStart: '2023-01-01T00:00:00Z' - currentPeriodEnd: '2023-02-01T00:00:00Z' + currentPeriodStart: 2023-01-01T00:00:00Z + currentPeriodEnd: 2023-02-01T00:00:00Z stripeCustomerId: cus_JMOlctsKV8 + description: A subject is a unique identifier for a user or entity. SubjectUpsert: type: object required: @@ -14843,42 +15061,41 @@ components: properties: key: type: string - description: A unique, human-readable identifier for the subject. example: customer-id + description: A unique, human-readable identifier for the subject. displayName: type: string nullable: true - description: A human-readable display name for the subject. example: Customer Name + description: A human-readable display name for the subject. metadata: type: object additionalProperties: {} nullable: true - example: - hubspotId: '123456' + example: {} currentPeriodStart: type: string format: date-time + example: 2023-01-01T00:00:00Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-01-01T00:00:00Z' currentPeriodEnd: type: string format: date-time + example: 2023-02-01T00:00:00Z description: '[RFC3339](https://tools.ietf.org/html/rfc3339) formatted date-time string in UTC.' - example: '2023-02-01T00:00:00Z' stripeCustomerId: type: string nullable: true example: cus_JMOlctsKV8 - description: A subject is a unique identifier for a user or entity. example: key: customer-id displayName: Customer Name metadata: hubspotId: '123456' - currentPeriodStart: '2023-01-01T00:00:00Z' - currentPeriodEnd: '2023-02-01T00:00:00Z' + currentPeriodStart: 2023-01-01T00:00:00Z + currentPeriodEnd: 2023-02-01T00:00:00Z stripeCustomerId: cus_JMOlctsKV8 + description: A subject is a unique identifier for a user or entity. Subscription: type: object required: @@ -14893,9 +15110,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -14919,34 +15136,34 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence start of the resource. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence end of the resource. - example: '2023-01-01T01:01:01.001Z' status: allOf: - $ref: '#/components/schemas/SubscriptionStatus' @@ -14954,9 +15171,9 @@ components: readOnly: true customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The customer ID of the subscription. - example: 01G65Z755AFWAKHE12NY0CQ9FH plan: allOf: - $ref: '#/components/schemas/PlanReference' @@ -15039,9 +15256,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -15065,34 +15282,34 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence start of the resource. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence end of the resource. - example: '2023-01-01T01:01:01.001Z' status: allOf: - $ref: '#/components/schemas/SubscriptionStatus' @@ -15100,9 +15317,9 @@ components: readOnly: true customerId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The customer ID of the subscription. - example: 01G65Z755AFWAKHE12NY0CQ9FH plan: allOf: - $ref: '#/components/schemas/PlanReference' @@ -15134,9 +15351,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -15160,34 +15377,34 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence start of the resource. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The cadence end of the resource. - example: '2023-01-01T01:01:01.001Z' key: type: string minLength: 1 @@ -15232,14 +15449,11 @@ components: allOf: - $ref: '#/components/schemas/TieredPriceWithCommitments' nullable: true + example: {} description: |- The price of the rate card. When null, the feature or service is free. title: Price - example: - type: flat - amount: '100' - paymentTerm: in_arrears included: allOf: - $ref: '#/components/schemas/SubscriptionItemIncluded' @@ -15277,19 +15491,19 @@ components: type: string format: duration nullable: true + example: P1Y description: |- Interval after the subscription starts to transition to the phase. When null, the phase starts immediately after the subscription starts. title: Start after - example: P1Y duration: type: string format: duration + example: P1M description: |- The intended duration of the new phase. Duration is required when the phase will not be the last phase. title: Duration - example: P1M discounts: type: array items: @@ -15322,9 +15536,9 @@ components: properties: id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: A unique identifier for the resource. - example: 01G65Z755AFWAKHE12NY0CQ9FH title: ID readOnly: true name: @@ -15348,22 +15562,22 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true key: @@ -15381,13 +15595,13 @@ components: activeFrom: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The time from which the phase is active. - example: '2023-01-01T01:01:01.001Z' activeTo: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: The until which the Phase is active. - example: '2023-01-01T01:01:01.001Z' items: type: array items: @@ -15517,29 +15731,29 @@ components: type: type: string format: uri - description: Type contains a URI that identifies the problem type. example: about:blank + description: Type contains a URI that identifies the problem type. default: about:blank title: type: string - description: A a short, human-readable summary of the problem type. example: Bad Request + description: A a short, human-readable summary of the problem type. status: type: integer format: int16 + example: 400 minimum: 400 maximum: 599 description: The HTTP status code generated by the origin server for this occurrence of the problem. - example: 400 detail: type: string - description: A human-readable explanation specific to this occurrence of the problem. example: The request body must be a JSON object. + description: A human-readable explanation specific to this occurrence of the problem. instance: type: string format: uri - description: A URI reference that identifies the specific occurrence of the problem. example: urn:request:local/JMOlctsKV8-000001 + description: A URI reference that identifies the specific occurrence of the problem. additionalProperties: anyOf: - type: string @@ -15605,29 +15819,29 @@ components: createdAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was created. - example: '2024-01-01T01:01:01.001Z' title: Creation Time readOnly: true updatedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was last updated. - example: '2024-01-01T01:01:01.001Z' title: Last Update Time readOnly: true deletedAt: type: string format: date-time + example: 2024-01-01T01:01:01.001Z description: Timestamp of when the resource was permanently deleted. - example: '2024-01-01T01:01:01.001Z' title: Deletion Time readOnly: true id: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: ID of the charge or discount. - example: 01G65Z755AFWAKHE12NY0CQ9FH readOnly: true severity: allOf: @@ -15729,9 +15943,9 @@ components: properties: lineId: type: string + example: 01G65Z755AFWAKHE12NY0CQ9FH pattern: ^[0-7][0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{25}$ description: The line item ID to override. - example: 01G65Z755AFWAKHE12NY0CQ9FH action: allOf: - $ref: '#/components/schemas/VoidInvoiceActionCreateItem' @@ -15781,11 +15995,11 @@ components: nextInvoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: |- The time at which the line item should be invoiced again. If not provided, the line item will be re-invoiced now. - example: '2023-01-01T01:01:01.001Z' description: VoidInvoiceLinePendingAction describes how to handle the voidied line item in the invoice. VoidInvoiceLinePendingActionCreateItem: type: object @@ -15800,11 +16014,11 @@ components: nextInvoiceAt: type: string format: date-time + example: 2023-01-01T01:01:01.001Z description: |- The time at which the line item should be invoiced again. If not provided, the line item will be re-invoiced now. - example: '2023-01-01T01:01:01.001Z' description: VoidInvoiceLinePendingAction describes how to handle the voidied line item in the invoice. WindowSize: type: string