Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1.  
  2. // DATABASES
  3. [
  4. {
  5. "id":"db1",
  6. "name" : "german praep",
  7. "schemas" : [
  8. {"name":"schema1", "visible":["verb"], "toshow":["praep","casus","trad"]},
  9. {"name":"schema2", "visible":["verb","praep","casus"], "toshow":["trad"]}
  10. ],
  11. "structure":["id","verb","praep","casus","trad"],
  12. "data":[
  13. ["db1-1","sich treffen","mit","dativ","incontrarsi"],
  14. ["db1-2","achten","auf","akkusativ","fare attenzione"],
  15. ["db1-3","empfinden","als","akkusativ","considerare"]
  16. ]
  17. },
  18. {
  19. "id":"db2",
  20. "name" : "french praep"
  21. }
  22. ]
  23.  
  24.  
  25. // USERS
  26.  
  27. [
  28. {
  29. "id":1,
  30. "name":"sandro",
  31. "db" : [
  32. {
  33. "id":"db1",
  34. "schemas":[
  35. {"name":"schema1",
  36. "values":[
  37. ["db1-1","5.8"],
  38. ["db1-2","8.9"]
  39. ]
  40. },
  41. {"name":"schema1",
  42. "values":[
  43. ["db1-1","5.8"],
  44. ["db1-2","8.9"],
  45. ["db1-3","10.0"]
  46. ]
  47. }
  48. ]
  49. },
  50. {
  51. "id":"db2"
  52. }
  53. ]
  54. },
  55. {
  56. "id":2,
  57. "name":"matteo"
  58. }
  59. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement