blob: 7665cd0c4f35c8c840126618eff82d4255c8f6bc [file] [edit]
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#ifndef THIRD_PARTY_CREDENTIO_UTILS_CRJSON_H_
#define THIRD_PARTY_CREDENTIO_UTILS_CRJSON_H_
#include "absl/status/statusor.h"
#include "absl/strings/string_view.h"
#include "nlohmann/json.hpp"
#include "proto/ingredient_validation_result.pb.h"
#include "proto/validation_result.pb.h"
namespace credentio {
// Convert a raw manifest store to crJSON without validation results.
absl::StatusOr<::nlohmann::json> ConvertToCrJsonWithoutValidationResults(
absl::string_view raw_manifest_store);
// Convert a raw manifest store to crJSON and merge validation results.
absl::StatusOr<::nlohmann::json> ConvertToCrJson(
absl::string_view raw_manifest_store,
const ValidationResultProto& validation_result);
// Convert a raw manifest store to crJSON and merge ingredient validation
// results.
absl::StatusOr<::nlohmann::json> ConvertToCrJson(
absl::string_view raw_manifest_store,
const IngredientValidationResultProto& ingredient_validation_result);
} // namespace credentio
#endif // THIRD_PARTY_CREDENTIO_UTILS_CRJSON_H_