|
Optional parameters can be set to null or omitted (both will have the same effect).
|
Parameter
|
Description
|
Required/Optional
|
||
---|---|---|---|---|
fieldName
|
The exact name of the field as it appears in the dataset.
|
Required
|
||
values
|
A list of the acceptable values for the field.
|
Required if the opType is Ordinal
Optional for Categorical opType
Do not use for Boolean and Continuous
|
||
range
|
For a Continuous field, defines the minimum and maximum values the field can accept. For informational purposes only. Should be specified as:
"range": {"min": <value>, "max": <value>}
|
Optional
|
||
dataType
|
Describes what type of data the field contains. Options include: STRING, DOUBLE, BOOLEAN, INTEGER.
These options must be entered as all uppercase values. Lowercase values will lead to errors.
|
Required
|
||
opType
|
Describes how the data in the field can be used. Options include: CONTINUOUS, CATEGORICAL, ORDINAL, BOOLEAN, TEMPORAL, ENTITY_ID.
These options must be entered as all uppercase values. Lowercase values will lead to errors.
|
Required
|
||
timeSamplingInterval
|
An integer representing the time between observations in a temporal field.
|
Required if the opType is Temporal
Do not use for other opTypes
|
||
isStatic
|
A flag indicating whether or not the value in a temporal field can change over time. Marking a field as static reduces training time by removing redundant data points for fields that do not change.
|
Optional
|