I'm trying to use JSON for the first time with minimal experience on jquery.
I have this JSON:
{
"stoelen":
[
    {"type": "stoel", "title": "Stoel1", "image": "/images/stoelen/1.png", "description": "Hier komt de beschrijving van de eerste foto", "secondaryimage": "/images/grid/7.png"},
    {"type": "stoel", "title": "Stoel2", "image": "/images/stoelen/2.png", "description": "Hier komt de beschrijving van de tweede foto", "secondaryimage": "/images/grid/6.png"},
    {"type": "hogestoel", "title": "Hogestoel1", "image": "/images/stoelen/1.png", "description": "Hier komt de beschrijving van de eerste foto", "secondaryimage": "/images/grid/7.png"},
    {"type": "hogestoel", "title": "Hogestoel2", "image": "/images/stoelen/2.png", "description": "Hier komt de beschrijving van de tweede foto", "secondaryimage": "/images/grid/6.png"}
]}
And i'm working on this jquery script (work in "progress"):
$(document).ready(function() {
$("#collectiestoelen li").on("click", function(){
    var stoel_id = $(this).data("id");
    $.getJSON("collectie.json",function(data){
    });
});
});
Now what i'm trying to do is when you click on a list item in a unordened list, the website loads the corresponding data from the JSON and inserts it into the html like this:
    <img class="detailimage" src="image url here">
    <div>
        <h4>title here</h4>
        <p>description here</p>
    </div>
    <img class="secondaryimage" src="secondary img url here">
Also, i'm intending on using this on 3 different pages: chairs, bigger chairs and tables.
How exactly do i do this and what's the best way to store this in JSON (--> use 3 different json files? or can you store different arrays in one JSON?) I know this is a beginner question but i've searched high and low to no avail. What i've got so far is from tutorials and a friend who tried to help me (but he didn't have much time and i didn't understand a lot of it).
Please feel free to ask any aditional info and thanks in advance!