1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
// Copyright 2013-2025 Daniel Parker
// Distributed under the Boost license, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// See https://github.com/danielaparker/jsoncons for latest version
#ifndef JSONCONS_EXT_JSONSCHEMA_VALIDATION_MESSAGE_HPP
#define JSONCONS_EXT_JSONSCHEMA_VALIDATION_MESSAGE_HPP
#include <cassert>
#include <functional>
#include <iostream>
#include <set>
#include <string>
#include <unordered_set>
#include <vector>
#include <jsoncons/config/jsoncons_config.hpp>
#include <jsoncons/utility/uri.hpp>
#include <jsoncons_ext/jsonpointer/jsonpointer.hpp>
namespace jsoncons {
namespace jsonschema {
class validation_message
{
std::string keyword_;
jsonpointer::json_pointer eval_path_;
uri schema_location_;
jsonpointer::json_pointer instance_location_;
std::string message_;
std::vector<validation_message> details_;
public:
validation_message(std::string keyword,
jsonpointer::json_pointer eval_path,
uri schema_location,
jsonpointer::json_pointer instance_location,
std::string message)
: keyword_(std::move(keyword)),
eval_path_(std::move(eval_path)),
schema_location_(std::move(schema_location)),
instance_location_(std::move(instance_location)),
message_(std::move(message))
{
}
validation_message(const std::string& keyword,
const jsonpointer::json_pointer& eval_path,
const uri& schema_location,
const jsonpointer::json_pointer& instance_location,
const std::string& message,
const std::vector<validation_message>& details)
: keyword_(keyword),
eval_path_(eval_path),
schema_location_(schema_location),
instance_location_(instance_location),
message_(message),
details_(details)
{
}
const jsonpointer::json_pointer& instance_location() const
{
return instance_location_;
}
const std::string& message() const
{
return message_;
}
const jsonpointer::json_pointer& eval_path() const
{
return eval_path_;
}
const uri& schema_location() const
{
return schema_location_;
}
const std::string& keyword() const
{
return keyword_;
}
const std::vector<validation_message>& details() const
{
return details_;
}
};
} // namespace jsonschema
} // namespace jsoncons
#endif // JSONCONS_EXT_JSONSCHEMA_JSON_VALIDATOR_HPP
|