You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dyn/chromeuxreport_v1.records.html
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,18 @@ <h3>Method Details</h3>
114
114
115
115
{ # Response payload sent back to a physical web client. This response contains the record found based on the identiers present in a `QueryRequest`. The returned response will have a record, and sometimes details on normalization actions taken on the request that were necessary to make the request successful.
116
116
"record": { # Record is a single Chrome UX report data record. It contains use experience statistics for a single url pattern and set of dimensions. # The record that was found.
117
+
"collectionPeriod": { # The collection period is a date range which includes the `first` and `last` day. # The collection period indicates when the data reflected in this record was collected.
118
+
"firstDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # The first day in the collection period, inclusive.
119
+
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
120
+
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
121
+
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
122
+
},
123
+
"lastDate": { # Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp # The last day in the collection period, inclusive.
124
+
"day": 42, # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
125
+
"month": 42, # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
126
+
"year": 42, # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
127
+
},
128
+
},
117
129
"key": { # Key defines all the dimensions that identify this record as unique. # Key defines all of the unique querying parameters needed to look up a user experience record.
118
130
"effectiveConnectionType": "A String", # The effective connection type is the general connection class that all users experienced for this record. This field uses the values ["offline", "slow-2G", "2G", "3G", "4G"] as specified in: https://wicg.github.io/netinfo/#effective-connection-types If the effective connection type is unspecified, then aggregated data over all effective connection types will be returned.
119
131
"formFactor": "A String", # The form factor is the device class that all users used to access the site for this record. If the form factor is unspecified, then aggregated data over all form factors will be returned.
"description": "The collection period is a date range which includes the `first` and `last` day.",
144
+
"id": "CollectionPeriod",
145
+
"properties": {
146
+
"firstDate": {
147
+
"$ref": "Date",
148
+
"description": "The first day in the collection period, inclusive."
149
+
},
150
+
"lastDate": {
151
+
"$ref": "Date",
152
+
"description": "The last day in the collection period, inclusive."
153
+
}
154
+
},
155
+
"type": "object"
156
+
},
157
+
"Date": {
158
+
"description": "Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp",
159
+
"id": "Date",
160
+
"properties": {
161
+
"day": {
162
+
"description": "Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.",
163
+
"format": "int32",
164
+
"type": "integer"
165
+
},
166
+
"month": {
167
+
"description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.",
168
+
"format": "int32",
169
+
"type": "integer"
170
+
},
171
+
"year": {
172
+
"description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.",
173
+
"format": "int32",
174
+
"type": "integer"
175
+
}
176
+
},
177
+
"type": "object"
178
+
},
142
179
"Key": {
143
180
"description": "Key defines all the dimensions that identify this record as unique.",
144
181
"id": "Key",
@@ -264,6 +301,10 @@
264
301
"description": "Record is a single Chrome UX report data record. It contains use experience statistics for a single url pattern and set of dimensions.",
265
302
"id": "Record",
266
303
"properties": {
304
+
"collectionPeriod": {
305
+
"$ref": "CollectionPeriod",
306
+
"description": "The collection period indicates when the data reflected in this record was collected."
307
+
},
267
308
"key": {
268
309
"$ref": "Key",
269
310
"description": "Key defines all of the unique querying parameters needed to look up a user experience record."
0 commit comments