AI-generated Key Takeaways
-
TimeSeries represents a timeseries, comprised of a list of datapoints called
datedValues
. -
Each
datedValues
datapoint is aDatedValue
object, containing adate
and a correspondingvalue
. -
The
date
field inDatedValue
can represent a month or a specific day, depending on whether the day field is set within theDate
object. -
The
value
field inDatedValue
is 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. |