We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#include <rapidjson/schema.h> #include <rapidjson/document.h> #include <string> #include <iostream> namespace rapidjson { class MyRemoteSchemaDocumentProvider : public IRemoteSchemaDocumentProvider { public: virtual const SchemaDocument* GetRemoteDocument(const char* uri, SizeType length) { std::string str(uri, length); std::cout << str << std::endl; return NULL; } }; } int main() { using namespace rapidjson; Document doc; SetValueByPointer(doc, "/$ref", "schema_prefix#/path"); MyRemoteSchemaDocumentProvider provider; SchemaDocument schema(doc, &provider); }
it outputs schema_prefi but it should outputs schema_prefix
schema_prefi
schema_prefix
I have already created a pull request #723 hope to fix and release
The text was updated successfully, but these errors were encountered:
No branches or pull requests
it outputs
schema_prefi
but it should outputs
schema_prefix
I have already created a pull request #723
hope to fix and release
The text was updated successfully, but these errors were encountered: