/services/customer_sk_ad_network_conversion_value_schema_service.proto

--- v16/services/customer_sk_ad_network_conversion_value_schema_service.proto   2024-04-18 17:10:08.000000000 +0000
+++ v16-1/services/customer_sk_ad_network_conversion_value_schema_service.proto 2024-04-18 17:10:14.000000000 +0000
@@ -74,6 +76,11 @@
   // If true, the request is validated but not executed. Only errors are
   // returned, not results.
   bool validate_only = 3;
+
+  // Optional. If true, enables returning warnings. Warnings return error
+  // messages and error codes without blocking the execution of the mutate
+  // operation.
+  bool enable_warnings = 4 [(google.api.field_behavior) = OPTIONAL];
 }

 // The result for the CustomerSkAdNetworkConversionValueSchema mutate.
@@ -91,4 +98,8 @@
 message MutateCustomerSkAdNetworkConversionValueSchemaResponse {
   // All results for the mutate.
   MutateCustomerSkAdNetworkConversionValueSchemaResult result = 1;
+
+  // Non blocking errors that provides schema validation failure details.
+  // Returned only when enable_warnings = true.
+  google.rpc.Status warning = 2;
 }