loopback/test/fixtures/user-integration-app/common/models/post.json

22 lines
299 B
JSON

{
"name": "Post",
"base": "PersistedModel",
"properties": {
"title": {
"type": "string"
},
"content": {
"type": "string"
},
"notes": {
"type": "string"
}
},
"relations": {
"user": {
"type": "belongsTo",
"model": "User"
}
}
}