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