cancel
Showing results for 
Search instead for 
Did you mean: 

Schema friendly names

AMacourek
Deputy Chef III
Deputy Chef III

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.

2 REPLIES 2

gary1
Star Chef I
Star Chef I

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"
  }
]

 

shivakumara
Executive Chef III
Executive Chef III

Hi @AMacourek ,

I’m adding a few screenshots to support @gary1’s explanation. The label name determines how it appears and is displayed everywhere.
Schema definedSchema definedSchema Label namesSchema Label namesin every steps: Label will be displayedin every steps: Label will be displayed

Change your Label name that will solve your problem.

Thanks and Regards,
Shivakumara K A