@@ -65,7 +65,7 @@ message GetFeaturesRequest {
6565 string version = 2 ;
6666
6767 // Features that should be retrieved from this feature set
68- repeated string featureNames = 3 ;
68+ repeated string feature_names = 3 ;
6969 }
7070
7171 message EntityDataSet {
@@ -75,20 +75,20 @@ message GetFeaturesRequest {
7575 repeated string fieldNames = 1 ;
7676
7777 // List of timestamp and entity id values
78- repeated EntityDataSetRow entityDataSetRows = 2 ;
78+ repeated EntityDataSetRow entity_data_set_rows = 2 ;
7979 }
8080
8181 message EntityDataSetRow {
8282 // List of timestamp and entity id values. The first value is always a Unix timestamp at
8383 // UTC+0. All subsequent values are entity ids in order of the entityNames list in the
8484 // wrapping message
85- repeated feast.types.Value Value = 1 ;
85+ repeated feast.types.Value value = 1 ;
8686 }
8787}
8888
8989message GetOnlineFeaturesResponse {
9090 // A FeatureDataSet is returned for each feature set in the incoming request
91- repeated FeatureDataSet featureDataSets = 2 ;
91+ repeated FeatureDataSet feature_data_sets = 2 ;
9292
9393 // The FeatureDataSet contains information about the Feature Set in the incoming request,
9494 // as well as feature data that can be joined to the incoming EntityDataSet. The row count
@@ -105,7 +105,7 @@ message GetOnlineFeaturesResponse {
105105 // are the original event timestamps from when that row was written to the backing store.
106106 // When these FeatureRows are joined to the EntityDataSetRows, the FeatureRow timestamps
107107 // will be dropped in favour of the EntityDataSetRow timestamp.
108- repeated feast.types.FeatureRow featureRows = 3 ;
108+ repeated feast.types.FeatureRow feature_rows = 3 ;
109109 }
110110}
111111
@@ -161,11 +161,11 @@ message BatchFeaturesJob {
161161 message GetUploadUrlRequest {
162162
163163 // Job Id associated to this request
164- string jobUUID = 1 ;
164+ string job_UUID = 1 ;
165165
166166 // Type of file that will be uploaded. Feast Serving needs to maintain this type in order to
167167 // interpret the entity dataset when loading it into the backing store
168- FileType fileType = 2 ;
168+ FileType file_type = 2 ;
169169
170170 enum FileType {
171171 CSV = 0 ;
@@ -178,7 +178,7 @@ message BatchFeaturesJob {
178178 // Url specifies the full signed URL where a client can make a request to upload file to GCS
179179 string url = 1 ;
180180
181- HttpMethod httpMethod = 2 ;
181+ HttpMethod http_method = 2 ;
182182 enum HttpMethod {
183183 PUT = 0 ;
184184 }
@@ -189,7 +189,7 @@ message BatchFeaturesJob {
189189
190190 // Notifies Feast Serving that the specific upload request has been completed for a job Id
191191 message SetUploadCompleteRequest {
192- string jobUUID = 1 ;
192+ string job_UUID = 1 ;
193193 }
194194
195195 // Notifies caller that the staged file has been found and will be ingested into the backing store
0 commit comments