-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase.txt
61 lines (57 loc) · 1.56 KB
/
firebase.txt
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
50
51
52
53
54
55
56
57
58
59
60
61
activity {
name: string, //id
details: {
verbose_name: string,
description: string,
links: [string, string],
updated_at: int //datetime,
popularity: int,
tags: [string, string]
}
} (priority: updated_at)
tags {
tag1: [act1, act2],
}
[
name: id,
name2: id2
]
{
categories: []
description: string
likes: int
links: {
[
{
desc: string
link: string
}
]
}
tags: []
updated_at: int
verbose_name: string
}
bloks = [
{
categories: ['sports', 'games'],
description: 'Association football, more commonly known as football or soccer, is a sport played between two teams of eleven players with a spherical ball. It is played by 250 million players in over 200 countries, making it the world\'s most popular sport. The game is played on a rectangular field with a goal at each end. The object of the game is to score by using any part of the body besides the arms and hands to get the ball into the opposing goal. The goalkeepers are the only players allowed to touch the ball with their hands or arms while it is in play and then only in their penalty area. Outfield players mostly use their feet to strike or pass the ball, but may use their head or torso to strike the ball instead. The team that scores the most goals by the end of the match wins.',
likes: 5,
links:
{
link1:
{
desc: 'Wikipedia',
link: 'http://en.wikipedia.org/wiki/Association_football'
},
link2:
{
desc: 'FIFA World Cup',
link: 'http://www.fifa.com/'
}
},
tags: ['soccer', 'football', 'sports', 'fun'],
updated_at: 1400438559,
verbose_name: 'Soccer'
}
]