You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this was interpreted as enum being a required property, when in reality it's optional and treating it as such removes the ability for applications to set the specificied variables with an arbitrary value
Without enum:
With enum:
The text was updated successfully, but these errors were encountered:
Per https://spec.openapis.org/oas/v3.1.0#fixed-fields-4,
enum
is An enumeration of string values to be used if the substitution options are from a limited set. The array MUST NOT be empty.I think this was interpreted as enum being a required property, when in reality it's optional and treating it as such removes the ability for applications to set the specificied variables with an arbitrary value
Without
![image](https://private-user-images.githubusercontent.com/42647963/379513409-0def08d6-5ccd-4ee4-a84c-4454949e1e53.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2NTQxOTQsIm5iZiI6MTczOTY1Mzg5NCwicGF0aCI6Ii80MjY0Nzk2My8zNzk1MTM0MDktMGRlZjA4ZDYtNWNjZC00ZWU0LWE4NGMtNDQ1NDk0OWUxZTUzLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDIxMTEzNFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWE0MGRiNTNmYzVjNzgxNTA3ODcxYTQ3MDc0ZmY1MDMyNDA3MGI0YTYwY2U0ZTJjN2M3MDQwZTdkMjdhZmQ0MTgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.NqwwG_MbpkD-I5uEPfrh8mWKE23-6uOnRh4kSLG1k18)
enum
:With
![image](https://private-user-images.githubusercontent.com/42647963/379513523-31f34e6d-40a0-4927-89ac-d5a619777a8f.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2NTQxOTQsIm5iZiI6MTczOTY1Mzg5NCwicGF0aCI6Ii80MjY0Nzk2My8zNzk1MTM1MjMtMzFmMzRlNmQtNDBhMC00OTI3LTg5YWMtZDVhNjE5Nzc3YThmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDIxMTEzNFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWE5NzNiNmYwNTc1NzBkNDU0MzljY2VkZjg1NzkwOGIyNWJiMjU5N2I3NzBkNzAxNTdhMzQ5YmJkNzFlZWU1NjMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.B1Cs9k52-VZ_VoqQve7vmKMPMrTuL8oKfpr9MmaCqyQ)
enum
:The text was updated successfully, but these errors were encountered: