Post.json 875B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "Post",
  3. "fields": [
  4. {
  5. "fieldName": "numberOfComments",
  6. "fieldType": "Long"
  7. },
  8. {
  9. "fieldName": "content",
  10. "fieldType": "String"
  11. },
  12. {
  13. "fieldName": "likes",
  14. "fieldType": "Long"
  15. },
  16. {
  17. "fieldName": "dislikes",
  18. "fieldType": "Long"
  19. }
  20. ],
  21. "relationships": [
  22. {
  23. "relationshipType": "many-to-one",
  24. "relationshipName": "owner",
  25. "otherEntityName": "user",
  26. "otherEntityField": "email"
  27. }
  28. ],
  29. "changelogDate": "20190102220102",
  30. "entityTableName": "post",
  31. "dto": "no",
  32. "pagination": "no",
  33. "service": "no",
  34. "jpaMetamodelFiltering": false,
  35. "fluentMethods": true,
  36. "clientRootFolder": "",
  37. "applications": "*"
  38. }