ConfigProperty Data Type

Type that describes the configuration settings used to control Waterline Data behaviors. Properties include controls such as whether to profile files that failed previously. The information provided for each property includes the property name, the label used in the UI, a description of what the property controls, and attributes for who and how the property can be viewed or changed.

Abstract Type
Properties
name data type constraints description
label string  
category Category  
value object  
defaultValue object  
type DataType  
description string  
visible boolean required
readOnly boolean required
restartRequired boolean required
uiConfig boolean required

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "label" : "...",
  "category" : "MetadataService",
  "value" : { },
  "defaultValue" : { },
  "type" : "DECIMAL",
  "description" : "...",
  "visible" : true,
  "readOnly" : true,
  "restartRequired" : true,
  "uiConfig" : true
}