42 lines
838 B
JSON
42 lines
838 B
JSON
{
|
|
"fields": {
|
|
"name": {
|
|
"type": "varchar",
|
|
"required": true
|
|
},
|
|
"version": {
|
|
"type": "varchar",
|
|
"required": true,
|
|
"maxLength": 50
|
|
},
|
|
"fileList": {
|
|
"type": "jsonArray"
|
|
},
|
|
"description": {
|
|
"type": "text"
|
|
},
|
|
"isInstalled": {
|
|
"type": "bool",
|
|
"default": false
|
|
},
|
|
"createdAt": {
|
|
"type": "datetime",
|
|
"readOnly": true
|
|
},
|
|
"createdBy": {
|
|
"type": "link",
|
|
"readOnly": true
|
|
}
|
|
},
|
|
"links": {
|
|
"createdBy": {
|
|
"type": "belongsTo",
|
|
"entity": "User"
|
|
}
|
|
},
|
|
"collection": {
|
|
"sortBy": "createdAt",
|
|
"asc": false
|
|
}
|
|
}
|