1.0.0 • Published 6 years ago

format-leaf-api-value v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

format-leaf-api-value

Convert JS Object to leaf api schema

Installation

$ npm i format-leaf-api-value -S

Usage

const ots = require('format-leaf-api-value');

const obj = {
  id: 100,
  owner: {
    show: true,
    login: 'japsu',
  },
  name: 'Tom',
  books: [
    {
      name: 'Hackers and Painters',
      author: 'Paul Graham',
    },
  ],
};

const jsonSchema = ots.json(obj);
const apiSchema = ots.api(obj);

console.log(JSON.stringify(jsonSchema, null, 2));