Lawrence Tang | 8a2d737 | 2022-07-12 16:44:49 +0100 | [diff] [blame^] | 1 | #ifndef JSON_SCHEMA_H |
2 | #define JSON_SCHEMA_H | ||||
3 | |||||
4 | #include "json.h" | ||||
5 | |||||
6 | #define JSON_SCHEMA_VERSION "https://json-schema.org/draft/2020-12/schema" | ||||
7 | |||||
8 | int validate_schema(json_object* schema, char* schema_directory, json_object* object, char* error_message); | ||||
9 | int validate_schema_from_file(const char* schema_file, json_object* object, char* error_message); | ||||
10 | |||||
11 | #endif |