
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
sequelize-json-schema
Advanced tools
Use your Sequelize models in JSON Schemas or Swagger
Main use case for this code is to generate models for hand crafted swagger.json.
This is a Node.js module available through the
npm registry. Installation is done using the
npm install
command:
$ npm install sequelize-json-schema
let Simple = sequelize.define('simple', {
title: Sequelize.STRING,
description: Sequelize.TEXT
});
let def = definition(Simple);
console.log(def);
And result will be:
{
type: 'object',
properties: {
id: {
type: 'integer',
format: 'int32'
},
title: { type: 'string' },
description: { type: 'string' },
createdAt: {
type: 'string',
format: 'date-time'
},
updatedAt: {
type: 'string',
format: 'date-time'
}
}
}
This tool generates definitions
part of the Swagger Manifest. So if you have Swagger definition for your API just extend definitions
with JSON generated by this tool.
{
"swagger": "2.0",
"info": {
"title": "API",
"version": "1.0.0"
},
"paths": {
"simple": {
"get": {
"parameters": [ ],
"responses": {
"200": { "$ref": "#/definitions/simple" }
}
}
}
},
"definitions": {
"simple": {
type: 'object',
properties: {
id: {
type: 'integer',
format: 'int32'
},
title: { type: 'string' },
description: { type: 'string' },
createdAt: {
type: 'string',
format: 'date-time'
},
updatedAt: {
type: 'string',
format: 'date-time'
}
}
}
}
}
FAQs
Use your Sequelize models in JSON Schemas or Swagger
The npm package sequelize-json-schema receives a total of 835 weekly downloads. As such, sequelize-json-schema popularity was classified as not popular.
We found that sequelize-json-schema 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.