-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Make patch optional in openapi field. #4929
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
base: v3.3-dev
Are you sure you want to change the base?
Changes from all commits
319f888
bc19f18
a590855
554f7d2
1025758
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -7,7 +7,7 @@ type: object | |||||
| properties: | ||||||
| openapi: | ||||||
| type: string | ||||||
| pattern: '^3\.2\.\d+(-.+)?$' | ||||||
| pattern: '^3\.2(\.\d+)?$' | ||||||
ralfhandl marked this conversation as resolved.
Show resolved
Hide resolved
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
...because "3.2.৪" should not be permitted (BENGALI DIGIT FOUR or U+09EA)
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @karenetheridge I think it would make sense to fix this (and only this) in separate pull requests for 3.3 and 3.2 (and maybe also for 3.1) and don't tie it to the stuck discussion on this PR. |
||||||
| $self: | ||||||
| type: string | ||||||
| format: uri-reference | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| openapi: 3.2.0 | ||
| openapi: "3.2" | ||
| info: | ||
| summary: My API's summary | ||
| title: My API | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| openapi: 3.2.0 | ||
| openapi: "3.2" | ||
| info: | ||
| title: API | ||
| version: 1.0.0 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| openapi: 3.2.0 | ||
| openapi: "3.2" | ||
| info: | ||
| title: API | ||
| version: 1.0.0 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| openapi: 3.2.0 | ||
| openapi: "3.2" | ||
| info: | ||
| title: API | ||
| version: 1.0.0 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.