From 382fa657c32a4f1db031f998b174c6bcff2508bc Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Tue, 12 Dec 2023 20:29:03 -0500 Subject: [PATCH] jsonschema common --- doc/ref/jsonschema/schema_error.md | 2 +- doc/ref/jsonschema/validation_error.md | 2 +- doc/ref/jsonschema/validation_output.md | 2 +- .../jsoncons_ext/jsonschema/common/compilation_context.hpp | 2 +- include/jsoncons_ext/jsonschema/{ => common}/json_schema.hpp | 4 ++-- .../jsoncons_ext/jsonschema/{ => common}/jsonschema_error.hpp | 0 .../jsonschema/{ => common}/keyword_validator.hpp | 2 +- include/jsoncons_ext/jsonschema/common/schema_location.hpp | 2 +- include/jsoncons_ext/jsonschema/draft7/schema_parser_impl.hpp | 2 +- include/jsoncons_ext/jsonschema/format_validator.hpp | 2 +- include/jsoncons_ext/jsonschema/json_validator.hpp | 2 +- include/jsoncons_ext/jsonschema/keywords.hpp | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) rename include/jsoncons_ext/jsonschema/{ => common}/json_schema.hpp (93%) rename include/jsoncons_ext/jsonschema/{ => common}/jsonschema_error.hpp (100%) rename include/jsoncons_ext/jsonschema/{ => common}/keyword_validator.hpp (98%) diff --git a/doc/ref/jsonschema/schema_error.md b/doc/ref/jsonschema/schema_error.md index 68c6b047c0..b465c96936 100644 --- a/doc/ref/jsonschema/schema_error.md +++ b/doc/ref/jsonschema/schema_error.md @@ -1,7 +1,7 @@ ### jsoncons::jsonschema::schema_error ```cpp -#include +#include ```
diff --git a/doc/ref/jsonschema/validation_error.md b/doc/ref/jsonschema/validation_error.md index a10767e2b2..4b64e48a51 100644 --- a/doc/ref/jsonschema/validation_error.md +++ b/doc/ref/jsonschema/validation_error.md @@ -1,7 +1,7 @@ ### jsoncons::jsonschema::validation_error ```cpp -#include +#include ```
diff --git a/doc/ref/jsonschema/validation_output.md b/doc/ref/jsonschema/validation_output.md index 337533ec41..f88469bc65 100644 --- a/doc/ref/jsonschema/validation_output.md +++ b/doc/ref/jsonschema/validation_output.md @@ -1,7 +1,7 @@ ### jsoncons::jsonschema::validation_output ```cpp -#include +#include ```
diff --git a/include/jsoncons_ext/jsonschema/common/compilation_context.hpp b/include/jsoncons_ext/jsonschema/common/compilation_context.hpp index 01abd08a4b..c95e565f14 100644 --- a/include/jsoncons_ext/jsonschema/common/compilation_context.hpp +++ b/include/jsoncons_ext/jsonschema/common/compilation_context.hpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include namespace jsoncons { diff --git a/include/jsoncons_ext/jsonschema/json_schema.hpp b/include/jsoncons_ext/jsonschema/common/json_schema.hpp similarity index 93% rename from include/jsoncons_ext/jsonschema/json_schema.hpp rename to include/jsoncons_ext/jsonschema/common/json_schema.hpp index 03ea63ac52..8e392a111b 100644 --- a/include/jsoncons_ext/jsonschema/json_schema.hpp +++ b/include/jsoncons_ext/jsonschema/common/json_schema.hpp @@ -11,8 +11,8 @@ #include #include #include -#include -#include +#include +#include namespace jsoncons { namespace jsonschema { diff --git a/include/jsoncons_ext/jsonschema/jsonschema_error.hpp b/include/jsoncons_ext/jsonschema/common/jsonschema_error.hpp similarity index 100% rename from include/jsoncons_ext/jsonschema/jsonschema_error.hpp rename to include/jsoncons_ext/jsonschema/common/jsonschema_error.hpp diff --git a/include/jsoncons_ext/jsonschema/keyword_validator.hpp b/include/jsoncons_ext/jsonschema/common/keyword_validator.hpp similarity index 98% rename from include/jsoncons_ext/jsonschema/keyword_validator.hpp rename to include/jsoncons_ext/jsonschema/common/keyword_validator.hpp index 7e9465437c..c28019f1dd 100644 --- a/include/jsoncons_ext/jsonschema/keyword_validator.hpp +++ b/include/jsoncons_ext/jsonschema/common/keyword_validator.hpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include namespace jsoncons { namespace jsonschema { diff --git a/include/jsoncons_ext/jsonschema/common/schema_location.hpp b/include/jsoncons_ext/jsonschema/common/schema_location.hpp index e474a370a1..d11d8c3a24 100644 --- a/include/jsoncons_ext/jsonschema/common/schema_location.hpp +++ b/include/jsoncons_ext/jsonschema/common/schema_location.hpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include namespace jsoncons { namespace jsonschema { diff --git a/include/jsoncons_ext/jsonschema/draft7/schema_parser_impl.hpp b/include/jsoncons_ext/jsonschema/draft7/schema_parser_impl.hpp index 1753bd6062..0c054c932f 100644 --- a/include/jsoncons_ext/jsonschema/draft7/schema_parser_impl.hpp +++ b/include/jsoncons_ext/jsonschema/draft7/schema_parser_impl.hpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/include/jsoncons_ext/jsonschema/format_validator.hpp b/include/jsoncons_ext/jsonschema/format_validator.hpp index 9753f732f6..9f3b023208 100644 --- a/include/jsoncons_ext/jsonschema/format_validator.hpp +++ b/include/jsoncons_ext/jsonschema/format_validator.hpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/include/jsoncons_ext/jsonschema/json_validator.hpp b/include/jsoncons_ext/jsonschema/json_validator.hpp index 57320a630f..01b1e11038 100644 --- a/include/jsoncons_ext/jsonschema/json_validator.hpp +++ b/include/jsoncons_ext/jsonschema/json_validator.hpp @@ -11,7 +11,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/include/jsoncons_ext/jsonschema/keywords.hpp b/include/jsoncons_ext/jsonschema/keywords.hpp index c0df190455..d3eac571d0 100644 --- a/include/jsoncons_ext/jsonschema/keywords.hpp +++ b/include/jsoncons_ext/jsonschema/keywords.hpp @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include #include #include