Facebook
From Red Bee, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 281
  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.         _id: ,
  17.         name: 'a',
  18.         game: 'b',
  19.         oganizers: [
  20.                 {
  21.                         name: 'a',
  22.                         country 'b',
  23.                 },
  24.  
  25.                         .
  26.                         .
  27.                         .
  28.                 {
  29.                         name: 'x',
  30.                         country 'y',
  31.                 }
  32.         ],
  33.         sponsors: ['a', 'b', 'c'],
  34.         qualified_teams: ['x', 'y', 'z'],
  35.         tournament_type: 'a',
  36.         prize: 3589510,
  37.         start_date: Date(),
  38.         end_date: Date(),
  39. }
  40.  
  41. game:
  42. {
  43.         _id: ,
  44.         name: 'a',
  45.         type: 't'
  46. }
  47.  
  48. team:
  49. {
  50.         _id: ,
  51.         name: 'b',
  52.         founded: 1991,
  53.         location: 'a'
  54. }