Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nullable property to the "retries" field in api.yaml and order_re… #76

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add nullable property to the "retries" field in api.yaml and order_re…
…sponse.yml

- Added nullable property to the "retries" field in api.yaml and order_response.yml
- Allows the "retries" field to have a null value
  • Loading branch information
fcarrero committed Nov 12, 2024
commit d3586fdb93a64aad5d36f45eebd487feb5145c77
1 change: 1 addition & 0 deletions _build/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16166,6 +16166,7 @@ components:
failed
example: 3
format: int8
nullable: true
type: integer
metadata:
additionalProperties: true
Expand Down
1 change: 1 addition & 0 deletions schemas/orders/order_response.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ properties:
example: 3
format: int8
description: "Number of retries allowed before the checkout is marked as failed"
nullable: true
metadata:
additionalProperties: true
maxProperties: 100
Expand Down
Loading