Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
get-openapi-examples
Advanced tools
Extract all possible paths present in openapi.yaml based on paths and the provided examples
openapi.yaml
based on paths and the provided examplesThis might be useful, for example, for testing routes. It supports different types of examples, and variables may be in the path or in the query.
If you have a openapi.yaml
file like this one, for example:
paths:
/coordinates:
get:
operationId: getDataByCoordinates
summary: Get data by Coordinates in query
parameters:
- in: query
name: lat
schema:
type: string
example: '40.153687'
description: Latitude of the point
- in: query
name: lon
schema:
type: string
example: '-8.514602'
description: Longitude of the point
/district/{district}:
get:
operationId: getDistrict
summary: Data of Distrito
parameters:
- in: path
name: district
required: true
schema:
type: string
examples:
porto:
value: Porto
summary: District of Porto
lisbon:
value: Lisbon
summary: District of Lisbon
/district/{district}/altimetry:
get:
operationId: getDistrictAltimetry
summary: Altimetry of Distrito
parameters:
- in: path
name: district
required: true
schema:
type: string
example: Porto
Then:
const getOpenapiExamples = require('get-openapi-examples')
console.log(getOpenapiExamples('/path/to/openapi.yaml'))
/*
[
'/coordinates?lat=40.153687&lon=-8.514602',
'/district/Porto',
'/district/Lisbon',
'/district/Porto/altimetry'
}
*/
FAQs
Extract all possible paths present in openapi.yaml based on paths and the provided examples
We found that get-openapi-examples 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.