7c2e73f53a | ||
---|---|---|
.. | ||
example | ||
lib | ||
test | ||
.gitignore | ||
README.md | ||
index.js | ||
package.json |
README.md
model
About
Provides a schema protected api to a data store.
Options
namespace
A table, collection, url, or other namespace.
properties
An array of properties describing the model's schema.
"properties": [
{
"name": "title",
"type": "string"
},
{
"name": "done",
"type": "boolean"
},
{
"name": "order",
"type": "number"
}
]
}
Dependencies
store
A store module instance.