Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: polymer_1.0.4/bower_components/ga-api-utils/test/account-summaries/fixtures/account-summaries-with-accounts.json

Issue 1205703007: Add polymer 1.0 to npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Renamed folder to 1.0.4 Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "kind": "analytics#accountSummaries",
3 "username": "joe@gmail.com",
4 "totalResults": 5,
5 "startIndex": 1,
6 "itemsPerPage": 1000,
7 "items": [
8 {
9 "id": "1001",
10 "kind": "analytics#accountSummary",
11 "name": "Account A",
12 "webProperties": [
13 {
14 "kind": "analytics#webPropertySummary",
15 "id": "UA-1001-1",
16 "name": "WebProperty A.A",
17 "internalWebPropertyId": "3001",
18 "level": "STANDARD",
19 "websiteUrl": "http://example.com",
20 "profiles": [
21 {
22 "kind": "analytics#profileSummary",
23 "id": "2001",
24 "name": "Profile A.A.A",
25 "type": "WEB"
26 },
27 {
28 "kind": "analytics#profileSummary",
29 "id": "2002",
30 "name": "Profile A.A.B",
31 "type": "WEB"
32 },
33 {
34 "kind": "analytics#profileSummary",
35 "id": "2003",
36 "name": "Profile A.A.C",
37 "type": "WEB"
38 }
39 ]
40 },
41 {
42 "kind": "analytics#webPropertySummary",
43 "id": "UA-1001-2",
44 "name": "WebProperty A.B",
45 "internalWebPropertyId": "3002",
46 "level": "STANDARD",
47 "websiteUrl": "http://example.com",
48 "profiles": [
49 {
50 "kind": "analytics#profileSummary",
51 "id": "2004",
52 "name": "Profile A.B.A",
53 "type": "WEB"
54 },
55 {
56 "kind": "analytics#profileSummary",
57 "id": "2005",
58 "name": "Profile A.B.B",
59 "type": "WEB"
60 },
61 {
62 "kind": "analytics#profileSummary",
63 "id": "2006",
64 "name": "Profile A.B.C",
65 "type": "WEB"
66 }
67 ]
68 },
69 {
70 "kind": "analytics#webPropertySummary",
71 "id": "UA-1001-3",
72 "name": "WebProperty A.C",
73 "internalWebPropertyId": "3003",
74 "level": "STANDARD",
75 "websiteUrl": "http://example.com",
76 "profiles": [
77 {
78 "kind": "analytics#profileSummary",
79 "id": "2007",
80 "name": "Profile A.C.A",
81 "type": "WEB"
82 },
83 {
84 "kind": "analytics#profileSummary",
85 "id": "2008",
86 "name": "Profile A.C.B",
87 "type": "WEB"
88 },
89 {
90 "kind": "analytics#profileSummary",
91 "id": "2009",
92 "name": "Profile A.C.C",
93 "type": "WEB"
94 }
95 ]
96 }
97 ]
98 },
99 {
100 "id": "1002",
101 "kind": "analytics#accountSummary",
102 "name": "Account B",
103 "webProperties": [
104 {
105 "kind": "analytics#webPropertySummary",
106 "id": "UA-1002-1",
107 "name": "WebProperty B.A",
108 "internalWebPropertyId": "3002",
109 "level": "STANDARD",
110 "websiteUrl": "http://example.com",
111 "profiles": [
112 {
113 "kind": "analytics#profileSummary",
114 "id": "2010",
115 "name": "Profile B.A.A",
116 "type": "WEB"
117 }
118 ]
119 }
120 ]
121 },
122 {
123 "id": "1003",
124 "kind": "analytics#accountSummary",
125 "name": "Account C",
126 "webProperties": [
127 {
128 "kind": "analytics#webPropertySummary",
129 "id": "UA-1003-1",
130 "name": "WebProperty C.A",
131 "internalWebPropertyId": "3003",
132 "level": "STANDARD",
133 "websiteUrl": "http://example.com",
134 "profiles": [
135 {
136 "kind": "analytics#profileSummary",
137 "id": "2011",
138 "name": "Profile C.A.A",
139 "type": "WEB"
140 }
141 ]
142 }
143 ]
144 },
145 {
146 "id": "1004",
147 "kind": "analytics#accountSummary",
148 "name": "Account D (Property-less)"
149 },
150 {
151 "id": "1005",
152 "kind": "analytics#accountSummary",
153 "name": "Account E (View-less)",
154 "webProperties": [
155 {
156 "kind": "analytics#webPropertySummary",
157 "id": "UA-1005-1",
158 "name": "WebProperty E.A (View-less)",
159 "internalWebPropertyId": "3005",
160 "level": "STANDARD",
161 "websiteUrl": "http://example.com"
162 }
163 ]
164 }
165 ]
166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698