Skip to content

fix: removes string type for large numbers as it's the wrong level of abstraction #4588

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

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion registries/_format/decimal.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
owner: baywet
issue: 889
description: A fixed point decimal number of unspecified precision and range
base_type: [string, number]
base_type: number
layout: default
remarks: This format is used in a variety of conflicting ways and is not interoperable.
---
Expand Down
2 changes: 1 addition & 1 deletion registries/_format/decimal128.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
owner:
issue:
description: A decimal floating-point number with 34 significant decimal digits
base_type: [string, number]
base_type: number
layout: default
---

Expand Down
2 changes: 1 addition & 1 deletion registries/_format/int64.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
owner: DarrelMiller
issue:
description: signed 64-bit integer
base_type: [number, string]
base_type: number
layout: default
source: https://spec.openapis.org/oas/latest.html#data-types
source_label: OAS
Expand Down
2 changes: 1 addition & 1 deletion registries/_format/uint64.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
owner: baywet
issue: 4564
description: unsigned 64-bit integer
base_type: [number, string]
base_type: number
layout: default
source: https://spec.openapis.org/oas/latest.html#data-types
source_label: OAS
Expand Down