Skip to content

NaturalIntelligence/nimnjs-schema-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nimnjs-schema-builder

Build schema from JS object or JSON to feed into nimnjs.

Usages

First install or add to your npm package

$npm install nimn_schema_builder
var builder = require("nimn_schema_builder");

var data = {
    "name" : "amit",
    "age" : 32,
    "human" : true,
    "projects" : [
        {
            "name" : "some",
            "description" : "some long description"
        }
    ]
};

var schema = builder.build(data);

/*
var schema = {
    "type": "map",
    "detail": [
        {
            "type": "string",
            "name": "name"
        },
        {
            "type": "number",
            "name": "age"
        },
        {
            "type": "boolean",
            "name": "human"
        },
        {
            "type": "list",
            "detail": {
                "type": "map",
                "detail": [
                    {
                        "type": "string",
                        "name": "name"
                    },
                    {
                        "type": "string",
                        "name": "description"
                    }
                ]
            },
            "name": "projects"
        }
    ]
}
*/

You can also use it in browser from dist folder.

Check the demo for instant use.

About

Build schema from JS object or JSON to feed into nimnjs

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •