
Security News
CISA’s 2025 SBOM Guidance Adds Hashes, Licenses, Tool Metadata, and Context
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
This a Ruby based parser/validator for OpenAPI 3. It is used to convert an OpenAPI file (can be a local file, a URL, a string or even a Ruby hash) into an object graph with a simple API that follows the OpenAPI specification.
Basic example:
require "openapi3_parser"
document = Openapi3Parser.load_url("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml")
document.paths["/pets"].get.summary
# => "List all pets"
It aims to support 100% of the OpenAPI 3.0 specification, with key features being:
I've wrote a blog post reflecting on the decisions involved in building this parser in How to write an OpenAPI 3 parser.
# by URL
Openapi3Parser.load_url("https://raw.githubusercontent.com/kevindew/openapi3_parser/main/spec/support/examples/petstore-expanded.yaml")
# by path to file
Openapi3Parser.load_file("spec/support/examples/uber.yaml")
# by File
Openapi3Parser.load(File.open("spec/support/examples/uber.yaml"))
# by String
Openapi3Parser.load('{ "openapi": "3.0.0", "info": { "title": "API", "version": "1.0.0" }, "paths": {} }')
# by Hash
Openapi3Parser.load(openapi: "3.0.0", info: { title: "API", version: "1.0.0" }, paths: {})
document = Openapi3Parser.load(openapi: "3.0.0", info: {}, paths: {})
document.valid?
# => false
document.errors
# => Openapi3Parser::Validation::ErrorCollection(errors: {"#/info"=>["Missing required fields: title and version"]})
document = Openapi3Parser.load_url("https://raw.githubusercontent.com/kevindew/openapi3_parser/main/spec/support/examples/petstore-expanded.yaml")
# by objects
document.info.terms_of_service
# => "http://swagger.io/terms/"
document.paths.keys
# => ["/pets", "/pets/{id}"]
document.paths["/pets"].get.parameters.map(&:name)
# => ["tags", "limit"]
# by hash syntax
document["info"]["termsOfService"]
=> "http://swagger.io/terms/"
document["paths"].keys
# => ["/pets", "/pets/{id}"]
document["paths"]["/pets"]["get"]["parameters"].map(&:name)
# => ["tags", "limit"]
# by a path to a node
document.node_at("#/paths/%2Fpets/get/operationId")
=> "findPets"
document.node_at("#/components/schemas/Pet/allOf/0/required/0")
=> "name"
# or combining
document.components.schemas["Pet"].node_at("#../NewPet")
=> Openapi3Parser::Node::Schema(#/components/schemas/NewPet)
You can learn more about the API on rubydoc.info
You can install this gem into your bundler application by adding this line to your Gemfile:
gem "openapi3_parser", "~> 0.10.0"
and then running $ bundle install
Or install the gem onto your machine via $ gem install openapi3_parser
This is currently a work in progress and will remain so until it reaches 1.0.
See TODO for details of the features still to implement.
FAQs
Unknown package
We found that openapi3_parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.