value for a feature.
metadata of feature value.
value
. Value for the feature. value
can be only one of the following:boolValue
boolean
Bool type feature value.
doubleValue
number
Double type feature value.
Int64 feature value.
stringValue
string
String feature value.
A list of bool type feature value.
A list of double type feature value.
A list of int64 type feature value.
A list of string type feature value.
Bytes feature value.
A base64-encoded string.
A struct type feature value.
JSON representation |
---|
{ "metadata": { object ( |
BoolArray
A list of boolean values.
values[]
boolean
A list of bool values.
JSON representation |
---|
{ "values": [ boolean ] } |
DoubleArray
A list of double values.
values[]
number
A list of double values.
JSON representation |
---|
{ "values": [ number ] } |
Int64Array
A list of int64 values.
A list of int64 values.
JSON representation |
---|
{ "values": [ string ] } |
StringArray
A list of string values.
values[]
string
A list of string values.
JSON representation |
---|
{ "values": [ string ] } |
StructValue
Struct (or object) type feature value.
A list of field values.
JSON representation |
---|
{
"values": [
{
object ( |
StructFieldValue
One field of a Struct (or object) type feature value.
name
string
name of the field in the struct feature.
The value for this field.
JSON representation |
---|
{
"name": string,
"value": {
object ( |
Metadata
metadata of feature value.
feature generation timestamp. Typically, it is provided by user at feature ingestion time. If not, feature store will use the system timestamp when the data is ingested into feature store. For streaming ingestion, the time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future.
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z"
and "2014-10-02T15:01:23.045123456Z"
.
JSON representation |
---|
{ "generateTime": string } |