Facebook
From Unique Zebra, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 298
  1. player:
  2. {
  3.         _id:
  4.         first_name: 'a',
  5.         last_name: 'b',
  6.         brought_equipment: ['x', 'y', 'z'],
  7.         telephone: 111222333,
  8.         e_mail: '[email protected]',
  9.         country: 'x',
  10.         game: 'y',
  11.         team: 'z'
  12. }
  13.  
  14. tournament:
  15. {
  16.         name: 'a',
  17.         game: 'b',
  18.         oganizers: [
  19.                 {
  20.                         name: 'a',
  21.                         country 'b',
  22.                 },
  23.  
  24.                         .
  25.                         .
  26.                         .
  27.                 {
  28.                         name: 'x',
  29.                         country 'y',
  30.                 }
  31.         ],
  32.         sponsors: ['a', 'b', 'c'],
  33.         qualified_teams: ['x', 'y', 'z'],
  34.         tournament_type: 'a',
  35.         prize: 3589510,
  36.         start_date: Date(),
  37.         end_date: Date(),
  38. }
  39.  
  40. game:
  41. {
  42.         name: 'a'
  43. }
  44.  
  45. team:
  46. {
  47.         name: 'b'
  48. }