CMS Development

MVillarreal43
Member

DotSquares Error Code

SOLVE

Hello, 


When attempting to create a new custom object, I receive this error code. Does anyone know how to fix this? 

 

Error Code

Invalid input JSON on line 1, column 1274: Cannot build OptionInput, some of required attributes are not set [value]

0 Upvotes
1 Accepted solution
Anton
Solution
Thought Leader | Partner
Thought Leader | Partner

DotSquares Error Code

SOLVE

Hi @MVillarreal43

sounds like your "default"-value is not set.

If you set an option to required:true you need to type in something in "default".

{
"name": "option_1",
"label": "Option 1",
"required": false, <-- if this is set to true
"locked": false,
"display": "select",
"inline_help_text": "",
"help_text": "",
"choices": [
[ "option1", "Option 1" ],
[ "option1", "Option 2" ]
],
"type": "choice",
"placeholder": "",
"default": "option1" <-- this a) can't be empty and b) has to be one of your selectable values
}

Could you please post the affected JSON part for better support?

 

best, 

Anton

 

Anton Bujanowski Signature

View solution in original post

0 Upvotes
1 Reply 1
Anton
Solution
Thought Leader | Partner
Thought Leader | Partner

DotSquares Error Code

SOLVE

Hi @MVillarreal43

sounds like your "default"-value is not set.

If you set an option to required:true you need to type in something in "default".

{
"name": "option_1",
"label": "Option 1",
"required": false, <-- if this is set to true
"locked": false,
"display": "select",
"inline_help_text": "",
"help_text": "",
"choices": [
[ "option1", "Option 1" ],
[ "option1", "Option 2" ]
],
"type": "choice",
"placeholder": "",
"default": "option1" <-- this a) can't be empty and b) has to be one of your selectable values
}

Could you please post the affected JSON part for better support?

 

best, 

Anton

 

Anton Bujanowski Signature
0 Upvotes