| 836 | // ***** Endpoint for ValidatorJson ****** |
| 837 | C_ATTR(json, :Local :AutoArgs) |
| 838 | void json(Context *c) |
| 839 | { |
| 840 | Validator v( |
| 841 | {new ValidatorJson(u"field"_s, ValidatorJson::ExpectedType::All, m_validatorMessages)}); |
| 842 | checkResponse(c, v.validate(c)); |
| 843 | } |
| 844 | |
| 845 | // ***** Endpoint for ValidatorJson with object expected ****** |
| 846 | C_ATTR(jsonObject, :Local :AutoArgs) |