โ02-10-2026 05:43 AM
Is there a way to have Workato NOT show a friendly name for a schema. I have a recipe function that returns an object based on a schema and I would like to use that schema in the calling recipe as it was defined. For example, show "displayName" instead of "Display name"
I realize that Workato is trying to make it more readable, but I would like it verbatim.
โ02-10-2026 10:16 AM
If it's a schema you defined, you can update the label value.
I also find this behavior really annoying. I wish they would always use the key name for the data pill, or at least show it in smaller text so I don't need to hover to see it.
## default for 'firstName' will display as "First name"
[
{
"name": "firstName",
"type": "string",
"optional": false,
"control_type": "text",
"label": "First name" ## this guy right here
}
]
## the below will display as "firstName" in the data pill
[
{
"name": "firstName",
"type": "string",
"optional": false,
"control_type": "text",
"label": "firstName"
}
]
โ02-10-2026 09:25 PM
Hi @AMacourek ,
Change your Label name that will solve your problem.
Thanks and Regards,
Shivakumara K A