{"info":{"_postman_id":"95081dec-d3a5-4cd8-9849-b5b6706704e0","name":"ePapers API (v1)","description":"## API Specification\n\nThe ePapers API (v1) currently provides public read-only access to a set of REST based resources. Our API is based on the [**JSON API Specification**](https://jsonapi.org/format/). Consumers should be familiar with that specification before using our API. \n\nOur support for that specification is a follows:\n\n### Supported\n\n* Inlcude\n* Related\n* Pagination\n* Sorting\n* Filtering\n\n### Not Supported\n\n* Sparse Fieldsets (this is an optional feature per the spec)\n\n\nSince our data set is currently read only, GET is the only supported HTTP method. All data is returned in JSON format per the spec. Clients **MUST** pass the applucable headers including Accept application/vnd.api+json.","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Base URL","item":[],"id":"fbb3ea28-06dc-4f21-bc44-2ccc5d89b693","description":"**All** API requests must originate from a BASE URL of api.epapers.org followed by a Conference resource identifier. That identifier is usually the same URL segement used to access you conference in the ePapers application. So, if you ePapers applicaiton URL is epapers.org/apec2019, then your conference identifier would be *apec2019* and your BASE URL for API access would be ***api.epapers.org/apec2019***.  ","event":[{"listen":"prerequest","script":{"id":"8e1e9030-0cd8-447f-a25e-f4345cc322fe","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"26a4e7f9-ea75-49f1-8adc-dfda6245a43d","type":"text/javascript","exec":[""]}}],"_postman_id":"fbb3ea28-06dc-4f21-bc44-2ccc5d89b693"},{"name":"Conference Info","item":[{"name":"Conference Info","id":"f89bc64b-321b-49bc-8b1a-d80c8a415c06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BASE_URL}}","description":"Going to the API BASE URL for a given conference will return some basic data about that conference:\n\n```json\n{\n    \"data\": {\n        \"type\": \"conferences\",\n        \"id\": \"apec2019\",\n        \"attributes\": {\n            \"shortName\": \"APEC 2019\",\n            \"longName\": \"34th Annual IEEE Applied Power Electronics Conference & Exposition\",\n            \"tpcs\": \"José A. Cobos\"\n        },\n        \"links\": {\n            \"self\": \"http://api.epapers.org/conferences/apec2019\"\n        }\n    }\n}\n```"},"response":[],"_postman_id":"f89bc64b-321b-49bc-8b1a-d80c8a415c06"}],"id":"6066449a-9304-4391-8077-721dab01843d","_postman_id":"6066449a-9304-4391-8077-721dab01843d"},{"name":"Fetching Conference Session Data","item":[{"name":"All Sessions","id":"e12cb4a8-1b20-44b1-96db-320ba2070dac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{BASE_URL}}/sessions","description":"You can fetch *all* session data at this URL. While you can also include all papers and authors, we do not recommend doing this. You should instead retrieve paper and author data as includes for a single session resource.\n\n```json\n{\n    \"data\": [\n        {\n            \"type\": \"sessions\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"Single-Phase AC-DC Converters\",\n                \"code\": \"T17\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1730\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1847\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"name\": \"Multilevel and Multi-Phase AC-DC Converters\",\n                \"code\": \"T25\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1846\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1855\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"name\": \"AC-DC Converters\",\n                \"code\": \"D01\",\n                \"paperCount\": 13,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/3/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/3/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/3/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/3/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/3/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/3/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/3/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/3/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/3/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/3/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1809\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1845\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/3/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/3/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/3\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"name\": \"Integration & EMI Considerations of Power Converters\",\n                \"code\": \"T14\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1782\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1794\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"name\": \"SiC & GaN based Power Converters\",\n                \"code\": \"T29\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1738\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1865\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"name\": \"Power Converter Packaging and Reliability\",\n                \"code\": \"D10\",\n                \"paperCount\": 10,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/9/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/9/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/9/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/9/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/9/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/9/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/9/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/9/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/9/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/9/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1739\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1782\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/9/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/9/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/9\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"name\": \"Wireless Power Transfer Applications\",\n                \"code\": \"T19\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1744\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1745\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"name\": \"Wireless Power Transfer Design Techniques\",\n                \"code\": \"T32\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1744\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1862\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"name\": \"Optimization of Wireless Power Transfer Systems\",\n                \"code\": \"T15\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1747\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1811\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"13\",\n            \"attributes\": {\n                \"name\": \"Applications for Wireless Power Transfer\",\n                \"code\": \"D14\",\n                \"paperCount\": 11,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/13/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/13/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/13/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/13/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/13/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/13/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/13/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/13/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/13/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/13/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1745\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1746\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/13/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/13/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/13\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"14\",\n            \"attributes\": {\n                \"name\": \"Control of DC-DC Converters\",\n                \"code\": \"T04\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1780\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1861\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"15\",\n            \"attributes\": {\n                \"name\": \"Control Strategies for Inverters and Motor Drives\",\n                \"code\": \"T20\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1743\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"16\",\n            \"attributes\": {\n                \"name\": \"Control Applications\",\n                \"code\": \"T36\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1784\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1864\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"17\",\n            \"attributes\": {\n                \"name\": \"Control Strategies for Improving Quality and Performance\",\n                \"code\": \"T28\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1781\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1786\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"18\",\n            \"attributes\": {\n                \"name\": \"Control\",\n                \"code\": \"D13\",\n                \"paperCount\": 24,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/18/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/18/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/18/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/18/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/18/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/18/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/18/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/18/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/18/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/18/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1780\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1784\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/18/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/18/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/18\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"20\",\n            \"attributes\": {\n                \"name\": \"WideBand Gap Applications\",\n                \"code\": \"T08\",\n                \"paperCount\": 8,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1817\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1838\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"21\",\n            \"attributes\": {\n                \"name\": \"Medical/Computing/Lighting Applications\",\n                \"code\": \"T16\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1840\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1867\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"22\",\n            \"attributes\": {\n                \"name\": \"Transportation/Storage/Grid\",\n                \"code\": \"T24\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1816\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1837\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"23\",\n            \"attributes\": {\n                \"name\": \"Industrial Applications\",\n                \"code\": \"T40\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1818\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1866\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"24\",\n            \"attributes\": {\n                \"name\": \"Photovoltaic Power Conversion Systems\",\n                \"code\": \"T03\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1752\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1792\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"25\",\n            \"attributes\": {\n                \"name\": \"Diagnostic and Fault-Tolerant Control of Renewable Energy Systems\",\n                \"code\": \"T23\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1790\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1793\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"26\",\n            \"attributes\": {\n                \"name\": \"Microgrids Applications\",\n                \"code\": \"T11\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1785\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1788\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"27\",\n            \"attributes\": {\n                \"name\": \"Power Converter Design for Renewable Energy Applications\",\n                \"code\": \"T39\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1750\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1813\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"28\",\n            \"attributes\": {\n                \"name\": \"Renewable Energy System\",\n                \"code\": \"D15\",\n                \"paperCount\": 26,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/28/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/28/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/28/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/28/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/28/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/28/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/28/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/28/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/28/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/28/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1789\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1791\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/28/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/28/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/28\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"29\",\n            \"attributes\": {\n                \"name\": \"Utility Interactive Converters I\",\n                \"code\": \"D05\",\n                \"paperCount\": 11,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/29/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/29/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/29/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/29/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/29/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/29/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/29/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/29/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/29/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/29/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1806\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1808\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/29/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/29/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/29\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"30\",\n            \"attributes\": {\n                \"name\": \"Topologies for Grid-Tied Converters\",\n                \"code\": \"T07\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1753\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1809\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"31\",\n            \"attributes\": {\n                \"name\": \"Drives & Inverters: Topologies & Control\",\n                \"code\": \"T05\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1843\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1860\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"32\",\n            \"attributes\": {\n                \"name\": \"Faults and Dynamics in Grid-Tied Systems\",\n                \"code\": \"T37\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1753\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1858\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"33\",\n            \"attributes\": {\n                \"name\": \"Drives & Inverters: Parameter Identification, Measurement & Diagnostics\",\n                \"code\": \"T22\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1832\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1854\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"34\",\n            \"attributes\": {\n                \"name\": \"Motor Drive Modulation & Control Strategies\",\n                \"code\": \"T38\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1812\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1863\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"35\",\n            \"attributes\": {\n                \"name\": \"Control Algorithms for Utility Interactive Systems\",\n                \"code\": \"T31\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1755\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1758\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"36\",\n            \"attributes\": {\n                \"name\": \"Grid Applications\",\n                \"code\": \"D18\",\n                \"paperCount\": 10,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/36/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/36/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/36/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/36/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"13\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/36/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/36/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/36/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/36/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/36/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/36/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1834\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1839\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/36/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/36/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/36\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"37\",\n            \"attributes\": {\n                \"name\": \"Power Converter Modeling and Simulation\",\n                \"code\": \"T02\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1825\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1826\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"38\",\n            \"attributes\": {\n                \"name\": \"Magnetics Modeling, Design & Applications\",\n                \"code\": \"T26\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1828\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1829\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"39\",\n            \"attributes\": {\n                \"name\": \"Power Device and Module Modeling\",\n                \"code\": \"T10\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1821\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1822\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"40\",\n            \"attributes\": {\n                \"name\": \"Misc Application\",\n                \"code\": \"D17\",\n                \"paperCount\": 16,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/40/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/40/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/40/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/40/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"14\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/40/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/40/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/40/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/40/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/40/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/40/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1761\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1848\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/40/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/40/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/40\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"41\",\n            \"attributes\": {\n                \"name\": \"Utility Interactive Converters II\",\n                \"code\": \"D04\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/41/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/41/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/41/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/41/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"13\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/41/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/41/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/41/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/41/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/41/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/41/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1759\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1810\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/41/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/41/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/41\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"42\",\n            \"attributes\": {\n                \"name\": \"Power Device and Magnetics Modeling\",\n                \"code\": \"D12\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/42/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/42/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/42/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/42/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"13\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/42/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/42/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/42/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/42/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/42/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/42/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1823\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1824\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/42/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/42/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/42\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"43\",\n            \"attributes\": {\n                \"name\": \"Modeling and Simulation of Power Converters\",\n                \"code\": \"D11\",\n                \"paperCount\": 8,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/43/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/43/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/43/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/43/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"14\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/43/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/43/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/43/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/43/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/43/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/43/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1814\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1827\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/43/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/43/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/43\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"44\",\n            \"attributes\": {\n                \"name\": \"Inverter Modulation & Control Strategies\",\n                \"code\": \"T13\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1833\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1836\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"45\",\n            \"attributes\": {\n                \"name\": \"Hybrid DC-DC Converters\",\n                \"code\": \"T01\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1764\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1770\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"46\",\n            \"attributes\": {\n                \"name\": \"Transportation Power Electronics\",\n                \"code\": \"D16\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/46/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/46/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/46/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/46/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/46/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/46/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/46/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/46/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/46/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/46/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1742\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1803\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/46/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/46/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/46\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"47\",\n            \"attributes\": {\n                \"name\": \"Soft Switching DC-DC Converters\",\n                \"code\": \"T34\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1768\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1774\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"48\",\n            \"attributes\": {\n                \"name\": \"DC-DC Converter Applications\",\n                \"code\": \"T33\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1767\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1771\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"49\",\n            \"attributes\": {\n                \"name\": \"Step-up DC-DC Converters\",\n                \"code\": \"T27\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1775\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1857\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"50\",\n            \"attributes\": {\n                \"name\": \"Converters for Data Centers\",\n                \"code\": \"T09\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1763\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1773\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"51\",\n            \"attributes\": {\n                \"name\": \"Magnetics optimization\",\n                \"code\": \"T30\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1796\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1831\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"52\",\n            \"attributes\": {\n                \"name\": \"Rectifiers for EV Charging\",\n                \"code\": \"T12\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1802\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1849\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"53\",\n            \"attributes\": {\n                \"name\": \"Driving WBG devices\",\n                \"code\": \"T21\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1795\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1820\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"54\",\n            \"attributes\": {\n                \"name\": \"DC-DC Converters I\",\n                \"code\": \"D02\",\n                \"paperCount\": 19,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/54/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/54/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/54/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/54/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/54/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/54/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/54/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/54/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/54/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/54/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1776\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1852\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/54/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/54/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/54\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"55\",\n            \"attributes\": {\n                \"name\": \"DC-DC Converters II\",\n                \"code\": \"D03\",\n                \"paperCount\": 22,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/55/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/55/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/55/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/55/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/55/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/55/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/55/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/55/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/55/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/55/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1842\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1850\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/55/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/55/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/55\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"56\",\n            \"attributes\": {\n                \"name\": \"Devices and Components I\",\n                \"code\": \"T06\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1800\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1801\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"57\",\n            \"attributes\": {\n                \"name\": \"Resonant DC-DC Converters\",\n                \"code\": \"T18\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1765\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1766\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"58\",\n            \"attributes\": {\n                \"name\": \"Power Electronics for Transportation\",\n                \"code\": \"T35\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1734\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1805\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"59\",\n            \"attributes\": {\n                \"name\": \"Devices and Components II\",\n                \"code\": \"D09\",\n                \"paperCount\": 13,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/59/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/59/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/59/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/59/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/59/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/59/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/59/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/59/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/59/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/59/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1798\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1819\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/59/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/59/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/59\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"60\",\n            \"attributes\": {\n                \"name\": \"Magnetic Components\",\n                \"code\": \"D08\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/60/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/60/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/60/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/60/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/60/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/60/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/60/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/60/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/60/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/60/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1797\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1856\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/60/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/60/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/60\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"61\",\n            \"attributes\": {\n                \"name\": \"Inverters\",\n                \"code\": \"D06\",\n                \"paperCount\": 11,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/61/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/61/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/61/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/61/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"14\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/61/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/61/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/61/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/61/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/61/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/61/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1832\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1833\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/61/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/61/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/61\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"62\",\n            \"attributes\": {\n                \"name\": \"Motor Drives\",\n                \"code\": \"D07\",\n                \"paperCount\": 18,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/62/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/62/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/62/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/62/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/62/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/62/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/62/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/62/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/62/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/62/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1844\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1851\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/62/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/62/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/62\"\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"tracks\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"number\": \"1\",\n                \"name\": \"AC-DC Converters\",\n                \"color\": \"FFCC00\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/1/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/1/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"schedules\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"Lecture\",\n                \"abbr\": \"L\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/1/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/1/sessions\"\n                    }\n                },\n                \"col-defs\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/1/relationships/col-defs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/1/col-defs\"\n                    }\n                },\n                \"row-defs\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/1/relationships/row-defs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/1/row-defs\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"location\": \"211AB\",\n                \"order\": 1,\n                \"code\": \"A\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"date\": \"Mar 20th, 2019\",\n                \"start\": \"14:00\",\n                \"end\": \"17:30\",\n                \"order\": 3,\n                \"code\": \"B2\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1730\",\n            \"attributes\": {\n                \"firstName\": \"Gerry\",\n                \"lastName\": \"Moschopoulos\",\n                \"affiliation\": \"Western University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1730/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1730/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1847\",\n            \"attributes\": {\n                \"firstName\": \"Qiang\",\n                \"lastName\": \"Li\",\n                \"affiliation\": \"Virginia Tech\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1847/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1847/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"date\": \"Mar 21st, 2019\",\n                \"start\": \"08:30\",\n                \"end\": \"11:15\",\n                \"order\": 4,\n                \"code\": \"C1\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1846\",\n            \"attributes\": {\n                \"firstName\": \"Michael A. E.\",\n                \"lastName\": \"Andersen\",\n                \"affiliation\": \"Technical University of Denmark\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1846/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1846/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1855\",\n            \"attributes\": {\n                \"firstName\": \"Daniel\",\n                \"lastName\": \"Costinett\",\n                \"affiliation\": \"University of Tennessee, Knoxville\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1855/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1855/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"schedules\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"name\": \"Poster\",\n                \"abbr\": \"P\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/2/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/2/sessions\"\n                    }\n                },\n                \"col-defs\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/2/relationships/col-defs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/2/col-defs\"\n                    }\n                },\n                \"row-defs\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/2/relationships/row-defs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/2/row-defs\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"location\": \"Poster Area\",\n                \"order\": 1,\n                \"code\": \"J\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"date\": \"Mar 21st, 2019\",\n                \"start\": \"11:15\",\n                \"end\": \"13:45\",\n                \"order\": 1,\n                \"code\": \"C3\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1809\",\n            \"attributes\": {\n                \"firstName\": \"Suzan\",\n                \"lastName\": \"Eren\",\n                \"affiliation\": \"Queen's University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1809/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1809/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1845\",\n            \"attributes\": {\n                \"firstName\": \"Srdjan\",\n                \"lastName\": \"Lukic\",\n                \"affiliation\": \"NC State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1845/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1845/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"number\": \"6\",\n                \"name\": \"Power Electronics Integration and Manufacturing\",\n                \"color\": \"D7D7D7\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/6/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/6/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"location\": \"303CD\",\n                \"order\": 6,\n                \"code\": \"F\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"date\": \"Mar 20th, 2019\",\n                \"start\": \"08:30\",\n                \"end\": \"10:10\",\n                \"order\": 2,\n                \"code\": \"B1\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1782\",\n            \"attributes\": {\n                \"firstName\": \"Yu\",\n                \"lastName\": \"Du\",\n                \"affiliation\": \"ABB Inc.\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1782/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1782/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1794\",\n            \"attributes\": {\n                \"firstName\": \"Fred\",\n                \"lastName\": \"Weber\",\n                \"affiliation\": \"FTW, LLC\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1794/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1794/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"location\": \"303AB\",\n                \"order\": 5,\n                \"code\": \"E\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1738\",\n            \"attributes\": {\n                \"firstName\": \"Qing\",\n                \"lastName\": \"Ye\",\n                \"affiliation\": \"Toshiba International corporation\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1738/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1738/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1865\",\n            \"attributes\": {\n                \"firstName\": \"Victor\",\n                \"lastName\": \"Veliadis\",\n                \"affiliation\": \"North Carolina State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1865/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1865/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"location\": \"Poster Area\",\n                \"order\": 4,\n                \"code\": \"M\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"date\": \"Mar 21st, 2019\",\n                \"start\": \"11:15\",\n                \"end\": \"13:45\",\n                \"order\": 2,\n                \"code\": \"C4\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1739\",\n            \"attributes\": {\n                \"firstName\": \"Yuzhi\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1739/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1739/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"number\": \"9\",\n                \"name\": \"Wireless Power Transfer\",\n                \"color\": \"B7F6FF\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/9/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/9/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"location\": \"213C\",\n                \"order\": 3,\n                \"code\": \"C\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1744\",\n            \"attributes\": {\n                \"firstName\": \"Faisal\",\n                \"lastName\": \"Khan\",\n                \"affiliation\": \"University of Missouri at Kansas City\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1744/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1744/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1745\",\n            \"attributes\": {\n                \"firstName\": \"Sheldon\",\n                \"lastName\": \"Williamson\",\n                \"affiliation\": \"University of Ontario Institute of Technology\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1745/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1745/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"location\": \"304CD\",\n                \"order\": 8,\n                \"code\": \"H\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1862\",\n            \"attributes\": {\n                \"firstName\": \"Wisam\",\n                \"lastName\": \"Alhoor\",\n                \"affiliation\": \"Dialog Semiconductor\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1862/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1862/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"location\": \"304AB\",\n                \"order\": 7,\n                \"code\": \"G\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1747\",\n            \"attributes\": {\n                \"firstName\": \"Raghav\",\n                \"lastName\": \"Khanna\",\n                \"affiliation\": \"University of Toledo\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1747/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1747/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1811\",\n            \"attributes\": {\n                \"firstName\": \"Khurram\",\n                \"lastName\": \"Afridi\",\n                \"affiliation\": \"Cornell University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1811/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1811/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"location\": \"Poster Area\",\n                \"order\": 2,\n                \"code\": \"K\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"date\": \"Mar 21st, 2019\",\n                \"start\": \"11:15\",\n                \"end\": \"13:45\",\n                \"order\": 3,\n                \"code\": \"C5\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1746\",\n            \"attributes\": {\n                \"firstName\": \"Brian\",\n                \"lastName\": \"Zahnstecher\",\n                \"affiliation\": \"Powerrox LLC\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1746/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1746/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"number\": \"8\",\n                \"name\": \"Control\",\n                \"color\": \"639965\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/8/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/8/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"location\": \"213D\",\n                \"order\": 4,\n                \"code\": \"D\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"date\": \"Mar 19th, 2019\",\n                \"start\": \"08:30\",\n                \"end\": \"12:00\",\n                \"order\": 1,\n                \"code\": \"A1\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1780\",\n            \"attributes\": {\n                \"firstName\": \"Lucas\",\n                \"lastName\": \"Lu\",\n                \"affiliation\": \"GaN Systems\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1780/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1780/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1861\",\n            \"attributes\": {\n                \"firstName\": \"Chao\",\n                \"lastName\": \"Fei\",\n                \"affiliation\": \"Google\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1861/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1861/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1743\",\n            \"attributes\": {\n                \"firstName\": \"Jaber\",\n                \"lastName\": \"Abu Qahouq\",\n                \"affiliation\": \"The University of Alabama\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1743/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1743/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"date\": \"Mar 21st, 2019\",\n                \"start\": \"13:45\",\n                \"end\": \"17:00\",\n                \"order\": 5,\n                \"code\": \"C2\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1784\",\n            \"attributes\": {\n                \"firstName\": \"Martin\",\n                \"lastName\": \"Ordonez\",\n                \"affiliation\": \"The University of British Columbia \"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1784/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1784/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1864\",\n            \"attributes\": {\n                \"firstName\": \"Weiming\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"SF Motors\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1864/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1864/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1781\",\n            \"attributes\": {\n                \"firstName\": \"Panagiotis\",\n                \"lastName\": \"Kakosimos\",\n                \"affiliation\": \"ABB AB Corporate Research\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1781/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1781/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1786\",\n            \"attributes\": {\n                \"firstName\": \"Seungdeog\",\n                \"lastName\": \"Choi\",\n                \"affiliation\": \"Mississippi State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1786/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1786/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"number\": \"12\",\n                \"name\": \"Power Electronics Applications\",\n                \"color\": \"D87093\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/12/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/12/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1817\",\n            \"attributes\": {\n                \"firstName\": \"Pedro\",\n                \"lastName\": \"Alou\",\n                \"affiliation\": \"Universidad Politecnica de Madrid\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1817/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1817/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1838\",\n            \"attributes\": {\n                \"firstName\": \"Doug\",\n                \"lastName\": \"Osterhout\",\n                \"affiliation\": \"Google Power group\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1838/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1838/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1840\",\n            \"attributes\": {\n                \"firstName\": \"Ed\",\n                \"lastName\": \"Massey\",\n                \"affiliation\": \"Methode\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1840/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1840/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1867\",\n            \"attributes\": {\n                \"firstName\": \"Jeff L.\",\n                \"lastName\": \"Nilles\",\n                \"affiliation\": \"-\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1867/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1867/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1816\",\n            \"attributes\": {\n                \"firstName\": \"Petar\",\n                \"lastName\": \"Grbović\",\n                \"affiliation\": \"University of Innsbruck\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1816/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1816/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1837\",\n            \"attributes\": {\n                \"firstName\": \"Tae Hong\",\n                \"lastName\": \"Kim\",\n                \"affiliation\": \"Huawei\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1837/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1837/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1818\",\n            \"attributes\": {\n                \"firstName\": \"Jesus\",\n                \"lastName\": \"Acero\",\n                \"affiliation\": \"Universidad de Zaragoza\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1818/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1818/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1866\",\n            \"attributes\": {\n                \"firstName\": \"Aaron\",\n                \"lastName\": \"Xu\",\n                \"affiliation\": \"Google\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1866/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1866/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"number\": \"10\",\n                \"name\": \"Renewable Energy Systems\",\n                \"color\": \"6BB0D9\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/10/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/10/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1752\",\n            \"attributes\": {\n                \"firstName\": \"Yongheng\",\n                \"lastName\": \"Yang\",\n                \"affiliation\": \"Aalborg University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1752/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1752/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1792\",\n            \"attributes\": {\n                \"firstName\": \"Jian\",\n                \"lastName\": \"Sun\",\n                \"affiliation\": \"RPI\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1792/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1792/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1790\",\n            \"attributes\": {\n                \"firstName\": \"Fei\",\n                \"lastName\": \"Lu\",\n                \"affiliation\": \"Drexel University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1790/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1790/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1793\",\n            \"attributes\": {\n                \"firstName\": \"Minjie\",\n                \"lastName\": \"Chen\",\n                \"affiliation\": \"Princeton University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1793/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1793/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1785\",\n            \"attributes\": {\n                \"firstName\": \"Zeng\",\n                \"lastName\": \"Liu\",\n                \"affiliation\": \"Xi’an Jiaotong University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1785/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1785/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1788\",\n            \"attributes\": {\n                \"firstName\": \"Haoyu\",\n                \"lastName\": \"Wang\",\n                \"affiliation\": \"ShanghaiTech University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1788/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1788/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1750\",\n            \"attributes\": {\n                \"firstName\": \"Yinglai\",\n                \"lastName\": \"Xia\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1750/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1750/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1813\",\n            \"attributes\": {\n                \"firstName\": \"Ashish\",\n                \"lastName\": \"Kumar\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1813/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1813/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"location\": \"Poster Area\",\n                \"order\": 3,\n                \"code\": \"L\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1789\",\n            \"attributes\": {\n                \"firstName\": \"Serkan\",\n                \"lastName\": \"Dusmez\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1789/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1789/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1791\",\n            \"attributes\": {\n                \"firstName\": \"Saad\",\n                \"lastName\": \"Pervaiz\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1791/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1791/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"number\": \"3\",\n                \"name\": \"Power Electronics for Utility Interface\",\n                \"color\": \"C3C19D\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/3/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/3/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1806\",\n            \"attributes\": {\n                \"firstName\": \"Ali\",\n                \"lastName\": \"Khajehoddin\",\n                \"affiliation\": \"University of Alberta\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1806/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1806/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1808\",\n            \"attributes\": {\n                \"firstName\": \"Po-Tai\",\n                \"lastName\": \"Cheng\",\n                \"affiliation\": \"National Tsing Hua University (Taiwan)\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1808/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1808/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1753\",\n            \"attributes\": {\n                \"firstName\": \"Majid\",\n                \"lastName\": \"Pahlevani\",\n                \"affiliation\": \"University of Calgary\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1753/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1753/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"number\": \"4\",\n                \"name\": \"Motor Drives and Inverters\",\n                \"color\": \"F6DDB2\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/4/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/4/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1843\",\n            \"attributes\": {\n                \"firstName\": \"Arijit\",\n                \"lastName\": \"Banerjee\",\n                \"affiliation\": \"University of Illinois Urbana-Champaign\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1843/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1843/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1860\",\n            \"attributes\": {\n                \"firstName\": \"Karthik\",\n                \"lastName\": \"Jayaraman\",\n                \"affiliation\": \"Dialog Semiconductor\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1860/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1860/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1858\",\n            \"attributes\": {\n                \"firstName\": \"Xiaoqing\",\n                \"lastName\": \"Song\",\n                \"affiliation\": \"ABB\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1858/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1858/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1832\",\n            \"attributes\": {\n                \"firstName\": \"Mehdi\",\n                \"lastName\": \"Farasat\",\n                \"affiliation\": \"Louisiana State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1832/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1832/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1854\",\n            \"attributes\": {\n                \"firstName\": \"Mithat\",\n                \"lastName\": \"Kisacikoglu\",\n                \"affiliation\": \"University of Alabama\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1854/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1854/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1812\",\n            \"attributes\": {\n                \"firstName\": \"Rakib\",\n                \"lastName\": \"Islam\",\n                \"affiliation\": \"Dura Automotive Systems\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1812/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1812/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1863\",\n            \"attributes\": {\n                \"firstName\": \"Zhe\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"Nexteer Automotive\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1863/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1863/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1755\",\n            \"attributes\": {\n                \"firstName\": \"Praveen\",\n                \"lastName\": \"Jain\",\n                \"affiliation\": \"Queen's University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1755/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1755/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1758\",\n            \"attributes\": {\n                \"firstName\": \"Xiongfei\",\n                \"lastName\": \"Wang\",\n                \"affiliation\": \"Aalborg University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1758/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1758/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"13\",\n            \"attributes\": {\n                \"location\": \"Poster Area\",\n                \"order\": 5,\n                \"code\": \"N\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1834\",\n            \"attributes\": {\n                \"firstName\": \"Lanhua\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"TI\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1834/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1834/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1839\",\n            \"attributes\": {\n                \"firstName\": \"Ko-Tae\",\n                \"lastName\": \"Lee\",\n                \"affiliation\": \"IBM\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1839/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1839/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"number\": \"7\",\n                \"name\": \"Modeling and Simulation\",\n                \"color\": \"FFFA93\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/7/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/7/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"location\": \"212AB\",\n                \"order\": 2,\n                \"code\": \"B\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1825\",\n            \"attributes\": {\n                \"firstName\": \"Jing\",\n                \"lastName\": \"Xu\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1825/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1825/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1826\",\n            \"attributes\": {\n                \"firstName\": \"Sara\",\n                \"lastName\": \"Ahmed\",\n                \"affiliation\": \"University of Texas at San Antonio\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1826/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1826/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1828\",\n            \"attributes\": {\n                \"firstName\": \"Shuo\",\n                \"lastName\": \"Wang\",\n                \"affiliation\": \"University of Florida\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1828/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1828/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1829\",\n            \"attributes\": {\n                \"firstName\": \"Fang\",\n                \"lastName\": \"Luo\",\n                \"affiliation\": \"University of Arkansas\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1829/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1829/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1821\",\n            \"attributes\": {\n                \"firstName\": \"Rolando\",\n                \"lastName\": \"Burgos\",\n                \"affiliation\": \"Virginia Tech\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1821/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1821/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1822\",\n            \"attributes\": {\n                \"firstName\": \"Sandeep\",\n                \"lastName\": \"Bala\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1822/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1822/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"14\",\n            \"attributes\": {\n                \"location\": \"Poster Area\",\n                \"order\": 6,\n                \"code\": \"P\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1761\",\n            \"attributes\": {\n                \"firstName\": \"Liang\",\n                \"lastName\": \"Jia\",\n                \"affiliation\": \"Google Power group\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1761/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1761/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1848\",\n            \"attributes\": {\n                \"firstName\": \"Yichao\",\n                \"lastName\": \"Tang\",\n                \"affiliation\": \"TI\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1848/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1848/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1759\",\n            \"attributes\": {\n                \"firstName\": \"Jonathan\",\n                \"lastName\": \"Kimball\",\n                \"affiliation\": \"Missouri University of Science and Technology\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1759/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1759/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1810\",\n            \"attributes\": {\n                \"firstName\": \"Pritam\",\n                \"lastName\": \"Das\",\n                \"affiliation\": \"Binghamton University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1810/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1810/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1823\",\n            \"attributes\": {\n                \"firstName\": \"Ruxi\",\n                \"lastName\": \"Wang\",\n                \"affiliation\": \"GE Global Research\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1823/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1823/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1824\",\n            \"attributes\": {\n                \"firstName\": \"Hui\",\n                \"lastName\": \"Li\",\n                \"affiliation\": \"Florida State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1824/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1824/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1814\",\n            \"attributes\": {\n                \"firstName\": \"Shilpa\",\n                \"lastName\": \"Marti\",\n                \"affiliation\": \"University of Texas at San Antonio\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1814/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1814/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1827\",\n            \"attributes\": {\n                \"firstName\": \"Babak\",\n                \"lastName\": \"Parkhideh\",\n                \"affiliation\": \"University of North Carolina - Charlotte\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1827/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1827/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1833\",\n            \"attributes\": {\n                \"firstName\": \"Poria\",\n                \"lastName\": \"Fajri\",\n                \"affiliation\": \"University of Nevada, Reno\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1833/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1833/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1836\",\n            \"attributes\": {\n                \"firstName\": \"Ali\",\n                \"lastName\": \"Bazzi\",\n                \"affiliation\": \"American University of Beirut/University of Connecticut\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1836/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1836/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"number\": \"2\",\n                \"name\": \"DC-DC Converters\",\n                \"color\": \"FF6600\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/2/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/2/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1764\",\n            \"attributes\": {\n                \"firstName\": \"Pradeep\",\n                \"lastName\": \"Shenoy\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1764/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1764/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1770\",\n            \"attributes\": {\n                \"firstName\": \"Yan-Fei\",\n                \"lastName\": \"Liu\",\n                \"affiliation\": \"Queens University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1770/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1770/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"number\": \"11\",\n                \"name\": \"Transportation Power Electronics\",\n                \"color\": \"AAD9BB\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/11/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/11/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1742\",\n            \"attributes\": {\n                \"firstName\": \"John\",\n                \"lastName\": \"Vigars\",\n                \"affiliation\": \"Allegro MicroSystems\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1742/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1742/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1803\",\n            \"attributes\": {\n                \"firstName\": \"Hengzhao\",\n                \"lastName\": \"Yang\",\n                \"affiliation\": \"California State University Long Beach\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1803/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1803/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1768\",\n            \"attributes\": {\n                \"firstName\": \"Hanh-Phuc\",\n                \"lastName\": \"Le\",\n                \"affiliation\": \"University of Colorado at Boulder\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1768/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1768/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1774\",\n            \"attributes\": {\n                \"firstName\": \"Chenhao\",\n                \"lastName\": \"Nan\",\n                \"affiliation\": \"Google\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1774/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1774/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1767\",\n            \"attributes\": {\n                \"firstName\": \"Olivier\",\n                \"lastName\": \"Trescases\",\n                \"affiliation\": \"University of Toronto\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1767/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1767/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1771\",\n            \"attributes\": {\n                \"firstName\": \"Zach\",\n                \"lastName\": \"Pan\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1771/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1771/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1775\",\n            \"attributes\": {\n                \"firstName\": \"Gab-Su\",\n                \"lastName\": \"Seo\",\n                \"affiliation\": \"National Renewable Energy Laboratory\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1775/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1775/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1857\",\n            \"attributes\": {\n                \"firstName\": \"Wisam\",\n                \"lastName\": \"Moussa\",\n                \"affiliation\": \"Infineon\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1857/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1857/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1763\",\n            \"attributes\": {\n                \"firstName\": \"Xin\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"IBM\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1763/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1763/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1773\",\n            \"attributes\": {\n                \"firstName\": \"Robert\",\n                \"lastName\": \"Pilawa-Podgurski\",\n                \"affiliation\": \"University of California, Berkeley\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1773/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1773/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"number\": \"5\",\n                \"name\": \"Devices and Components\",\n                \"color\": \"838C84\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/5/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/5/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1796\",\n            \"attributes\": {\n                \"firstName\": \"Seungryul\",\n                \"lastName\": \"Moon\",\n                \"affiliation\": \"Nat'l Energy Technology Laboratory\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1796/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1796/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1831\",\n            \"attributes\": {\n                \"firstName\": \"Matthew\",\n                \"lastName\": \"Wilkowski\",\n                \"affiliation\": \"TBD\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1831/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1831/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1802\",\n            \"attributes\": {\n                \"firstName\": \"Yingying\",\n                \"lastName\": \"Kuai\",\n                \"affiliation\": \"Caterpillar Inc.\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1802/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1802/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1849\",\n            \"attributes\": {\n                \"firstName\": \"Arun K.\",\n                \"lastName\": \"Kadavelugu\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1849/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1849/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1795\",\n            \"attributes\": {\n                \"firstName\": \"Alireza\",\n                \"lastName\": \"Dayerizadeh\",\n                \"affiliation\": \"NC State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1795/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1795/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1820\",\n            \"attributes\": {\n                \"firstName\": \"Dong\",\n                \"lastName\": \"Dong\",\n                \"affiliation\": \"Virginia Tech\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1820/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1820/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1776\",\n            \"attributes\": {\n                \"firstName\": \"Brad\",\n                \"lastName\": \"Lehman\",\n                \"affiliation\": \"Northeastern University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1776/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1776/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1852\",\n            \"attributes\": {\n                \"firstName\": \"Tirthajyoti\",\n                \"lastName\": \"Sarkar\",\n                \"affiliation\": \"Onsemi\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1852/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1852/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1842\",\n            \"attributes\": {\n                \"firstName\": \"Yuxiang\",\n                \"lastName\": \"Shi\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1842/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1842/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1850\",\n            \"attributes\": {\n                \"firstName\": \"Jaehoon\",\n                \"lastName\": \"Baek\",\n                \"affiliation\": \"Korea University of Technology & Education\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1850/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1850/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1800\",\n            \"attributes\": {\n                \"firstName\": \"Pete\",\n                \"lastName\": \"Losee\",\n                \"affiliation\": \"UnitedSiC\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1800/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1800/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1801\",\n            \"attributes\": {\n                \"firstName\": \"Alex\",\n                \"lastName\": \"Huang\",\n                \"affiliation\": \"Univ of Texas at Austin\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1801/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1801/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1765\",\n            \"attributes\": {\n                \"firstName\": \"Cahit\",\n                \"lastName\": \"Gezgin\",\n                \"affiliation\": \"Infineon\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1765/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1765/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1766\",\n            \"attributes\": {\n                \"firstName\": \"Abey\",\n                \"lastName\": \"Mathew\",\n                \"affiliation\": \"IBM\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1766/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1766/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1734\",\n            \"attributes\": {\n                \"firstName\": \"Omer\",\n                \"lastName\": \"Onar\",\n                \"affiliation\": \"Oak Ridge National Laboratory\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1734/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1734/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1805\",\n            \"attributes\": {\n                \"firstName\": \"Behrooz\",\n                \"lastName\": \"Mirafzal\",\n                \"affiliation\": \"Kansas State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1805/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1805/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1798\",\n            \"attributes\": {\n                \"firstName\": \"Yam\",\n                \"lastName\": \"Siwakoti\",\n                \"affiliation\": \"University of Technology Sydney\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1798/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1798/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1819\",\n            \"attributes\": {\n                \"firstName\": \"Christina\",\n                \"lastName\": \"Dimarino\",\n                \"affiliation\": \"Virginia Tech\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1819/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1819/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1797\",\n            \"attributes\": {\n                \"firstName\": \"Edward\",\n                \"lastName\": \"Herbert\",\n                \"affiliation\": \"Inventor\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1797/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1797/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1856\",\n            \"attributes\": {\n                \"firstName\": \"Sewan\",\n                \"lastName\": \"Choi\",\n                \"affiliation\": \"Seoul National Unversity of Science and Technology\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1856/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1856/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1844\",\n            \"attributes\": {\n                \"firstName\": \"Rashmi\",\n                \"lastName\": \"Prasad\",\n                \"affiliation\": \"General Motors\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1844/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1844/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1851\",\n            \"attributes\": {\n                \"firstName\": \"Sangshin\",\n                \"lastName\": \"Kwak\",\n                \"affiliation\": \"Chung-Ang University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1851/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1851/sessions\"\n                    }\n                }\n            }\n        }\n    ]\n}\n```"},"response":[],"_postman_id":"e12cb4a8-1b20-44b1-96db-320ba2070dac"},{"name":"Sessions By Type","id":"244d68c0-14cf-4a8f-9182-d902aada255c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/vnd.api+json","type":"text"}],"url":{"raw":"{{BASE_URL}}/sessions?filter[schedule]=1","host":["{{BASE_URL}}"],"path":["sessions"],"query":[{"key":"filter[schedule]","value":"1"}]},"description":"You can filter session by type to get say either only all lecture or only all poster sessions. To do this, as a filter param specifying the type ID of the applciable shcdule type.\n\n```json\n{\n    \"data\": [\n        {\n            \"type\": \"sessions\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"Single-Phase AC-DC Converters\",\n                \"code\": \"T17\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1730\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1847\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/1/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/1\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"name\": \"Multilevel and Multi-Phase AC-DC Converters\",\n                \"code\": \"T25\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1846\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1855\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"name\": \"Integration & EMI Considerations of Power Converters\",\n                \"code\": \"T14\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1782\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1794\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/7/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/7\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"name\": \"SiC & GaN based Power Converters\",\n                \"code\": \"T29\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1738\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1865\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/8/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/8\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"name\": \"Wireless Power Transfer Applications\",\n                \"code\": \"T19\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1744\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1745\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/10/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/10\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"name\": \"Wireless Power Transfer Design Techniques\",\n                \"code\": \"T32\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1744\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1862\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/11/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/11\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"name\": \"Optimization of Wireless Power Transfer Systems\",\n                \"code\": \"T15\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"9\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1747\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1811\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/12/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/12\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"14\",\n            \"attributes\": {\n                \"name\": \"Control of DC-DC Converters\",\n                \"code\": \"T04\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1780\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1861\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/14/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/14\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"15\",\n            \"attributes\": {\n                \"name\": \"Control Strategies for Inverters and Motor Drives\",\n                \"code\": \"T20\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1743\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/15/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/15\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"16\",\n            \"attributes\": {\n                \"name\": \"Control Applications\",\n                \"code\": \"T36\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1784\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1864\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/16/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/16\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"17\",\n            \"attributes\": {\n                \"name\": \"Control Strategies for Improving Quality and Performance\",\n                \"code\": \"T28\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1781\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1786\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/17/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/17\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"20\",\n            \"attributes\": {\n                \"name\": \"WideBand Gap Applications\",\n                \"code\": \"T08\",\n                \"paperCount\": 8,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1817\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1838\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/20/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/20\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"21\",\n            \"attributes\": {\n                \"name\": \"Medical/Computing/Lighting Applications\",\n                \"code\": \"T16\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1840\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1867\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/21/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/21\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"22\",\n            \"attributes\": {\n                \"name\": \"Transportation/Storage/Grid\",\n                \"code\": \"T24\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1816\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1837\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/22/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/22\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"23\",\n            \"attributes\": {\n                \"name\": \"Industrial Applications\",\n                \"code\": \"T40\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"12\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"8\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1818\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1866\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/23/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/23\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"24\",\n            \"attributes\": {\n                \"name\": \"Photovoltaic Power Conversion Systems\",\n                \"code\": \"T03\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1752\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1792\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/24/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/24\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"25\",\n            \"attributes\": {\n                \"name\": \"Diagnostic and Fault-Tolerant Control of Renewable Energy Systems\",\n                \"code\": \"T23\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1790\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1793\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/25/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/25\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"26\",\n            \"attributes\": {\n                \"name\": \"Microgrids Applications\",\n                \"code\": \"T11\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1785\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1788\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/26/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/26\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"27\",\n            \"attributes\": {\n                \"name\": \"Power Converter Design for Renewable Energy Applications\",\n                \"code\": \"T39\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"10\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1750\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1813\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/27/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/27\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"30\",\n            \"attributes\": {\n                \"name\": \"Topologies for Grid-Tied Converters\",\n                \"code\": \"T07\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1753\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1809\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/30/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/30\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"31\",\n            \"attributes\": {\n                \"name\": \"Drives & Inverters: Topologies & Control\",\n                \"code\": \"T05\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1843\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1860\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/31/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/31\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"32\",\n            \"attributes\": {\n                \"name\": \"Faults and Dynamics in Grid-Tied Systems\",\n                \"code\": \"T37\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1753\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1858\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/32/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/32\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"33\",\n            \"attributes\": {\n                \"name\": \"Drives & Inverters: Parameter Identification, Measurement & Diagnostics\",\n                \"code\": \"T22\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1832\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1854\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/33/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/33\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"34\",\n            \"attributes\": {\n                \"name\": \"Motor Drive Modulation & Control Strategies\",\n                \"code\": \"T38\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1812\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1863\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/34/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/34\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"35\",\n            \"attributes\": {\n                \"name\": \"Control Algorithms for Utility Interactive Systems\",\n                \"code\": \"T31\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1755\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1758\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/35/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/35\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"37\",\n            \"attributes\": {\n                \"name\": \"Power Converter Modeling and Simulation\",\n                \"code\": \"T02\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1825\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1826\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/37/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/37\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"38\",\n            \"attributes\": {\n                \"name\": \"Magnetics Modeling, Design & Applications\",\n                \"code\": \"T26\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1828\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1829\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/38/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/38\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"39\",\n            \"attributes\": {\n                \"name\": \"Power Device and Module Modeling\",\n                \"code\": \"T10\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"7\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1821\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1822\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/39/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/39\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"44\",\n            \"attributes\": {\n                \"name\": \"Inverter Modulation & Control Strategies\",\n                \"code\": \"T13\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1833\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1836\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/44/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/44\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"45\",\n            \"attributes\": {\n                \"name\": \"Hybrid DC-DC Converters\",\n                \"code\": \"T01\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1764\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1770\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/45/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/45\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"47\",\n            \"attributes\": {\n                \"name\": \"Soft Switching DC-DC Converters\",\n                \"code\": \"T34\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1768\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1774\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/47/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/47\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"48\",\n            \"attributes\": {\n                \"name\": \"DC-DC Converter Applications\",\n                \"code\": \"T33\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1767\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1771\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/48/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/48\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"49\",\n            \"attributes\": {\n                \"name\": \"Step-up DC-DC Converters\",\n                \"code\": \"T27\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1775\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1857\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/49/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/49\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"50\",\n            \"attributes\": {\n                \"name\": \"Converters for Data Centers\",\n                \"code\": \"T09\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1763\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1773\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/50/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/50\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"51\",\n            \"attributes\": {\n                \"name\": \"Magnetics optimization\",\n                \"code\": \"T30\",\n                \"paperCount\": 7,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1796\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1831\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/51/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/51\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"52\",\n            \"attributes\": {\n                \"name\": \"Rectifiers for EV Charging\",\n                \"code\": \"T12\",\n                \"paperCount\": 5,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"4\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1802\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1849\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/52/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/52\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"53\",\n            \"attributes\": {\n                \"name\": \"Driving WBG devices\",\n                \"code\": \"T21\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1795\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1820\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/53/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/53\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"56\",\n            \"attributes\": {\n                \"name\": \"Devices and Components I\",\n                \"code\": \"T06\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"6\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1800\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1801\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/56/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/56\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"57\",\n            \"attributes\": {\n                \"name\": \"Resonant DC-DC Converters\",\n                \"code\": \"T18\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1765\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1766\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/57/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/57\"\n            }\n        },\n        {\n            \"type\": \"sessions\",\n            \"id\": \"58\",\n            \"attributes\": {\n                \"name\": \"Power Electronics for Transportation\",\n                \"code\": \"T35\",\n                \"paperCount\": 9,\n                \"duration\": null\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"data\": {\n                        \"type\": \"tracks\",\n                        \"id\": \"11\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/track\"\n                    }\n                },\n                \"schedule\": {\n                    \"data\": {\n                        \"type\": \"schedules\",\n                        \"id\": \"1\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/schedule\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/schedule\"\n                    }\n                },\n                \"col-def\": {\n                    \"data\": {\n                        \"type\": \"col-defs\",\n                        \"id\": \"3\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/col-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/col-def\"\n                    }\n                },\n                \"row-def\": {\n                    \"data\": {\n                        \"type\": \"row-defs\",\n                        \"id\": \"5\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/row-def\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/row-def\"\n                    }\n                },\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/papers\"\n                    }\n                },\n                \"chairs\": {\n                    \"data\": [\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1734\"\n                        },\n                        {\n                            \"type\": \"chairs\",\n                            \"id\": \"1805\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58/relationships/chairs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/58/chairs\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/58\"\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"type\": \"tracks\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"number\": \"1\",\n                \"name\": \"AC-DC Converters\",\n                \"color\": \"FFCC00\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/1/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/1/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"schedules\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"name\": \"Lecture\",\n                \"abbr\": \"L\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/1/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/1/sessions\"\n                    }\n                },\n                \"col-defs\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/1/relationships/col-defs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/1/col-defs\"\n                    }\n                },\n                \"row-defs\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/schedules/1/relationships/row-defs\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/schedules/1/row-defs\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"location\": \"211AB\",\n                \"order\": 1,\n                \"code\": \"A\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"date\": \"Mar 20th, 2019\",\n                \"start\": \"14:00\",\n                \"end\": \"17:30\",\n                \"order\": 3,\n                \"code\": \"B2\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1730\",\n            \"attributes\": {\n                \"firstName\": \"Gerry\",\n                \"lastName\": \"Moschopoulos\",\n                \"affiliation\": \"Western University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1730/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1730/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1847\",\n            \"attributes\": {\n                \"firstName\": \"Qiang\",\n                \"lastName\": \"Li\",\n                \"affiliation\": \"Virginia Tech\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1847/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1847/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"date\": \"Mar 21st, 2019\",\n                \"start\": \"08:30\",\n                \"end\": \"11:15\",\n                \"order\": 4,\n                \"code\": \"C1\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1846\",\n            \"attributes\": {\n                \"firstName\": \"Michael A. E.\",\n                \"lastName\": \"Andersen\",\n                \"affiliation\": \"Technical University of Denmark\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1846/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1846/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1855\",\n            \"attributes\": {\n                \"firstName\": \"Daniel\",\n                \"lastName\": \"Costinett\",\n                \"affiliation\": \"University of Tennessee, Knoxville\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1855/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1855/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"number\": \"6\",\n                \"name\": \"Power Electronics Integration and Manufacturing\",\n                \"color\": \"D7D7D7\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/6/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/6/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"6\",\n            \"attributes\": {\n                \"location\": \"303CD\",\n                \"order\": 6,\n                \"code\": \"F\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"date\": \"Mar 20th, 2019\",\n                \"start\": \"08:30\",\n                \"end\": \"10:10\",\n                \"order\": 2,\n                \"code\": \"B1\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1782\",\n            \"attributes\": {\n                \"firstName\": \"Yu\",\n                \"lastName\": \"Du\",\n                \"affiliation\": \"ABB Inc.\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1782/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1782/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1794\",\n            \"attributes\": {\n                \"firstName\": \"Fred\",\n                \"lastName\": \"Weber\",\n                \"affiliation\": \"FTW, LLC\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1794/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1794/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"location\": \"303AB\",\n                \"order\": 5,\n                \"code\": \"E\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1738\",\n            \"attributes\": {\n                \"firstName\": \"Qing\",\n                \"lastName\": \"Ye\",\n                \"affiliation\": \"Toshiba International corporation\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1738/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1738/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1865\",\n            \"attributes\": {\n                \"firstName\": \"Victor\",\n                \"lastName\": \"Veliadis\",\n                \"affiliation\": \"North Carolina State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1865/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1865/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"9\",\n            \"attributes\": {\n                \"number\": \"9\",\n                \"name\": \"Wireless Power Transfer\",\n                \"color\": \"B7F6FF\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/9/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/9/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"location\": \"213C\",\n                \"order\": 3,\n                \"code\": \"C\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1744\",\n            \"attributes\": {\n                \"firstName\": \"Faisal\",\n                \"lastName\": \"Khan\",\n                \"affiliation\": \"University of Missouri at Kansas City\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1744/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1744/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1745\",\n            \"attributes\": {\n                \"firstName\": \"Sheldon\",\n                \"lastName\": \"Williamson\",\n                \"affiliation\": \"University of Ontario Institute of Technology\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1745/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1745/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"location\": \"304CD\",\n                \"order\": 8,\n                \"code\": \"H\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1862\",\n            \"attributes\": {\n                \"firstName\": \"Wisam\",\n                \"lastName\": \"Alhoor\",\n                \"affiliation\": \"Dialog Semiconductor\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1862/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1862/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"location\": \"304AB\",\n                \"order\": 7,\n                \"code\": \"G\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1747\",\n            \"attributes\": {\n                \"firstName\": \"Raghav\",\n                \"lastName\": \"Khanna\",\n                \"affiliation\": \"University of Toledo\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1747/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1747/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1811\",\n            \"attributes\": {\n                \"firstName\": \"Khurram\",\n                \"lastName\": \"Afridi\",\n                \"affiliation\": \"Cornell University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1811/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1811/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"8\",\n            \"attributes\": {\n                \"number\": \"8\",\n                \"name\": \"Control\",\n                \"color\": \"639965\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/8/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/8/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"location\": \"213D\",\n                \"order\": 4,\n                \"code\": \"D\"\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"1\",\n            \"attributes\": {\n                \"date\": \"Mar 19th, 2019\",\n                \"start\": \"08:30\",\n                \"end\": \"12:00\",\n                \"order\": 1,\n                \"code\": \"A1\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1780\",\n            \"attributes\": {\n                \"firstName\": \"Lucas\",\n                \"lastName\": \"Lu\",\n                \"affiliation\": \"GaN Systems\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1780/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1780/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1861\",\n            \"attributes\": {\n                \"firstName\": \"Chao\",\n                \"lastName\": \"Fei\",\n                \"affiliation\": \"Google\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1861/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1861/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1743\",\n            \"attributes\": {\n                \"firstName\": \"Jaber\",\n                \"lastName\": \"Abu Qahouq\",\n                \"affiliation\": \"The University of Alabama\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1743/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1743/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"row-defs\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"date\": \"Mar 21st, 2019\",\n                \"start\": \"13:45\",\n                \"end\": \"17:00\",\n                \"order\": 5,\n                \"code\": \"C2\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1784\",\n            \"attributes\": {\n                \"firstName\": \"Martin\",\n                \"lastName\": \"Ordonez\",\n                \"affiliation\": \"The University of British Columbia \"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1784/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1784/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1864\",\n            \"attributes\": {\n                \"firstName\": \"Weiming\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"SF Motors\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1864/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1864/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1781\",\n            \"attributes\": {\n                \"firstName\": \"Panagiotis\",\n                \"lastName\": \"Kakosimos\",\n                \"affiliation\": \"ABB AB Corporate Research\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1781/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1781/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1786\",\n            \"attributes\": {\n                \"firstName\": \"Seungdeog\",\n                \"lastName\": \"Choi\",\n                \"affiliation\": \"Mississippi State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1786/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1786/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"12\",\n            \"attributes\": {\n                \"number\": \"12\",\n                \"name\": \"Power Electronics Applications\",\n                \"color\": \"D87093\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/12/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/12/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1817\",\n            \"attributes\": {\n                \"firstName\": \"Pedro\",\n                \"lastName\": \"Alou\",\n                \"affiliation\": \"Universidad Politecnica de Madrid\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1817/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1817/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1838\",\n            \"attributes\": {\n                \"firstName\": \"Doug\",\n                \"lastName\": \"Osterhout\",\n                \"affiliation\": \"Google Power group\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1838/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1838/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1840\",\n            \"attributes\": {\n                \"firstName\": \"Ed\",\n                \"lastName\": \"Massey\",\n                \"affiliation\": \"Methode\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1840/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1840/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1867\",\n            \"attributes\": {\n                \"firstName\": \"Jeff L.\",\n                \"lastName\": \"Nilles\",\n                \"affiliation\": \"-\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1867/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1867/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1816\",\n            \"attributes\": {\n                \"firstName\": \"Petar\",\n                \"lastName\": \"Grbović\",\n                \"affiliation\": \"University of Innsbruck\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1816/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1816/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1837\",\n            \"attributes\": {\n                \"firstName\": \"Tae Hong\",\n                \"lastName\": \"Kim\",\n                \"affiliation\": \"Huawei\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1837/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1837/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1818\",\n            \"attributes\": {\n                \"firstName\": \"Jesus\",\n                \"lastName\": \"Acero\",\n                \"affiliation\": \"Universidad de Zaragoza\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1818/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1818/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1866\",\n            \"attributes\": {\n                \"firstName\": \"Aaron\",\n                \"lastName\": \"Xu\",\n                \"affiliation\": \"Google\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1866/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1866/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"10\",\n            \"attributes\": {\n                \"number\": \"10\",\n                \"name\": \"Renewable Energy Systems\",\n                \"color\": \"6BB0D9\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/10/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/10/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1752\",\n            \"attributes\": {\n                \"firstName\": \"Yongheng\",\n                \"lastName\": \"Yang\",\n                \"affiliation\": \"Aalborg University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1752/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1752/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1792\",\n            \"attributes\": {\n                \"firstName\": \"Jian\",\n                \"lastName\": \"Sun\",\n                \"affiliation\": \"RPI\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1792/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1792/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1790\",\n            \"attributes\": {\n                \"firstName\": \"Fei\",\n                \"lastName\": \"Lu\",\n                \"affiliation\": \"Drexel University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1790/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1790/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1793\",\n            \"attributes\": {\n                \"firstName\": \"Minjie\",\n                \"lastName\": \"Chen\",\n                \"affiliation\": \"Princeton University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1793/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1793/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1785\",\n            \"attributes\": {\n                \"firstName\": \"Zeng\",\n                \"lastName\": \"Liu\",\n                \"affiliation\": \"Xi’an Jiaotong University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1785/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1785/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1788\",\n            \"attributes\": {\n                \"firstName\": \"Haoyu\",\n                \"lastName\": \"Wang\",\n                \"affiliation\": \"ShanghaiTech University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1788/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1788/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1750\",\n            \"attributes\": {\n                \"firstName\": \"Yinglai\",\n                \"lastName\": \"Xia\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1750/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1750/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1813\",\n            \"attributes\": {\n                \"firstName\": \"Ashish\",\n                \"lastName\": \"Kumar\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1813/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1813/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"3\",\n            \"attributes\": {\n                \"number\": \"3\",\n                \"name\": \"Power Electronics for Utility Interface\",\n                \"color\": \"C3C19D\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/3/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/3/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1753\",\n            \"attributes\": {\n                \"firstName\": \"Majid\",\n                \"lastName\": \"Pahlevani\",\n                \"affiliation\": \"University of Calgary\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1753/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1753/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1809\",\n            \"attributes\": {\n                \"firstName\": \"Suzan\",\n                \"lastName\": \"Eren\",\n                \"affiliation\": \"Queen's University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1809/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1809/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"4\",\n            \"attributes\": {\n                \"number\": \"4\",\n                \"name\": \"Motor Drives and Inverters\",\n                \"color\": \"F6DDB2\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/4/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/4/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1843\",\n            \"attributes\": {\n                \"firstName\": \"Arijit\",\n                \"lastName\": \"Banerjee\",\n                \"affiliation\": \"University of Illinois Urbana-Champaign\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1843/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1843/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1860\",\n            \"attributes\": {\n                \"firstName\": \"Karthik\",\n                \"lastName\": \"Jayaraman\",\n                \"affiliation\": \"Dialog Semiconductor\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1860/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1860/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1858\",\n            \"attributes\": {\n                \"firstName\": \"Xiaoqing\",\n                \"lastName\": \"Song\",\n                \"affiliation\": \"ABB\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1858/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1858/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1832\",\n            \"attributes\": {\n                \"firstName\": \"Mehdi\",\n                \"lastName\": \"Farasat\",\n                \"affiliation\": \"Louisiana State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1832/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1832/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1854\",\n            \"attributes\": {\n                \"firstName\": \"Mithat\",\n                \"lastName\": \"Kisacikoglu\",\n                \"affiliation\": \"University of Alabama\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1854/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1854/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1812\",\n            \"attributes\": {\n                \"firstName\": \"Rakib\",\n                \"lastName\": \"Islam\",\n                \"affiliation\": \"Dura Automotive Systems\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1812/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1812/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1863\",\n            \"attributes\": {\n                \"firstName\": \"Zhe\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"Nexteer Automotive\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1863/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1863/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1755\",\n            \"attributes\": {\n                \"firstName\": \"Praveen\",\n                \"lastName\": \"Jain\",\n                \"affiliation\": \"Queen's University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1755/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1755/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1758\",\n            \"attributes\": {\n                \"firstName\": \"Xiongfei\",\n                \"lastName\": \"Wang\",\n                \"affiliation\": \"Aalborg University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1758/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1758/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"7\",\n            \"attributes\": {\n                \"number\": \"7\",\n                \"name\": \"Modeling and Simulation\",\n                \"color\": \"FFFA93\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/7/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/7/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"col-defs\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"location\": \"212AB\",\n                \"order\": 2,\n                \"code\": \"B\"\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1825\",\n            \"attributes\": {\n                \"firstName\": \"Jing\",\n                \"lastName\": \"Xu\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1825/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1825/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1826\",\n            \"attributes\": {\n                \"firstName\": \"Sara\",\n                \"lastName\": \"Ahmed\",\n                \"affiliation\": \"University of Texas at San Antonio\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1826/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1826/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1828\",\n            \"attributes\": {\n                \"firstName\": \"Shuo\",\n                \"lastName\": \"Wang\",\n                \"affiliation\": \"University of Florida\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1828/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1828/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1829\",\n            \"attributes\": {\n                \"firstName\": \"Fang\",\n                \"lastName\": \"Luo\",\n                \"affiliation\": \"University of Arkansas\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1829/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1829/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1821\",\n            \"attributes\": {\n                \"firstName\": \"Rolando\",\n                \"lastName\": \"Burgos\",\n                \"affiliation\": \"Virginia Tech\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1821/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1821/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1822\",\n            \"attributes\": {\n                \"firstName\": \"Sandeep\",\n                \"lastName\": \"Bala\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1822/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1822/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1833\",\n            \"attributes\": {\n                \"firstName\": \"Poria\",\n                \"lastName\": \"Fajri\",\n                \"affiliation\": \"University of Nevada, Reno\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1833/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1833/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1836\",\n            \"attributes\": {\n                \"firstName\": \"Ali\",\n                \"lastName\": \"Bazzi\",\n                \"affiliation\": \"American University of Beirut/University of Connecticut\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1836/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1836/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"2\",\n            \"attributes\": {\n                \"number\": \"2\",\n                \"name\": \"DC-DC Converters\",\n                \"color\": \"FF6600\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/2/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/2/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1764\",\n            \"attributes\": {\n                \"firstName\": \"Pradeep\",\n                \"lastName\": \"Shenoy\",\n                \"affiliation\": \"Texas Instruments\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1764/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1764/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1770\",\n            \"attributes\": {\n                \"firstName\": \"Yan-Fei\",\n                \"lastName\": \"Liu\",\n                \"affiliation\": \"Queens University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1770/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1770/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1768\",\n            \"attributes\": {\n                \"firstName\": \"Hanh-Phuc\",\n                \"lastName\": \"Le\",\n                \"affiliation\": \"University of Colorado at Boulder\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1768/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1768/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1774\",\n            \"attributes\": {\n                \"firstName\": \"Chenhao\",\n                \"lastName\": \"Nan\",\n                \"affiliation\": \"Google\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1774/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1774/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1767\",\n            \"attributes\": {\n                \"firstName\": \"Olivier\",\n                \"lastName\": \"Trescases\",\n                \"affiliation\": \"University of Toronto\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1767/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1767/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1771\",\n            \"attributes\": {\n                \"firstName\": \"Zach\",\n                \"lastName\": \"Pan\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1771/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1771/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1775\",\n            \"attributes\": {\n                \"firstName\": \"Gab-Su\",\n                \"lastName\": \"Seo\",\n                \"affiliation\": \"National Renewable Energy Laboratory\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1775/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1775/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1857\",\n            \"attributes\": {\n                \"firstName\": \"Wisam\",\n                \"lastName\": \"Moussa\",\n                \"affiliation\": \"Infineon\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1857/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1857/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1763\",\n            \"attributes\": {\n                \"firstName\": \"Xin\",\n                \"lastName\": \"Zhang\",\n                \"affiliation\": \"IBM\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1763/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1763/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1773\",\n            \"attributes\": {\n                \"firstName\": \"Robert\",\n                \"lastName\": \"Pilawa-Podgurski\",\n                \"affiliation\": \"University of California, Berkeley\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1773/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1773/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"5\",\n            \"attributes\": {\n                \"number\": \"5\",\n                \"name\": \"Devices and Components\",\n                \"color\": \"838C84\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/5/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/5/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1796\",\n            \"attributes\": {\n                \"firstName\": \"Seungryul\",\n                \"lastName\": \"Moon\",\n                \"affiliation\": \"Nat'l Energy Technology Laboratory\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1796/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1796/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1831\",\n            \"attributes\": {\n                \"firstName\": \"Matthew\",\n                \"lastName\": \"Wilkowski\",\n                \"affiliation\": \"TBD\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1831/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1831/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"tracks\",\n            \"id\": \"11\",\n            \"attributes\": {\n                \"number\": \"11\",\n                \"name\": \"Transportation Power Electronics\",\n                \"color\": \"AAD9BB\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/tracks/11/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/tracks/11/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1802\",\n            \"attributes\": {\n                \"firstName\": \"Yingying\",\n                \"lastName\": \"Kuai\",\n                \"affiliation\": \"Caterpillar Inc.\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1802/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1802/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1849\",\n            \"attributes\": {\n                \"firstName\": \"Arun K.\",\n                \"lastName\": \"Kadavelugu\",\n                \"affiliation\": \"ABB U.S. Corporate Research Center\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1849/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1849/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1795\",\n            \"attributes\": {\n                \"firstName\": \"Alireza\",\n                \"lastName\": \"Dayerizadeh\",\n                \"affiliation\": \"NC State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1795/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1795/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1820\",\n            \"attributes\": {\n                \"firstName\": \"Dong\",\n                \"lastName\": \"Dong\",\n                \"affiliation\": \"Virginia Tech\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1820/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1820/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1800\",\n            \"attributes\": {\n                \"firstName\": \"Pete\",\n                \"lastName\": \"Losee\",\n                \"affiliation\": \"UnitedSiC\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1800/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1800/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1801\",\n            \"attributes\": {\n                \"firstName\": \"Alex\",\n                \"lastName\": \"Huang\",\n                \"affiliation\": \"Univ of Texas at Austin\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1801/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1801/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1765\",\n            \"attributes\": {\n                \"firstName\": \"Cahit\",\n                \"lastName\": \"Gezgin\",\n                \"affiliation\": \"Infineon\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1765/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1765/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1766\",\n            \"attributes\": {\n                \"firstName\": \"Abey\",\n                \"lastName\": \"Mathew\",\n                \"affiliation\": \"IBM\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1766/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1766/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1734\",\n            \"attributes\": {\n                \"firstName\": \"Omer\",\n                \"lastName\": \"Onar\",\n                \"affiliation\": \"Oak Ridge National Laboratory\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1734/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1734/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"chairs\",\n            \"id\": \"1805\",\n            \"attributes\": {\n                \"firstName\": \"Behrooz\",\n                \"lastName\": \"Mirafzal\",\n                \"affiliation\": \"Kansas State University\"\n            },\n            \"relationships\": {\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/chairs/1805/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/chairs/1805/sessions\"\n                    }\n                }\n            }\n        }\n    ]\n}\n```"},"response":[],"_postman_id":"244d68c0-14cf-4a8f-9182-d902aada255c"},{"name":"A Session With (optional) Papers and Authors","id":"4992f5a2-761a-4d08-891b-793db4e336bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/vnd.api+json"}],"url":{"raw":"{{BASE_URL}}/sessions/2?include=papers,papers.authors","host":["{{BASE_URL}}"],"path":["sessions","2"],"query":[{"key":"include","value":"papers,papers.authors"}]},"description":"To get a single session with it's applicable papers and authors, specify the session ID and params to include the papers, authors, or both.\n\n```json\n{\n    \"data\": {\n        \"type\": \"sessions\",\n        \"id\": \"2\",\n        \"attributes\": {\n            \"name\": \"Multilevel and Multi-Phase AC-DC Converters\",\n            \"code\": \"T25\",\n            \"paperCount\": 7,\n            \"duration\": null\n        },\n        \"relationships\": {\n            \"track\": {\n                \"data\": {\n                    \"type\": \"tracks\",\n                    \"id\": \"1\"\n                },\n                \"links\": {\n                    \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/track\",\n                    \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/track\"\n                }\n            },\n            \"schedule\": {\n                \"data\": {\n                    \"type\": \"schedules\",\n                    \"id\": \"1\"\n                },\n                \"links\": {\n                    \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/schedule\",\n                    \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/schedule\"\n                }\n            },\n            \"col-def\": {\n                \"data\": {\n                    \"type\": \"col-defs\",\n                    \"id\": \"1\"\n                },\n                \"links\": {\n                    \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/col-def\",\n                    \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/col-def\"\n                }\n            },\n            \"row-def\": {\n                \"data\": {\n                    \"type\": \"row-defs\",\n                    \"id\": \"4\"\n                },\n                \"links\": {\n                    \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/row-def\",\n                    \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/row-def\"\n                }\n            },\n            \"papers\": {\n                \"data\": [\n                    {\n                        \"type\": \"papers\",\n                        \"id\": \"1059\"\n                    },\n                    {\n                        \"type\": \"papers\",\n                        \"id\": \"1208\"\n                    },\n                    {\n                        \"type\": \"papers\",\n                        \"id\": \"1565\"\n                    },\n                    {\n                        \"type\": \"papers\",\n                        \"id\": \"1798\"\n                    },\n                    {\n                        \"type\": \"papers\",\n                        \"id\": \"1896\"\n                    },\n                    {\n                        \"type\": \"papers\",\n                        \"id\": \"2014\"\n                    },\n                    {\n                        \"type\": \"papers\",\n                        \"id\": \"1513\"\n                    }\n                ],\n                \"links\": {\n                    \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/papers\",\n                    \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/papers\"\n                }\n            },\n            \"chairs\": {\n                \"data\": [\n                    {\n                        \"type\": \"chairs\",\n                        \"id\": \"1855\"\n                    },\n                    {\n                        \"type\": \"chairs\",\n                        \"id\": \"1846\"\n                    }\n                ],\n                \"links\": {\n                    \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2/relationships/chairs\",\n                    \"related\": \"http://api.epapers.org/conferences/apec2019/sessions/2/chairs\"\n                }\n            }\n        },\n        \"links\": {\n            \"self\": \"http://api.epapers.org/conferences/apec2019/sessions/2\"\n        }\n    },\n    \"included\": [\n        {\n            \"type\": \"authors\",\n            \"id\": \"278\",\n            \"attributes\": {\n                \"firstName\": \"Yang\",\n                \"lastName\": \"Jiao\",\n                \"affiliation\": \"Delta Electronics Ltd.\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/278/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/278/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/278/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/278/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10231\",\n            \"attributes\": {\n                \"firstName\": \"Zhiyu\",\n                \"lastName\": \"Shen\",\n                \"affiliation\": \"Delta Electronics Ltd.\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10231/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10231/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10231/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10231/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10230\",\n            \"attributes\": {\n                \"firstName\": \"Milan\",\n                \"lastName\": \"Jovanović\",\n                \"affiliation\": \"Delta Electronics Ltd.\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10230/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10230/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10230/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10230/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10229\",\n            \"attributes\": {\n                \"firstName\": \"Yang\",\n                \"lastName\": \"Jiao\",\n                \"affiliation\": \"Delta Electronics Ltd.\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10229/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10229/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10229/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10229/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"papers\",\n            \"id\": \"1059\",\n            \"attributes\": {\n                \"title\": \"Switching Performance Evaluation and Loss Analysis of SiC-Based Neutral Point Clamped Bidirectional AC/DC Converter\",\n                \"abstract\": \"This paper presents a comprehensive evaluation of the switching performance and loss breakdown of a 3-level Neutral Point Clamped (NPC) bidirectional AC/DC converter with SiC MOSFETs. The switching transient of SiC devices in different 3-level commutation loops is characterized and compared for design optimization. The loss analysis for the NPC converter at various operating modes is carried out, based on a detailed loss model for both power switch and filter inductor. Based on the evaluation, a 15-kW 3-level NPC bidirectional AC/DC converter is implemented with SiC devices to operate at various conditions for verification.\",\n                \"keywords\": \"3-level, Neutral Point Clamped, Silicon Carbide Device, Loss Analysis\"\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1059/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1059/track\"\n                    }\n                },\n                \"authors\": {\n                    \"data\": [\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"278\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10231\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10230\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10229\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1059/relationships/authors\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1059/authors\"\n                    }\n                },\n                \"session\": {\n                    \"data\": {\n                        \"type\": \"sessions\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1059/relationships/session\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1059/session\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"1064\",\n            \"attributes\": {\n                \"firstName\": \"Javad\",\n                \"lastName\": \"Khodabakhsh\",\n                \"affiliation\": \"Western University\",\n                \"country\": \"Canada\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/1064/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/1064/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/1064/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/1064/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"8390\",\n            \"attributes\": {\n                \"firstName\": \"Gerry\",\n                \"lastName\": \"Moschopoulos\",\n                \"affiliation\": \"Western University\",\n                \"country\": \"Canada\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8390/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8390/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8390/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8390/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"8389\",\n            \"attributes\": {\n                \"firstName\": \"Javad\",\n                \"lastName\": \"Khodabakhsh\",\n                \"affiliation\": \"Western University\",\n                \"country\": \"Canada\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8389/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8389/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8389/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8389/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"papers\",\n            \"id\": \"1208\",\n            \"attributes\": {\n                \"title\": \"A Fault Tolerant Three-Phase Isolated AC-DC Converter\",\n                \"abstract\": \"Three phase AC-DC isolated converters have become popular in industrial applications and there has been an increasing attention to the reliability of these converters. This digest introduces a new single-stage isolated AC-DC converter with fault- tolerant capability.  The proposed three-phase fault tolerant isolated AC-DC converter can be implemented with only six main switches and is simple to control. In this digest, the operation of the proposed converter is explained and its features are discussed. Experimental results of a prototype that confirm the feasibility of the converter are presented.\",\n                \"keywords\": \"Fault-tolerant, AC-DC, Isolation\"\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1208/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1208/track\"\n                    }\n                },\n                \"authors\": {\n                    \"data\": [\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"1064\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"8390\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"8389\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1208/relationships/authors\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1208/authors\"\n                    }\n                },\n                \"session\": {\n                    \"data\": {\n                        \"type\": \"sessions\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1208/relationships/session\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1208/session\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"3110\",\n            \"attributes\": {\n                \"firstName\": \"Jinyi\",\n                \"lastName\": \"Deng\",\n                \"affiliation\": \"Zhejiang University\",\n                \"country\": \"China\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/3110/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/3110/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/3110/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/3110/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"8532\",\n            \"attributes\": {\n                \"firstName\": \"Dehong\",\n                \"lastName\": \"Xu\",\n                \"affiliation\": \"Zhejiang University\",\n                \"country\": \"China\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8532/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8532/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8532/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8532/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"8531\",\n            \"attributes\": {\n                \"firstName\": \"An\",\n                \"lastName\": \"Zhao\",\n                \"affiliation\": \"Zhejiang University\",\n                \"country\": \"China\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8531/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8531/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8531/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8531/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"8530\",\n            \"attributes\": {\n                \"firstName\": \"Keyan\",\n                \"lastName\": \"Shi\",\n                \"affiliation\": \"Zhejiang University\",\n                \"country\": \"China\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8530/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8530/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8530/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8530/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"8529\",\n            \"attributes\": {\n                \"firstName\": \"Jinyi\",\n                \"lastName\": \"Deng\",\n                \"affiliation\": \"Zhejiang University\",\n                \"country\": \"China\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8529/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8529/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/8529/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/8529/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"papers\",\n            \"id\": \"1565\",\n            \"attributes\": {\n                \"title\": \"Universal Zero-Voltage-Switching Technique for Multi-Phase AC/DC Converter\",\n                \"abstract\": \"Universal zero-voltage-switching (ZVS) technique for multi-phase AC/DC converter is proposed. With the proposed technique, all switches of the multi-phase AC/DC converter can realize ZVS operation by using one auxiliary circuit. A ZVS-SPWM scheme for the multi-phase converter is introduced. The operation principle and the stage analysis are presented. Generic ZVS condition is derived according to the equivalent resonant circuits. Next, the design guideline of the resonant parameters is presented. Finally, a four-phase AC/DC converter called single-phase back-to-back (BTB) converter is investigated as an example and the prototype is set up to validate the proposed universal ZVS technique for the multi-phase converter.\",\n                \"keywords\": \"Multi-phase converter, Zero-voltage-switching\"\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1565/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1565/track\"\n                    }\n                },\n                \"authors\": {\n                    \"data\": [\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"3110\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"8532\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"8531\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"8530\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"8529\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1565/relationships/authors\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1565/authors\"\n                    }\n                },\n                \"session\": {\n                    \"data\": {\n                        \"type\": \"sessions\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1565/relationships/session\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1565/session\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"4932\",\n            \"attributes\": {\n                \"firstName\": \"Moonhyun\",\n                \"lastName\": \"Lee\",\n                \"affiliation\": \"Virginia Polytechnic Institute and State University\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/4932/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/4932/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/4932/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/4932/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"7623\",\n            \"attributes\": {\n                \"firstName\": \"Jih-Sheng Jason\",\n                \"lastName\": \"Lai\",\n                \"affiliation\": \"Virginia Polytechnic Institute and State University\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/7623/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/7623/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/7623/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/7623/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"7622\",\n            \"attributes\": {\n                \"firstName\": \"Jong-Woo\",\n                \"lastName\": \"Kim\",\n                \"affiliation\": \"Virginia Polytechnic Institute and State University\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/7622/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/7622/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/7622/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/7622/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"7621\",\n            \"attributes\": {\n                \"firstName\": \"Moonhyun\",\n                \"lastName\": \"Lee\",\n                \"affiliation\": \"Virginia Polytechnic Institute and State University\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/7621/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/7621/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/7621/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/7621/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"papers\",\n            \"id\": \"1798\",\n            \"attributes\": {\n                \"title\": \"Derivation of DCM/CCM Boundary and Ideal Duty-Ratio Feedforward for Three-Level Boost Rectifier\",\n                \"abstract\": \"This paper analyzes CCM/DCM operations of three-level boost (TLB) converter and derives ideal duty-ratios for feedforward control in power factor correction (PFC) applications. The analyses are conducted for two different TLB operation modes characterized by input voltage range. Since duty-ratio feedforward is a widely used technique to improve PFC transient responses and mitigate the burden of feedback control, accurate duty-ratio computations for all possible operation modes and conduction modes are necessary. By comparing the derived duty-ratios for CCM and DCM regions, current conduction modes of TLB can be detected in real-time and proper duty-ratio feedforward with minimum duty-ratio selection can be provided. The experimental results by a 500 W prototype of TLB PFC rectifier are provided in order to verify the effectiveness of the derivations and feedforward technique.\",\n                \"keywords\": \"three-level boost, PFC, CCM, DCM, ideal duty-ratio, feedforward\"\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1798/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1798/track\"\n                    }\n                },\n                \"authors\": {\n                    \"data\": [\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"4932\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"7623\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"7622\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"7621\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1798/relationships/authors\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1798/authors\"\n                    }\n                },\n                \"session\": {\n                    \"data\": {\n                        \"type\": \"sessions\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1798/relationships/session\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1798/session\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"5485\",\n            \"attributes\": {\n                \"firstName\": \"Mehdi\",\n                \"lastName\": \"Abbasi\",\n                \"affiliation\": \"York University\",\n                \"country\": \"Canada\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/5485/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/5485/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/5485/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/5485/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"5486\",\n            \"attributes\": {\n                \"firstName\": \"Mehdi\",\n                \"lastName\": \"Abbasi\",\n                \"affiliation\": \"York University\",\n                \"country\": \"Canada\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/5486/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/5486/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/5486/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/5486/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"5487\",\n            \"attributes\": {\n                \"firstName\": \"John\",\n                \"lastName\": \"Lam\",\n                \"affiliation\": \"York University\",\n                \"country\": \"Canada\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/5487/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/5487/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/5487/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/5487/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"papers\",\n            \"id\": \"1896\",\n            \"attributes\": {\n                \"title\": \"A Balanced, Unity Power Factor, 3-Phase Bridgeless AC/DC Step-Up Transformer-Less Converter with Magnetic-Coupled Soft-Switched Step-Up Rectifiers for Wind Farm with a MVDC Grid\",\n                \"abstract\": \"High voltage gain, high-power AC/DC converters are the key components in medium voltage DC (MVDC) grid for offshore wind power systems. This paper presents a novel soft-switched, bridgeless power factor correction (PFC) rectifier which is integrated with an isolated step-up CLL resonant converter to reduce the number of conversion stages.  Balanced output current and voltage sharing are achieved as an inherent characteristics of the proposed circuit.  Moreover, the proposed converter is able to step-up the voltage to MV level without using high-turns ratio high frequency transformer. Soft-switching operation is achieved for all the switches and diodes to enhance the circuit efficiency. Simulation results are given on a 1.8MW, 690Vac/44kVDC system to highlight the merits of the proposed converter.  Preliminary experimental results on a laboratory-scale 100Vac/1.6kV prototype are given to verify the proposed converter performance.\",\n                \"keywords\": \"Bridgeless AC/DC, Step-up Rectifier, Transformer-less, Magnetic-Coupled, Soft-Switched, MVDC, Wind\"\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1896/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1896/track\"\n                    }\n                },\n                \"authors\": {\n                    \"data\": [\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"5485\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"5486\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"5487\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1896/relationships/authors\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1896/authors\"\n                    }\n                },\n                \"session\": {\n                    \"data\": {\n                        \"type\": \"sessions\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1896/relationships/session\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1896/session\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10981\",\n            \"attributes\": {\n                \"firstName\": \"Robert\",\n                \"lastName\": \"Pilawa-Podgurski\",\n                \"affiliation\": \"University of California, Berkeley\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10981/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10981/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10981/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10981/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10980\",\n            \"attributes\": {\n                \"firstName\": \"Johan\",\n                \"lastName\": \"Strydom\",\n                \"affiliation\": \"Texas Instruments Inc.\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10980/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10980/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10980/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10980/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"6230\",\n            \"attributes\": {\n                \"firstName\": \"Enver\",\n                \"lastName\": \"Candan\",\n                \"affiliation\": \"University of Illinois at Urbana-Champaign\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/6230/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/6230/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/6230/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/6230/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10979\",\n            \"attributes\": {\n                \"firstName\": \"Rose A.\",\n                \"lastName\": \"Abramson\",\n                \"affiliation\": \"University of California, Berkeley\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10979/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10979/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10979/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10979/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10978\",\n            \"attributes\": {\n                \"firstName\": \"Nathan C.\",\n                \"lastName\": \"Brooks\",\n                \"affiliation\": \"University of California, Berkeley\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10978/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10978/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10978/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10978/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10977\",\n            \"attributes\": {\n                \"firstName\": \"Andrew\",\n                \"lastName\": \"Stillwell\",\n                \"affiliation\": \"University of Illinois at Urbana-Champaign\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10977/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10977/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10977/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10977/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"10976\",\n            \"attributes\": {\n                \"firstName\": \"Enver\",\n                \"lastName\": \"Candan\",\n                \"affiliation\": \"University of Illinois at Urbana-Champaign\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10976/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10976/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/10976/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/10976/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"papers\",\n            \"id\": \"2014\",\n            \"attributes\": {\n                \"title\": \"A 6-Level Flying Capacitor Multi-Level Converter for Single Phase Buck-Type Power Factor Correction\",\n                \"abstract\": \"This work proposes a 240 VRMS to 48V single-stage buck-type power factor correction (PFC) converter for a single-phase ac-dc conversion in data center applications. The recent developments in flying capacitor multi-level (FCML) converters using GaN transistors are leveraged to improve the power density and efficiency of the single-phase ac-dc buck-type PFC converter. The key contribution of this work is employing the buck-type FCML converter in a single-phase ac-dc conversion where the flying capacitor voltages are required to swing at 120Hz. Here, we experimentally demonstrate this concept by using a digitally controlled 6-level FCML converter.\",\n                \"keywords\": \"Flying capacitor multilevel converters, PFC, single-phase ac-dc\"\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/2014/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/2014/track\"\n                    }\n                },\n                \"authors\": {\n                    \"data\": [\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10981\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10980\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"6230\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10979\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10978\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10977\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"10976\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/2014/relationships/authors\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/2014/authors\"\n                    }\n                },\n                \"session\": {\n                    \"data\": {\n                        \"type\": \"sessions\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/2014/relationships/session\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/2014/session\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"2719\",\n            \"attributes\": {\n                \"firstName\": \"Siyuan\",\n                \"lastName\": \"Chen\",\n                \"affiliation\": \"North Carolina State University\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/2719/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/2719/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/2719/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/2719/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"9774\",\n            \"attributes\": {\n                \"firstName\": \"Wensong\",\n                \"lastName\": \"Yu\",\n                \"affiliation\": \"North Carolina State University\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/9774/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/9774/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/9774/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/9774/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"9773\",\n            \"attributes\": {\n                \"firstName\": \"Siyuan\",\n                \"lastName\": \"Chen\",\n                \"affiliation\": \"North Carolina State University\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/9773/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/9773/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/9773/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/9773/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"authors\",\n            \"id\": \"9775\",\n            \"attributes\": {\n                \"firstName\": \"Dennis\",\n                \"lastName\": \"Meyer\",\n                \"affiliation\": \"Microsemi\",\n                \"country\": \"United States\"\n            },\n            \"relationships\": {\n                \"papers\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/9775/relationships/papers\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/9775/papers\"\n                    }\n                },\n                \"sessions\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/authors/9775/relationships/sessions\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/authors/9775/sessions\"\n                    }\n                }\n            }\n        },\n        {\n            \"type\": \"papers\",\n            \"id\": \"1513\",\n            \"attributes\": {\n                \"title\": \"Design and Implementation of Forced Air-Cooled, 140kHz, 20kW SiC MOSFET Based Vienna PFC\",\n                \"abstract\": \"In this paper, a forced air-cooled, 140kHz, 20kW SiC MOSFET based Vienna power factor rectifier (PFC) is presented. Compared with Si device, the wide bandgap (WBG) semiconductor device allows to increase the switching frequency and reduce the EMI filter volume. The modulation scheme of T-type converter is implemented in Vienna PFC to reduce the switching loss and improve efficiency to 98.5\\\\%. Power semiconductor device losses are calculated for thermal design. The new phase-change thermal material and AlN thermal interface are used to decrease the thermal impedance. For EMI design, a feedback damping resistor is added to common-mode loop to improve the phase margin and stability. Experimental results verify the design concepts and high efficiency.\",\n                \"keywords\": \"Vienna Rectifier, Thermal design, EMI filter, Modulation\"\n            },\n            \"relationships\": {\n                \"track\": {\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1513/relationships/track\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1513/track\"\n                    }\n                },\n                \"authors\": {\n                    \"data\": [\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"2719\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"9774\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"9773\"\n                        },\n                        {\n                            \"type\": \"authors\",\n                            \"id\": \"9775\"\n                        }\n                    ],\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1513/relationships/authors\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1513/authors\"\n                    }\n                },\n                \"session\": {\n                    \"data\": {\n                        \"type\": \"sessions\",\n                        \"id\": \"2\"\n                    },\n                    \"links\": {\n                        \"self\": \"http://api.epapers.org/conferences/apec2019/papers/1513/relationships/session\",\n                        \"related\": \"http://api.epapers.org/conferences/apec2019/papers/1513/session\"\n                    }\n                }\n            }\n        }\n    ]\n}\n```"},"response":[],"_postman_id":"4992f5a2-761a-4d08-891b-793db4e336bf"}],"id":"2d81fded-05b4-46c5-8595-f64eaaaa5f8f","_postman_id":"2d81fded-05b4-46c5-8595-f64eaaaa5f8f"},{"name":"Errors","item":[{"name":"Errors","id":"ab8bf239-6a5c-4411-bd9b-3ff8c387338b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"{{BASE_URL}}/sessions/2?include=papers,papers.author","host":["{{BASE_URL}}"],"path":["sessions","2"],"query":[{"key":"include","value":"papers,papers.author"}]},"description":"Any API errors that occur will return an array of errors that contain the status and title for each error. They may also include otptional detail and source attributes with additional informaiton about the error(s). \n\n```json\n{\n    \"errors\": [\n        {\n            \"status\": \"400\",\n            \"title\": \"Invalid Query Parameter\",\n            \"detail\": \"Include path papers.author is not allowed.\",\n            \"source\": {\n                \"parameter\": \"include\"\n            }\n        }\n    ]\n}\n```"},"response":[],"_postman_id":"ab8bf239-6a5c-4411-bd9b-3ff8c387338b"}],"id":"7c5f8145-140a-4694-aa49-7dc6e8579b61","event":[{"listen":"prerequest","script":{"id":"75dae96e-d05b-4431-b691-6cae109302e1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"327dec01-7441-4ae0-820b-835873e62fcc","type":"text/javascript","exec":[""]}}],"_postman_id":"7c5f8145-140a-4694-aa49-7dc6e8579b61"},{"name":"Getting Help","item":[],"id":"94235a30-50ce-4d62-b259-9ef9365fabef","description":"For suggestions, comments, concerns, or help with the ePapers API, please email [api.epapers.org](mailto:api.epapers.org).","event":[{"listen":"prerequest","script":{"id":"6af9bc8c-bb80-4e65-be20-0005b49cfc91","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b6856373-cfde-4c02-80bb-96029b3a0a10","type":"text/javascript","exec":[""]}}],"_postman_id":"94235a30-50ce-4d62-b259-9ef9365fabef"}],"event":[{"listen":"prerequest","script":{"id":"799ba6b0-da31-47a8-9c27-28c823ff1d3f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7c9e15a3-6c53-409a-90f6-4268d52b8269","type":"text/javascript","exec":[""]}}],"variable":[{"key":"CONFERENCE_IDENTIFIER","value":"apec2019"},{"key":"BASE_URL","value":"api.epapers.org/conferences/{{CONFERENCE_IDENTIFIER}}"}]}