You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -3906,6 +3924,12 @@ function DataValidator(schema) {
3906
3924
return;
3907
3925
if(schema.minLength&&data.length<parseInt(schema.minLength))this.addError(coords,'This value must be at least '+schema.minLength+' characters long.');
3908
3926
if((schema.maxLength||schema.maxLength==0)&&data.length>parseInt(schema.maxLength))this.addError(coords,'This value may not be longer than '+schema.maxLength+' characters.');
@@ -3981,6 +4005,11 @@ function DataValidator(schema) {
3981
4005
if((schema.exclusiveMinimum||schema.exclusiveMinimum===0)&&data<=schema.exclusiveMinimum)this.addError(coords,'This value must be greater than '+schema.exclusiveMinimum);
3982
4006
if((schema.exclusiveMaximum||schema.exclusiveMaximum===0)&&data>=schema.exclusiveMaximum)this.addError(coords,'This value must be less than '+schema.exclusiveMaximum);
3983
4007
if((schema.multipleOf||schema.multipleOf===0)&&data*100%(schema.multipleOf*100)/100)this.addError(coords,'This value must be a multiple of '+schema.multipleOf);
@@ -3900,6 +3918,12 @@ function DataValidator(schema) {
3900
3918
return;
3901
3919
if(schema.minLength&&data.length<parseInt(schema.minLength))this.addError(coords,'This value must be at least '+schema.minLength+' characters long.');
3902
3920
if((schema.maxLength||schema.maxLength==0)&&data.length>parseInt(schema.maxLength))this.addError(coords,'This value may not be longer than '+schema.maxLength+' characters.');
@@ -3975,6 +3999,11 @@ function DataValidator(schema) {
3975
3999
if((schema.exclusiveMinimum||schema.exclusiveMinimum===0)&&data<=schema.exclusiveMinimum)this.addError(coords,'This value must be greater than '+schema.exclusiveMinimum);
3976
4000
if((schema.exclusiveMaximum||schema.exclusiveMaximum===0)&&data>=schema.exclusiveMaximum)this.addError(coords,'This value must be less than '+schema.exclusiveMaximum);
3977
4001
if((schema.multipleOf||schema.multipleOf===0)&&data*100%(schema.multipleOf*100)/100)this.addError(coords,'This value must be a multiple of '+schema.multipleOf);
@@ -3900,6 +3918,12 @@ function DataValidator(schema) {
3900
3918
return;
3901
3919
if(schema.minLength&&data.length<parseInt(schema.minLength))this.addError(coords,'This value must be at least '+schema.minLength+' characters long.');
3902
3920
if((schema.maxLength||schema.maxLength==0)&&data.length>parseInt(schema.maxLength))this.addError(coords,'This value may not be longer than '+schema.maxLength+' characters.');
@@ -3975,6 +3999,11 @@ function DataValidator(schema) {
3975
3999
if((schema.exclusiveMinimum||schema.exclusiveMinimum===0)&&data<=schema.exclusiveMinimum)this.addError(coords,'This value must be greater than '+schema.exclusiveMinimum);
3976
4000
if((schema.exclusiveMaximum||schema.exclusiveMaximum===0)&&data>=schema.exclusiveMaximum)this.addError(coords,'This value must be less than '+schema.exclusiveMaximum);
3977
4001
if((schema.multipleOf||schema.multipleOf===0)&&data*100%(schema.multipleOf*100)/100)this.addError(coords,'This value must be a multiple of '+schema.multipleOf);
0 commit comments