Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
swagger-tools
Advanced tools
The project provides various tools for integrating and interacting with Swagger. This project is in its infancy but what is within the repository should be fully tested and reusable. Please visit the issue tracker to see what issues we are aware of and what features/enhancements we are working on.
swagger-tools is distributed via NPM so installation is the usual: npm install swagger-tools --save
The swagger-tools module currently exposes one property: v1_2
. This is a reference to an object that has the
following structure:
docsUrl
: This is a link to the Swagger documentation for the corresponding specification versionschemasUrl
: This is a link to the Swagger JSON Schema files for the corresponding specification versionversion
: This is the Swagger specification versionschemas
: This is an object where the keys are the Swagger JSON Schema file names and the object is the loaded schema
contentsvalidate
: This is a function used to validate a Swagger document, as a JavaScript object, against a Swagger schema
filevalidateApi
: This is a function used to validate a "full API" of Swagger documents including a resource listing and
an array of API declarationsHere is an example showing how to use both versions of the validate
function (For more details, the sources are
documented):
var spec = require('swagger-tools').v1_2;
var petJson = require('./samples/1.2/pet.json');
var rlJson = require('./samples/1.2/resource-listing.json');
var petResults = spec.validate(petJson); // The default schema used is 'apiDeclaration.json'
var rlResults = spec.validate(rlJson, 'resourceListing.json');
var apiResults = spec.validateApi(rlJson, [petJson]);
This project uses Gulp for building so npm install -g gulp
once you clone this project. Running gulp
in the
project root will lint check the source code and run the unit tests.
FAQs
Various tools for using and integrating with Swagger.
We found that swagger-tools demonstrated a not healthy version release cadence and project activity because the last version was released 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.