See the dojox/json/schema reference documentation for more information.
Parameter | Type | Description |
---|---|---|
instance | Any | |
schema | Object | |
_changing | Boolean |
The checkPropertyChange method will check to see if an value can legally be in property with the given schema This is slightly different than the validate method in that it will fail if the schema is readonly and it will not check for self-validation, it is assumed that the passed in value is already internally valid. The checkPropertyChange method will return the same object type as validate, see JSONSchema.validate for information.
Parameter | Type | Description |
---|---|---|
value | Any | The new instance value/object to check |
schema | Object | The schema to use to validate |
property | String |
see dojox.validate.jsonSchema.validate
This checks to ensure that the result is valid and will throw an appropriate error message if it is not
Parameter | Type | Description |
---|---|---|
result | undefined |
To use the validator call this with an instance object and an optional schema object. If a schema is provided, it will be used to validate. If the instance object refers to a schema (self-validating), that schema will be used to validate and the schema parameter is not necessary (if both exist, both validations will occur).
The validate method will return an object with two properties:
Parameter | Type | Description |
---|---|---|
instance | Any | The instance value/object to validate |
schema | Object | The schema to use to validate |