• Resolved stevv

    (@stevv)


    Hello,

    Probably a simple answer, but I coudn’t find the sollution yet. How can I show nested items from a JSON file. For example:

    	"response": [
    		{
    			"type": "departure",
    			"departure_code": "AMS",
    			"departure_time": "2016-11-14T00:55:00.000",
    			"arrival_code": "SAW",
    			"arrival_time": "2016-11-14T06:20:00.000",
    			"flight": {
    				"airline_name": "Pegasus",
    				"airline_code": "PC",
    				"number": "4478"
    			},
    			"status": "landed",
    			"codeshares": [
    				{
    					"airline_name": "KLM",
    					"airline_code": "KL",
    					"number": "3548"
    				}
    			]
    		},

    I would like to show the {departure_code} and {airline_name}. I use “response” as a basenode, but when I use the JCI template engine it only shows the {departure_code}

    Thanks again for your help.

    Best,

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Show nested JSON data’ is closed to new replies.