2024-06-05 19:04:53 -04:00
|
|
|
#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 {
|
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
template <class T>
|
|
|
|
struct JSONSchema {
|
|
|
|
Rename<"$schema", Literal<"https://json-schema.org/draft/2020-12/schema">>
|
2024-06-08 15:53:06 -04:00
|
|
|
schema;
|
|
|
|
Flatten<T> root;
|
2024-06-08 14:10:59 -04:00
|
|
|
std::map<std::string, Type> definitions;
|
|
|
|
};
|
2024-06-05 19:04:53 -04:00
|
|
|
|
2024-06-08 14:10:59 -04:00
|
|
|
} // namespace rfl::json::schema
|
2024-06-05 19:04:53 -04:00
|
|
|
|
|
|
|
#endif
|