| 845 | // ***** Endpoint for ValidatorJson with object expected ****** |
| 846 | C_ATTR(jsonObject, :Local :AutoArgs) |
| 847 | void jsonObject(Context *c) |
| 848 | { |
| 849 | Validator v({new ValidatorJson( |
| 850 | u"field"_s, ValidatorJson::ExpectedType::Object, m_validatorMessages)}); |
| 851 | checkResponse(c, v.validate(c)); |
| 852 | } |
| 853 | |
| 854 | // ***** Endpoint for ValidatorJson with array expected ****** |
| 855 | C_ATTR(jsonArray, :Local :AutoArgs) |