Skip to content

use number type for pricing (these are floats and not integers) #771

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

Merged
merged 1 commit into from
Mar 20, 2023
Merged
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
8 changes: 4 additions & 4 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23556,12 +23556,12 @@ components:
Cost in US dollars, broken down into hourly and monthly charges.
properties:
hourly:
type: integer
type: number
description: Cost (in US dollars) per hour.
example: 0.03
x-linode-cli-display: 9
monthly:
type: integer
type: number
description: Cost (in US dollars) per month.
example: 20
x-linode-cli-display: 10
Expand All @@ -23583,12 +23583,12 @@ components:
description: Cost of enabling Backups for this Linode Type.
properties:
hourly:
type: integer
type: number
description: >
The cost (in US dollars) per hour to add Backups service.
example: 0.008
monthly:
type: integer
type: number
description: >
The cost (in US dollars) per month to add Backups service.
example: 5
Expand Down