FeatureBounds#
Table of Contents
Overview#
A map defining any feature bounds, allowed values, and constraints.
- type:
object
Properties#
allow_null#
Allow nulls to be output, per their distribution in the data. Defaults to true.
- type:
boolean
allowed#
Explicitly allowed values to be output.
- type:
list
- values:
any
constraint#
Amalgam code, whose logic has to evaluate to true for value to be considered valid when this feature is being generated. Same format as ‘derived_feature_code’.
Examples:
- "(> #f1 0 #f2 0)"
: Feature ‘f1’ value from current (offset 0) data must be bigger than feature ‘f2’ value from current (offset 0) data.
- type:
string
max#
The maximum value to be output. May be a number or date string.
- type:
number | string
min#
The minimum value to be output. May be a number or date string.
- type:
number | string