Skip to content
Snippets Groups Projects
Commit f6428b2d authored by Vermaat's avatar Vermaat
Browse files

Update JSON webservice to use JsonDocument instead of deprecated JsonObject

This changes the output format of the JSON webservice. Results are no longer
wrapped (twice) in an object. For example, the request

    /checkSyntax?variant=AB026906.1:c.274del

used to return

    {"checkSyntaxResponse": {"checkSyntaxResult":
      {"valid": true, "messages": {"SoapMessage": []}}}}

and now returns

    {"valid": true, "messages": []}

We also use "soft" input validation.
parent 90b2af81
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment