- June 17, 2025
Make Music Day at SJC
June 17, 2025

On June 21, the sounds of summer will fill the terminals at San José Mineta International Airport (SJC) as we join the global celebration of Make Music Day! This all-day event is part of the Make Music San José program – a citywide, community-curated festival held on the summer solstice that brings music to parks, plazas, libraries, restaurants and SJC.
Passengers traveling through both Terminal A and Terminal B will have the unique opportunity to enjoy live performances by local artists spanning diverse genres and styles – from acoustic sets to DJs, solo performers to ensembles. Whether you're just arriving or about to take off, the music will follow you along your journey.
Make Music Day is celebrated in more than 1,000 cities worldwide, uniting people through the shared joy of live music – performed by everyone from professionals to passionate amateurs. SJC is proud to be a part of this inspiring global movement once again.
Terminal A Schedule and Performers:
- Sharat Lin – 11 a.m. - 11:45 a.m.
- Son Patricio – 12p.m. - 1p.m.
- Margie Muzik – 1 p.m. - 2 p.m.
- Domino – 3:15 p.m. - 4 p.m.
- DJ Flava Tone – 4 p.m. – 5 p.m.
Terminal B Schedule and Performers:
- Shayla the Artist – 11 a.m. - 12 p.m.
- Nasario Gutierrez – 12:15 p.m. - 2 p.m.
- MiFaSol Band – 2 p.m. - 3 p.m.
- The Eternity Band – 3:15 p.m. - 4:45 p.m.
Make Music San José is facilitated by the City of San José Office of Cultural Affairs and made possible through the enthusiasm and talent of our vibrant local music community.
document.addEventListener('DOMContentLoaded', function () { const acceptButton = document.querySelector('.cm-btn-success')[0]; const declineButton = document.querySelector('.cm-btn-danger')[0]; acceptButton.addEventListener('click', function () { // Handle accept action loadChatbot(); // Load chatbot immediately on accept }); declineButton.addEventListener('click', function () { loadChatbot(); // Load chatbot immediately on decline }); function loadChatbot() { (function (d, m) { var defaultSettings = { "defaultBotIds": ["sjc-oj2ht"], "defaultAssignee": "sjc-oj2ht", "skipRouting": true, }; var kommunicateSettings = { "appId": "115795fb883b8512e78ed54540345f318", "popupWidget": true, "automaticChatOpenOnNavigation": true, "talkToHuman": true, "primaryCTA": "TALK_TO_HUMAN", "onInit": function () { /* Hide Kommunicate branding */ var css = ".mck-running-on {display:none !important;}"; Kommunicate.customizeWidgetCss(css); // Disable input - before widget loads document.addEventListener("DOMContentLoaded", function () { const attempt = setInterval(() => { const iframeDoc = window.KommunicateGlobal?.document; if (!iframeDoc) return; const box = iframeDoc.querySelector(".mck-box-form.mck-row"); if (box) { box.style.pointerEvents = "none"; box.style.opacity = "0.5"; clearInterval(attempt); // stop polling } }, 50); }); // Main logic - Run after widget loaded setTimeout(() => { const kmDoc = window.KommunicateGlobal?.document; if (!kmDoc) return; let consentGiven = false; function disableInput() { const box = kmDoc.querySelector(".mck-box-form.mck-row"); if (box) { box.style.pointerEvents = "none"; box.style.opacity = "0.5"; } } function enableInput() { const box = kmDoc.querySelector(".mck-box-form.mck-row"); if (box) { box.style.pointerEvents = "auto"; box.style.opacity = "1"; } } /* Disable input again (persistent) */ disableInput(); /* Detect clicking the “I Agree” button */ Kommunicate.subscribeToEvents({ onRichMessageButtonClick: function (resp) { if (resp.eventLabel === "I Agree") { consentGiven = true; } } }); /* Keep enforcing the rule even after re-renders */ const observer = new MutationObserver(() => { if (consentGiven) enableInput(); else disableInput(); }); const target = kmDoc.querySelector("#mck-sidebox-content") || kmDoc.body; observer.observe(target, { childList: true, subtree: true }); }, 1200); // widget render delay Kommunicate.updateSettings(defaultSettings); } }; /* Default Kommunicate loader */ kommunicateSettings.restartConversationByUser = true; var s = document.createElement("script"); s.type = "text/javascript"; s.async = true; s.src = "https://widget.kommunicate.io/v2/kommunicate.app"; var h = document.getElementsByTagName("head")[0]; h.appendChild(s); window.kommunicate = m; m._globals = kommunicateSettings; })(document, window.kommunicate || {}); } });