//Return country names and urls in response.body
resultType: coda.ValueType.String,
execute: async function ([], context) {
let url = "https://travelbriefing.org/countries.json";
let response = await context.fetcher.fetch({ method: 'GET', url });
return response.body;
}
});