Skip to content

Commit 5c32781

Browse files
authored
Merge pull request #3491 from karenetheridge/ether/fix-format-types
fix types to use an array rather than a string when multiple types are valid
2 parents 1d8ce42 + 3c5991b commit 5c32781

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

registries/_format/decimal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
owner: baywet
33
issue: 889
44
description: A fixed point decimal number of unspecified precision and range
5-
base_type: string, number
5+
base_type: [string, number]
66
layout: default
77
remarks: This format is used in a variety of conflicting ways and is not interoperable.
88
---

registries/_format/decimal128.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
owner:
33
issue:
44
description: A decimal floating-point number with 34 significant decimal digits
5-
base_type: string, number
5+
base_type: [string, number]
66
layout: default
77
---
88

registries/_format/int64.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
owner: DarrelMiller
33
issue:
44
description: signed 64-bit integer
5-
base_type: number, string
5+
base_type: [number, string]
66
layout: default
77
source: https://spec.openapis.org/oas/latest.html#data-types
88
source_label: OAS

0 commit comments

Comments
 (0)