
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
joi-to-openapi-definition
Advanced tools
Add Joi models to openAPI definition, using openapi-definition
Add Joi models to openAPI definition, using openapi-definition
$ npm install joi-to-openapi-definition
const Joi = require('@hapi/joi');
const j2od = require('joi-to-openapi-definition');
let definition = { // Your OpenApi definition
"openapi": "3.0.0",
"info": {
"title": "Sample API",
"description": "Optional multiline or single-line description in [CommonMark](http://commonmark.org/help/) or HTML.",
"version": "0.1.9"
},
"servers": [
{
"url": "http://api.example.com/v1",
"description": "Optional server description, e.g. Main (production) server"
},
{
"url": "http://staging-api.example.com",
"description": "Optional server description, e.g. Internal staging server for testing"
}
],
"paths": {}
};
const schema = Joi.object().keys({
username: Joi.string().alphanum().min(3).max(30).required(),
password: Joi.string().regex(/^[a-zA-Z0-9]{3,30}$/),
access_token: [Joi.string(), Joi.number()],
birthyear: Joi.number().integer().min(1900).max(2013),
email: Joi.string().email({ minDomainSegments: 2 })
}).with('username', 'birthyear').without('password', 'access_token');
// Add schema to OpenApi definition
j2od.add_joi_model(definition, 'schema', schema)
console.log(definition);
{
"openapi": "3.0.0",
"info": {
"title": "Sample API",
"description": "Optional multiline or single-line description in [CommonMark](http://commonmark.org/help/) or HTML.",
"version": "0.1.9"
},
"servers": [
{
"url": "http://api.example.com/v1",
"description": "Optional server description, e.g. Main (production) server"
},
{
"url": "http://staging-api.example.com",
"description": "Optional server description, e.g. Internal staging server for testing"
}
],
"paths": {},
"components": {
"schemas": {
"schema": {
"type": "object",
"properties": {
"username": {
"type": "string",
"minLength": 3,
"maxLength": 30
},
"password": {
"type": "string",
"pattern": "^[a-zA-Z0-9]{3,30}$"
},
"access_token": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"birthyear": {
"type": "integer",
"minimum": 1900,
"maximum": 2013
},
"email": {
"type": "string",
"format": "email"
}
},
"additionalProperties": false,
"patterns": [],
"required": [
"username"
]
}
}
}
}
const j2od = require('joi-to-openapi-definition');
// Returns converted Joi model as json schema
j2od.convert(joiModel)
// Add Joi model to OpenAPI Definition
j2od.add_joi_model(yourOpenApiDefinition, 'someKey', joiModel)
// Add Joi models to OpenAPI Definition, using object keys as property names
j2od.add_joi_models(yourOpenApiDefinition, objectOfJoiModels)
// Copy of openapi-definition package
// See https://www.npmjs.com/package/openapi-definition for docs
j2od.openapi_definition
FAQs
Add Joi models to openAPI definition, using openapi-definition
We found that joi-to-openapi-definition 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.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.