https://i.stack.imgur.com/k1bZD.png
I am using sys.person to capture the person's name. Is there any way for just 'john' and not the entire {"name": "john"} to show instead? I want to avoid sys.given-name and sys.last-name since dialogflow says they are deprecated.
Do you have your entity configured as a list? If it is a list, you probably have to output the parameter like
$session.params.name[0].name.If it's not a list,
$session.params.name.namewould work, but in that case I suggest you change the entity name toperson, as it would be more readable to see$session.params.person.name