1.0.3 • Published 2 years ago

json-to-schema-swagger v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

jsonToSchemaSwagger

Convert class with object json to schema swagger json, where the input.js:

module.exports = {
  ClassName: {
    description: "Class Name",
    type: "object",
    example: {
      id: 1,
      name: "Name",
      tags: [
        { key1: "value 1", key2: 999 },
        { key1: "value 2", other2: 888 }
      ]
    }
  }
};

where example can be a json object with arrays or basic type. The result is:

module.exports = {
  ClassName: {
    description: "Class Name",
    type: "object",
    properties: {
      id: {
        type: "number",
        description: "id",
        example: 1
      },
      name: {
        type: "string",
        description: "name",
        example: "Name"
      },
      tags: {
        type: "array",
        items: {
          type: "object",
          properties: {
            key1: {
              type: "string",
              description: "key1",
              example: "value 1"
            },
            key2: {
              type: "number",
              description: "key2",
              example: 999
            }
          }
        }
      }
    }
  }
};

Usage

Create a js file to process and write:

const util = require("json-to-schema-swagger");

const config = {
  pathSource: "./pathsource",
  pathDestination: "./pathdestination"
};

util.eject(config);

where ./pathsource must to exist, however ./pathdestination will be created if it does not exist

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago