Jquary + Json - Como exibir o json ao modificar de um campo?

galera, estou tentando exibir os dados que vem de um json ao modificar de uma data porém o resultado n é exibido de jeito nenhum ao modificar da data, apenas ao carregar o formulário.
vou deixar o código abaixo…

´
$(’#flagAnoMes’).on(‘change’, function() {

$(’#calendar’).fullCalendar({

events: [
{
id : “109”,
title : “N° Nota:5545455”,
start : “2019-11-30 00:00:00”,
end : “2019-11-30 00:00:00”,
allday : “false”,
color : “#337ab7”},
{
id : “109”,
title : “N° Nota:5545455”,
start : “2019-11-30 00:00:00”,
end : “2019-11-30 00:00:00”,
allday : “false”,
color : “#337ab7”},
{
id : “110”,
title : “N° Nota:566699”,
start : “2019-11-14 00:00:00”,
end : “2019-11-14 00:00:00”,
allday : “false”,
color : “#337ab7”},
{
id : “97”,
title : “N° Nota:535555”,
start : “2019-11-30 00:00:00”,
end : “2019-11-30 00:00:00”,
allday : “false”,
color : “#e74c3c”},
{
id : “107”,
title : “N° Nota:2222”,
start : “2019-11-30 00:00:00”,
end : “2019-11-30 00:00:00”,
allday : “false”,
color : “#e74c3c”},
{
id : “94”,
title : “N° Nota:555555”,
start : “2019-11-06 00:00:00”,
end : “2019-11-06 00:00:00”,
allday : “false”,
color : “#337ab7”},
{
id : “94”,
title : “N° Nota:555555”,
start : “2019-11-29 00:00:00”,
end : “2019-11-29 00:00:00”,
allday : “false”,
color : “#337ab7”},],

eventClick: function(event) {

var person  = $(this).attr('id');

$("#codigo").val(person);
                                             $("#codigo").focus();

}

});

});