26 lines
510 B
C++
26 lines
510 B
C++
|
#ifndef RFL_JSON_SCHEMA_JSONSCHEMA_HPP_
|
||
|
#define RFL_JSON_SCHEMA_JSONSCHEMA_HPP_
|
||
|
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
#include <variant>
|
||
|
|
||
|
#include "../../Flatten.hpp"
|
||
|
#include "../../Literal.hpp"
|
||
|
#include "../../Rename.hpp"
|
||
|
#include "Type.hpp"
|
||
|
|
||
|
namespace rfl::json::schema {
|
||
|
|
||
|
template <class T>
|
||
|
struct JSONSchema {
|
||
|
Rename<"$schema", Literal<"https://json-schema.org/draft/2020-12/schema">>
|
||
|
schema;
|
||
|
Flatten<T> root;
|
||
|
std::map<std::string, Type> definitions;
|
||
|
};
|
||
|
|
||
|
} // namespace rfl::json::schema
|
||
|
|
||
|
#endif
|