Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

az.puml 542 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  1. @startuml
  2. title AZ Ratings
  3. skinparam linetype ortho
  4. !include theme.iuml
  5. entity isbn_id {
  6. isbn_id
  7. --
  8. isbn
  9. }
  10. entity isbn_cluster {
  11. cluster
  12. --
  13. isbn_id
  14. }
  15. isbn_cluster }|- isbn_id
  16. entity raw_ratings {
  17. --
  18. user_key
  19. asin
  20. rating
  21. rating_time
  22. }
  23. entity user_ids <<derived>> {
  24. user_id
  25. --
  26. user_key
  27. }
  28. entity rating <<derived>> {
  29. user_id
  30. book_id
  31. --
  32. rating
  33. nactions
  34. }
  35. raw_ratings <. rating
  36. raw_ratings <. user_ids
  37. rating }|-- user_ids
  38. rating }|- isbn_cluster : book_id:cluster
  39. @enduml
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...