Global data: here are the required fields

jancmd("setConfig", {
    metadata: {
        advertizer: "...",
        brand: "...",
        language: "...",
        pageType: "...",
        siteName: "...",
    }
});

Events data, please fill these fields when you send the event

jancmd("sendEvent", "pageview", {
});
jancmd("sendEvent", "click", {
    eventAction: "...",
    eventCategory: "...",
    eventLabel: "...",
});
jancmd("sendEvent", "custom", {
    eventLabel: "...",
    eventCategory: "...",
    eventAction: "...",
});
