Case Study: Building Polymer Applications, Part 3
## project-list The `project-list` element is the meat of the application and uses some interesting techniques I've learned from working on creating Polymer elements. This is an example of the JSON model used on their element. It has been redacted for length. ```javascript { "description": "The VR/AR web seems to be the latest buzz word in the web community.", "name": "Moving 2D content to a 3D world", "notes": "", "stage": "Idea", "type": "Code", "url": { "code": "", "other": "", "writeup": "" } } ``` Knowing the structure of the JSON data will help make sense of the data bindings I used below: ```markup