| 854 | // ***** Endpoint for ValidatorJson with array expected ****** |
| 855 | C_ATTR(jsonArray, :Local :AutoArgs) |
| 856 | void jsonArray(Context *c) |
| 857 | { |
| 858 | Validator v({new ValidatorJson( |
| 859 | u"field"_s, ValidatorJson::ExpectedType::Array, m_validatorMessages)}); |
| 860 | checkResponse(c, v.validate(c)); |
| 861 | } |
| 862 | |
| 863 | // ***** Endpoint for ValidatorMax ****** |
| 864 | C_ATTR(max, :Local :AutoArgs) |