forked from paulpullen/sportsticker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.json
125 lines (125 loc) · 3.83 KB
/
feed.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[
{
"topic" : "Full Width",
"items" : [
[
{
"type" : "full",
"messages" : [
"This is a short message.",
"This is a longer message that should scroll off to the left because it's long."
]
}
]
]
},
{
"topic" : "Badges",
"items" : [
[
{
"type" : "full-with-badge",
"badgeColor" : "blue",
"badgeText" : "Badge One",
"messages" : [
"Messages can have descriptive badges as well."
]
}
],
[
{
"type" : "full-with-badge",
"badgeColor" : "orange",
"badgeText" : "Badge Two",
"messages" : [
"Badges can be any color you desire!",
"All feed types can also contain multiple messages."
]
}
]
]
},
{
"topic" : "Match-ups",
"items" : [
[
{
"type" : "matchup",
"team1" : {
"logo" : "images/afcw_denver-only.png",
"name" : "Denver",
"rank" : "1"
},
"team2" : {
"logo" : "images/afcs_indianapolis-only.png",
"name" : "Indianapolis",
"rank" : null
},
"messages" : [
"Show upcoming matchups with logos and optional rankings.",
"Pretty cool, eh?"
]
}
],
[
{
"type" : "matchup",
"team1" : {
"logo" : "images/nfcn_chicago-only.png",
"name" : "Chicago"
},
"team2" : {
"logo" : "images/nfcn_greenbay-only.png",
"name" : "Green Bay"
},
"messages" : [
"Another matchup."
]
}
]
]
},
{
"topic" : "Scores",
"items" : [
[
{
"type" : "scores",
"isFinal" : true,
"team1" : {
"rank" : 12,
"name" : "Cowboys",
"points" : 41
},
"team2" : {
"rank" : 1,
"name" : "Broncos",
"points" : 44
},
"messages" : [
"Scores can be displayed 2 different ways.",
"This is the default scores template.",
"If the score is final, the winner is highlighted."
]
},
{
"type" : "scores-abbr",
"isFinal" : true,
"team1" : {
"abbr" : "Dal",
"points" : 41
},
"team2" : {
"rank" : 1,
"abbr" : "Den",
"points" : 44
},
"messages" : [
"This is the abbreviated scores template.",
"More room for details."
]
}
]
]
}
]