freeCodeCamp/api-server/common/models/popularity.json

29 lines
466 B
JSON
Raw Normal View History

2018-07-30 19:39:43 +00:00
{
"name": "popularity",
"plural": "popularities",
"base": "PersistedModel",
"idInjection": true,
"options": {
"validateUpsert": true
},
"properties": {
"events": {
"type": [
"object"
],
"required": true,
"default": []
2018-07-30 19:39:43 +00:00
}
},
"validations": [],
2018-07-30 20:06:56 +00:00
"relations": {
"article": {
"type": "belongsTo",
"model": "article",
"foreignKey": "articleId"
}
},
2018-07-30 19:39:43 +00:00
"acls": [],
"methods": {}
}