TimeSeries

  • TimeSeries represents a timeseries, comprised of a list of datapoints called datedValues.

  • Each datedValues datapoint is a DatedValue object, containing a date and a corresponding value.

  • The date field in DatedValue can represent a month or a specific day, depending on whether the day field is set within the Date object.

  • The value field in DatedValue is a string representing an integer, and it will be omitted if the value is zero.

Represents a timeseries.

JSON representation
{
  "datedValues": [
    {
      object (DatedValue)
    }
  ]
}
Fields
datedValues[]

object (DatedValue)

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 (Date)
  },
  "value": string
}
Fields
date

object (Date)

The date that the datapoint corresponds to. This represents a month value if the day field is not set.

value

string (int64 format)

The value of the datapoint. This will not be present when the value is zero.