diff --git a/mintlify/openapi.yaml b/mintlify/openapi.yaml index 73824427..28fbeb16 100644 --- a/mintlify/openapi.yaml +++ b/mintlify/openapi.yaml @@ -6568,7 +6568,7 @@ components: Quote: type: object required: - - quoteId + - id - status - expiresAt - createdAt @@ -6582,7 +6582,7 @@ components: - feesIncluded - transactionId properties: - quoteId: + id: type: string description: Unique identifier for this quote example: Quote:019542f5-b3e7-1d02-0000-000000000006 @@ -6757,11 +6757,11 @@ components: BulkCustomerImportJob: type: object required: - - jobId + - id - status - progress properties: - jobId: + id: type: string description: Unique identifier for the bulk import job example: Job:019542f5-b3e7-1d02-0000-000000000006 @@ -7010,7 +7010,7 @@ components: type: object required: - timestamp - - webhookId + - id - type properties: timestamp: @@ -7018,7 +7018,7 @@ components: format: date-time description: ISO8601 timestamp when the webhook was sent (can be used to prevent replay attacks) example: '2025-08-15T14:32:00Z' - webhookId: + id: type: string description: Unique identifier for this webhook delivery (can be used for idempotency) example: Webhook:019542f5-b3e7-1d02-0000-000000000007 diff --git a/openapi.yaml b/openapi.yaml index 73824427..28fbeb16 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -6568,7 +6568,7 @@ components: Quote: type: object required: - - quoteId + - id - status - expiresAt - createdAt @@ -6582,7 +6582,7 @@ components: - feesIncluded - transactionId properties: - quoteId: + id: type: string description: Unique identifier for this quote example: Quote:019542f5-b3e7-1d02-0000-000000000006 @@ -6757,11 +6757,11 @@ components: BulkCustomerImportJob: type: object required: - - jobId + - id - status - progress properties: - jobId: + id: type: string description: Unique identifier for the bulk import job example: Job:019542f5-b3e7-1d02-0000-000000000006 @@ -7010,7 +7010,7 @@ components: type: object required: - timestamp - - webhookId + - id - type properties: timestamp: @@ -7018,7 +7018,7 @@ components: format: date-time description: ISO8601 timestamp when the webhook was sent (can be used to prevent replay attacks) example: '2025-08-15T14:32:00Z' - webhookId: + id: type: string description: Unique identifier for this webhook delivery (can be used for idempotency) example: Webhook:019542f5-b3e7-1d02-0000-000000000007 diff --git a/openapi/components/schemas/customers/BulkCustomerImportJob.yaml b/openapi/components/schemas/customers/BulkCustomerImportJob.yaml index 1c74dc1e..50363037 100644 --- a/openapi/components/schemas/customers/BulkCustomerImportJob.yaml +++ b/openapi/components/schemas/customers/BulkCustomerImportJob.yaml @@ -1,10 +1,10 @@ type: object required: - - jobId + - id - status - progress properties: - jobId: + id: type: string description: Unique identifier for the bulk import job example: Job:019542f5-b3e7-1d02-0000-000000000006 diff --git a/openapi/components/schemas/quotes/Quote.yaml b/openapi/components/schemas/quotes/Quote.yaml index ffbe687d..44674750 100644 --- a/openapi/components/schemas/quotes/Quote.yaml +++ b/openapi/components/schemas/quotes/Quote.yaml @@ -1,6 +1,6 @@ type: object required: - - quoteId + - id - status - expiresAt - createdAt @@ -14,7 +14,7 @@ required: - feesIncluded - transactionId properties: - quoteId: + id: type: string description: Unique identifier for this quote example: Quote:019542f5-b3e7-1d02-0000-000000000006 diff --git a/openapi/components/schemas/webhooks/BaseWebhook.yaml b/openapi/components/schemas/webhooks/BaseWebhook.yaml index b2344204..7ba29727 100644 --- a/openapi/components/schemas/webhooks/BaseWebhook.yaml +++ b/openapi/components/schemas/webhooks/BaseWebhook.yaml @@ -1,7 +1,7 @@ type: object required: - timestamp - - webhookId + - id - type properties: timestamp: @@ -11,7 +11,7 @@ properties: ISO8601 timestamp when the webhook was sent (can be used to prevent replay attacks) example: '2025-08-15T14:32:00Z' - webhookId: + id: type: string description: >- Unique identifier for this webhook delivery (can be used for