An open API service indexing awesome lists of open source software.

https://github.com/gadicc/meteor-dbobj


https://github.com/gadicc/meteor-dbobj

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

```js
Product = baseDb.extend({
collection: Products,
schema: {
name: { },
company: { type: 'array' },
picURL: { },
barcode: { },
categories: { type: 'array' },
ingredients: { type: 'array' },
props: { type: 'object' },
lang: { },
trans: { type: 'object' }
},
xlsable: [ 'name', 'props.vegan.note', 'props.vegan.source' ]
});
```