openapi3_parser icon indicating copy to clipboard operation
openapi3_parser copied to clipboard

Open API 3 Parser/Validator for Ruby

Results 5 openapi3_parser issues
Sort by recently updated
recently updated
newest added

I was using this gem to check if a spec created programmatically was valid, using `parser.valid?`. Yet, using this [VSCode extension](https://marketplace.visualstudio.com/items?itemName=42Crunch.vscode-openapi), I've noticed an error this gem wasn't able to...

https://www.rfc-editor.org/rfc/rfc6901 > Because the characters '\~' (%x7E) and '/' (%x2F) have special meanings in JSON Pointer, '\~' needs to be encoded as '~0' and '/' needs to be encoded as...

Hey! ``` document = Openapi3Parser.load_url("https://ark0f.github.io/tg-bot-api/openapi.json") p document.node_at("#/components/schemas/Error/properties/ok/type") ``` Expected behavior: false In fact: nil

Hey! Congrats for you gem, it is really amazing! I was wondering if there is any way to convert the `Openapi3Parser.load()` output to hash or JSON. In my case I...