You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: properties_pane/container_level/containerLevelConfig.json
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -185,36 +185,41 @@ making sure that you maintain a proper JSON format.
185
185
"propertyKeyword": "start",
186
186
"propertyType": "numeric",
187
187
"valueType": "number",
188
-
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones."
188
+
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones.",
189
+
"maxValue": 999999999999999
189
190
},
190
191
{
191
192
"propertyName": "Increment",
192
193
"propertyKeyword": "increment",
193
194
"propertyType": "numeric",
194
195
"valueType": "number",
195
-
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence."
196
+
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence.",
197
+
"maxValue": 999999999999999
196
198
},
197
199
{
198
200
"propertyName": "Min value",
199
201
"propertyKeyword": "minValue",
200
202
"propertyType": "numeric",
201
203
"valueType": "number",
202
-
"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."
204
+
"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.",
205
+
"maxValue": 999999999999999
203
206
},
204
207
{
205
208
"propertyName": "Max value",
206
209
"propertyKeyword": "maxValue",
207
210
"propertyType": "numeric",
208
211
"valueType": "number",
209
-
"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."
212
+
"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.",
213
+
"maxValue": 999999999999999
210
214
},
211
215
{
212
216
"propertyName": "Cache",
213
217
"propertyKeyword": "cache",
214
218
"propertyType": "numeric",
215
219
"valueType": "number",
216
220
"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",
0 commit comments