jsonschemaparse
Usage
API
demo
npm
Yarn
GitHub
Fixed
Split
Demo/Playground
Schema
{ "type": "array", "items": { "type": "object", "properties": { "_id": { "type": "string" }, "author": { "type": "string" }, "content": { "type": "string" }, "page_views": { "type": "number" } } } }
Instance
[ { "_id": "post 1", "author": "Bob", "content": "...", "page_views": "5" }, { "_id": "post 2", "author": "Bob", "content": "...", "page_views": 9 }, { "_id": "post 3", "author": "Bob", "content": "...", "page_views": 8 } ]