-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
JSON_Validate() return JSONIllegalDocument on valid JSON #168
Comments
Thank you for raising the bug. Yes it seems like incorrect value [JSONIllegalDocument] is returned for this example. |
aggarg
added a commit
to aggarg/coreJSON
that referenced
this issue
Jul 18, 2024
Without this change, the following valid JSON document will be evaluated as invalid: ``` { "foo": {} } ``` This issue was reported here - FreeRTOS#168 Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
2 tasks
aggarg
added a commit
that referenced
this issue
Jul 20, 2024
Treat empty JSON object in key-value pair as valid Without this change, the following valid JSON document will be evaluated as invalid: ``` { "foo": {} } ``` This issue was reported here - #168 Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
Hi @vasilchenkosv , Closing the issue as the fix has been merged. Thank you |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JSON_Validate() return JSONIllegalDocument for valid JSON document.
The text was updated successfully, but these errors were encountered: