Big news!Introducing Socket AI - ChatGPT-Powered Threat Analysis. Learn more
Socket
Log inDemoInstall

@malditogeek/openapi-to-joi

Package Overview
Dependencies
6
Maintainers
1
Versions
1
Issues
File Explorer

Advanced tools

@malditogeek/openapi-to-joi

<span class="badge-npmversion"><a href="https://npmjs.org/package/@marcduez/openapi-to-joi" title="View this project on NPM"><img src="https://img.shields.io/npm/v/@marcduez/openapi-to-joi.svg" alt="NPM version" /></a></span>

    2.0.0latest
    GitHub

Version published
Maintainers
1
Weekly downloads
135
decreased by-46.43%

Weekly downloads

Readme

Source

openapi-to-joi

NPM version

Installation

$ npm install @marcduez/openapi-to-joi $ yarn add @marcduez/openapi-to-joi

General Usage

Generates a file with Joi schemas from an OpenAPI 3 document.

For example, starting with this document:

{ "openapi": "3.0.0", ... "paths": { "/": { "get": { "operationId": "operation1", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "string", "minLength": 5 } } ], "responses": { "200": { "description": "200 Response", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Operation1Response" } } } } } } } }, "components": { "schemas": { "Operation1Response": { "type": "object", "properties": { "email": { "type": "string", "format": "email" }, "age": { "type": "integer", "format": "int32", "minimum": 18, "maximum": 99 } } } } } }

And running this command:

$ openapi-to-joi openapi.json --output generated.ts

Produces this generated.ts:

/* eslint-disable */ /* prettier-ignore */ import Joi from "joi" export const schemas = { parameters: { operation1: { id: Joi.string().required().min(5) }, }, components: { Operation1Response: Joi.object({ email: Joi.string().email({}), age: Joi.number().integer().max(99).min(18), }).unknown(), }, }

Using the CLI

To view usage instructions for the CLI, use the --help command:

$ npm run openapi-to-joi --help $ yarn openapi-to-joi --help

Keywords

FAQs

Last updated on 26 Sep 2022

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc