Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions properties_pane/container_level/containerLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* Copyright © 2016-2017 by IntegrIT S.A. dba Hackolade. All rights reserved.
*
* The copyright to the computer software herein is the property of IntegrIT S.A.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.


In order to define custom properties for any object's properties pane, you may copy/paste from the following,
Expand Down Expand Up @@ -61,8 +61,8 @@ making sure that you maintain a proper JSON format.
]
},
// “groupInput” can have the following states - 0 items, 1 item, and many items.
// “blockInput” has only 2 states - 0 items or 1 item.
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
// “blockInput” has only 2 states - 0 items or 1 item.
// This gives us an easy way to represent it as an object and not as an array internally which is beneficial for processing
// and forward-engineering in particular.
{
"propertyName": "Block",
Expand Down Expand Up @@ -90,7 +90,7 @@ making sure that you maintain a proper JSON format.
"propertyKeyword": "keyList",
"propertyType": "fieldList",
"template": "orderedList"
},
},
{
"propertyName": "List with attribute",
"propertyKeyword": "keyListOrder",
Expand Down Expand Up @@ -182,31 +182,31 @@ making sure that you maintain a proper JSON format.
"propertyType": "numeric",
"valueType": "number",
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones.",
"maxValue": 999999999999999
"maxValue": 9223372036854775807
},
{
"propertyName": "Increment",
"propertyKeyword": "increment",
"propertyType": "numeric",
"valueType": "number",
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence.",
"maxValue": 999999999999999
"maxValue": 9223372036854775807
},
{
"propertyName": "Min value",
"propertyKeyword": "minValue",
"propertyType": "numeric",
"valueType": "number",
"propertyTooltip": "Determines the minimum value a sequence can generate. If this clause is not supplied is specified, then defaults will be used. The default for an ascending sequence is 1. The default for a descending sequence is the minimum value of the data type.",
"maxValue": 999999999999999
"maxValue": 9223372036854775807
},
{
"propertyName": "Max value",
"propertyKeyword": "maxValue",
"propertyType": "numeric",
"valueType": "number",
"propertyTooltip": "Determines the maximum value for the sequence. If this clause is not supplied is specified, then default values will be used. The default for an ascending sequence is the maximum value of the data type. The default for a descending sequence is -1.",
"maxValue": 999999999999999
"maxValue": 9223372036854775807
},
{
"propertyName": "Cache",
Expand All @@ -215,7 +215,7 @@ making sure that you maintain a proper JSON format.
"valueType": "number",
"propertyTooltip": "specifies how many sequence numbers are to be preallocated and stored in memory for faster access. The minimum value is 1 (only one value can be generated at a time, i.e., no cache), and this is also the default",
"minValue": 1,
"maxValue": 999999999999999
"maxValue": 9223372036854775807
},
{
"propertyName": "Cycle",
Expand Down
Loading