18 lines
255 B
JSON
18 lines
255 B
JSON
|
{
|
||
|
"name": "blog",
|
||
|
"base": "PersistedModel",
|
||
|
"properties": {
|
||
|
"title": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"content": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"user": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "myUser"
|
||
|
}
|
||
|
}
|
||
|
}
|