0.2.3 • Published 4 years ago

schema-api v0.2.3

Weekly downloads
5
License
-
Repository
github
Last release
4 years ago

schema-api

Serves up a JSON definition of a REST API. Enables self documenting services. Validates data against a JSON schema using tv4

Examples

var schemaAPI = require('schema-api')({
    nickname: 'PetService',
    validation: true
});

var app=express();
//validate the data returned from the database against the 'Cat' model using tv4
app.get('/cat.json', loadDatafromDB(), schemaAPI.validate('Cat'),handleErr);

The API schema will be served at /schema and /schema/PetService. The second url means that the Swagger-UI will display the nickname clearly.(https://github.com/wordnik/swagger-ui) This is useful if you are developing a set of micro services which may be deployed on different servers and domains. Each service can serve up a definition of its own API and this will work cross-domain. In production the API schema is not served and the Access-Control-Allow-Origin header is not set.

Options

nickname the name of the service shown by Swagger-UI and the also the final part of the url. schema the path to the schema which defaults to apiSchema.json in the same directory as the main module. validation indicates that you will use tv4 JSON validation. The models will be loaded from your schema file at startup.

Release History

VersionDateDescription
v0.2.32020-02-12Debug dependency upgrade to address security vulnerability
v0.2.22014-09-04Debug logging
v0.2.02014-08-22TV4 JSON validation
v0.1.22014-05-07Add Options request for Swagger UI in CORS situation
v0.1.12014-04-30Access-Control-Allow-Headers
v0.1.02014-04-29Initial Version

License

(The MIT License)

0.2.3

4 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago