Album.json 694B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "Album",
  3. "fields": [
  4. {
  5. "fieldName": "name",
  6. "fieldType": "String"
  7. },
  8. {
  9. "fieldName": "description",
  10. "fieldType": "String"
  11. }
  12. ],
  13. "relationships": [
  14. {
  15. "relationshipType": "many-to-one",
  16. "relationshipName": "owner",
  17. "otherEntityName": "user",
  18. "otherEntityField": "email"
  19. }
  20. ],
  21. "changelogDate": "20190102220059",
  22. "entityTableName": "album",
  23. "dto": "no",
  24. "pagination": "no",
  25. "service": "no",
  26. "jpaMetamodelFiltering": false,
  27. "fluentMethods": true,
  28. "clientRootFolder": "",
  29. "applications": "*"
  30. }