Hello,
I have a cmdb lookup skill which returns the business application list, I am been trying to instruct the LLM to display only name, description and application owner. tried below map code also tested on data mapper playground, but getting response saying no records. without below code, it does display all the results. when there is single result, i would like to show something like below, but no much information on logs and no failures also bot is saying just ,,”No ownership information was found in the business application database or internal knowledge sources.”
please help me to identify the issue. also give me a good documentation back end supported syntaxes like system_prompt, display_instructions, I want to study deep here.

{
"result": [
{
"short_description": "Sample description of the application or service.",
"u_tower": {
"display_value": "Tower Name",
"link": "https://example.com/api/u_tower/placeholder"
},
"assignment_group": {
"display_value": "Support Group Name",
"link": "https://example.com/api/sys_user_group/placeholder"
},
"application_manager": {
"display_value": "Application Manager Name",
"link": "https://example.com/api/sys_user/placeholder"
},
"it_application_owner": {
"display_value": "IT Application Owner Name",
"link": "https://example.com/api/sys_user/placeholder"
},
"name": "Application Name",
"u_stack": {
"display_value": "Stack Name",
"link": "https://example.com/api/u_stack/placeholder"
},
"assigned_to": {
"display_value": "Assigned User Name",
"link": "https://example.com/api/sys_user/placeholder"
}
}
]
}

