Indeed, it seems that Qt support for checking JSON Schema does not exist, even in Qt 5.1. Since writing your own would be very time consuming, I would suggest:
If you, as a developer, provided a scheme, then do not check with the JSON Schema check, but instead perform a strictly coded check of your JSON parsing (i.e. manually check for the necessary fields, are of the correct type and are within the specified boundaries)
If processing of an external JSON scheme is required (i.e. the scheme is not known in advance, possibly user-defined), then do not use Qt, but an independent JSON C / C ++ validator, for example WJElement (the one specified on the json- website schema)
Boris source share