AI-generated Key Takeaways
-
TimeSeries represents a timeseries, comprised of a list of datapoints called
datedValues. -
Each
datedValuesdatapoint is aDatedValueobject, containing adateand a correspondingvalue. -
The
datefield inDatedValuecan represent a month or a specific day, depending on whether the day field is set within theDateobject. -
The
valuefield inDatedValueis a string representing an integer, and it will be omitted if the value is zero.
Represents a timeseries.
| JSON representation |
|---|
{
"datedValues": [
{
object ( |
| Fields | |
|---|---|
datedValues[] |
List of datapoints in the timeseries, where each datapoint is a date-value pair. |
DatedValue
Represents a single datapoint in the timeseries, where each datapoint is a date-value pair.
| JSON representation |
|---|
{
"date": {
object ( |
| Fields | |
|---|---|
date |
The date that the datapoint corresponds to. This represents a month value if the day field is not set. |
value |
The value of the datapoint. This will not be present when the value is zero. |