Skip to main content

ODCheckerArrayStructureOptions interface

under construction

We are still working the API Reference! This page might be incomplete or doesn't contain all details!

Overview

This interface has the options for ODCheckerArrayStructure!

View Source

Properties


optional allowDoubles boolean boolean

Allow double values (only for string, number & boolean)

View Source


optional allowedTypes array ("string"|"number"|"boolean"|"object"|"other"|"null"|"array")[]

Only allow these types in the array (for multi-type propertyCheckers)

View Source


inherited optional custom function (checker:api.ODChecker, value:api.ODValidJsonType, locationTrace:api.ODCheckerLocationTrace, locationId:api.ODId, locationDocs:null|string) => boolean

Add a custom checker function. Returns true when valid.

View Source


optional disableEmpty boolean boolean

Don't allow this array to be empty

View Source


inherited optional docs string string

Set the url to the documentation of this variable.

View Source


optional emptyRequired boolean boolean

This array is required to be empty

View Source


optional length number number

The length of the array needs to be the same as this value

View Source


optional maxLength number number

The maximum length of this array

View Source


optional minLength number number

The minimum length of this array

View Source


optional propertyChecker class api.ODCheckerStructure

The checker for all the properties in this array

View Source