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
Hey, thank you for creating this repository, I really like it on paper and hopefully I'll be able to utilize and contribute as much as I can :)
I just spend a good amount of time wondering why my schema doesn't work, I've validated it using Redocly OpenAPI extension in VSCode, I've used Swagger editor and validated (as the error suggests) using openapi-spec-validator package. Turns out my scheme is ok but rororo would not accept it anyway, to have some context this is the error I'm speaking about:
I've been trying to break/fix my code in many ways but managed to fix it by adding quotation marks to every string in my file, so instead of doing this (which is acceptable by all other validators):
contact:
name: Damian Fajfer
rororo requires me to write it with quotation marks:
contact:
name: "Damian Fajfer"
My guess is there's no reason for enforcing quotation marks and both versions should work, correct?
The text was updated successfully, but these errors were encountered:
is completely correct OpenAPI schema, my only guess the error caused by obsolete version of openapi-spec-validator, which still supported by rororo, but I plan to fix this in #149
Hey, thank you for creating this repository, I really like it on paper and hopefully I'll be able to utilize and contribute as much as I can :)
I just spend a good amount of time wondering why my schema doesn't work, I've validated it using Redocly OpenAPI extension in VSCode, I've used Swagger editor and validated (as the error suggests) using
openapi-spec-validator
package. Turns out my scheme is ok but rororo would not accept it anyway, to have some context this is the error I'm speaking about:I've been trying to break/fix my code in many ways but managed to fix it by adding quotation marks to every string in my file, so instead of doing this (which is acceptable by all other validators):
rororo requires me to write it with quotation marks:
My guess is there's no reason for enforcing quotation marks and both versions should work, correct?
The text was updated successfully, but these errors were encountered: