Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
/ swagger-tools Public archive

A Node.js and browser module that provides tooling around Swagger.

License

Notifications You must be signed in to change notification settings

apigee-127/swagger-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Supported Swagger Versions

Features

  • Schema validation: For the file(s) supported by the Swagger specification, ensure they pass structural validation based on the JSON Schema associated with that version of the specification

Installation

swagger-tools is distributed via NPM so installation is the usual: npm install swagger-tools --save

Usage

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 version
  • schemasUrl: This is a link to the Swagger JSON Schema files for the corresponding specification version
  • verison: This is the Swagger specification version
  • schemas: This is an object where the keys are the Swagger JSON Schema file names and the object is the loaded schema contents
  • validate: This is a function used to validate a Swagger document, as a JavaScript object, against a Swagger schema file

Here 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');

Contributing

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.