Yup is a library to validate the JSON input
JSON-Schema is a schema specification for JSON
This library converts Yup
schema to JSON-Schema
npm i @sodaru/yup-to-json-schema
import yupToJsonSchema from "@sodaru/yup-to-json-schema"
// see Yup Specification for more options to create yupSchema
const yupSchema = object({
name: string()
}).required();
const jsonSchema = yupToJsonSchema(yupSchema);