1/* 2 * Copyright (C) 2024 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17syntax = "proto3"; 18 19package com.android.adservices.service.proto.config_delivery; 20 21import "google/protobuf/any.proto"; 22import "packages/modules/AdServices/adservices/service-core/proto/config-delivery/configuration_type.proto"; 23 24option java_multiple_files = true; 25 26message Configuration { 27 // Privacy Sandbox Configuration type. 28 ConfigurationType configuration_type = 1; 29 30 // List of Privacy Sandbox configuration records. 31 repeated ConfigurationRecord configuration_records = 2; 32} 33 34message ConfigurationRecord { 35 // Unique ID of this record within this configuration type (to identify this 36 // record). 37 string id = 1; 38 39 // A set of labels to tag this record for later queries. 40 repeated string labels = 2; 41 42 // Configuration record payload. 43 .google.protobuf.Any value = 3; 44} 45