21 lines
298 B
JSON
21 lines
298 B
JSON
|
{
|
||
|
"name": "post",
|
||
|
"base": "PersistedModel",
|
||
|
"properties": {
|
||
|
"title": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"content": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"notes": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"user": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "User"
|
||
|
}
|
||
|
}
|
||
|
}
|