-
Notifications
You must be signed in to change notification settings - Fork 12
String
Peter Svetlichny edited this page Aug 3, 2015
·
3 revisions
Validation for string types
Schema
"schema": {"maxLength": 2}
API
var schema = json.maxLength(2);
Schema
"schema": {"minLength": 2}
API
var schema = json.minLength(2);
Schema
"schema": {"pattern": "^a*$"}
API
var schema = json.pattern('^a*$');