diff --git a/src/actions/company-actions.js b/src/actions/company-actions.js
index 499411c34..76943e806 100644
--- a/src/actions/company-actions.js
+++ b/src/actions/company-actions.js
@@ -27,6 +27,7 @@ import {
fetchResponseHandler,
fetchErrorHandler
} from "openstack-uicore-foundation/lib/utils/actions";
+import * as _ from "lodash";
import history from "../history";
import { getAccessTokenSafely } from "../utils/methods";
import {
diff --git a/src/actions/sponsor-actions.js b/src/actions/sponsor-actions.js
index c48e8a77f..3f4014eb9 100644
--- a/src/actions/sponsor-actions.js
+++ b/src/actions/sponsor-actions.js
@@ -29,7 +29,7 @@ import {
fetchErrorHandler,
postFile
} from "openstack-uicore-foundation/lib/utils/actions";
-import _ from "lodash";
+import * as _ from "lodash";
import { getAccessTokenSafely } from "../utils/methods";
import { normalizeLeadReportSettings } from "../models/lead-report-settings";
import history from "../history";
diff --git a/src/actions/sponsorship-actions.js b/src/actions/sponsorship-actions.js
index 456ea92c4..1fff342a2 100644
--- a/src/actions/sponsorship-actions.js
+++ b/src/actions/sponsorship-actions.js
@@ -12,6 +12,7 @@
* */
import T from "i18n-react/dist/i18n-react";
+import * as _ from "lodash";
import {
getRequest,
putRequest,
diff --git a/src/pages/sponsors/sponsor-users-list-page/components/__tests__/process-request-popup.test.js b/src/pages/sponsors/sponsor-users-list-page/components/__tests__/process-request-popup.test.js
new file mode 100644
index 000000000..12d3527fe
--- /dev/null
+++ b/src/pages/sponsors/sponsor-users-list-page/components/__tests__/process-request-popup.test.js
@@ -0,0 +1,124 @@
+import React from "react";
+import { act, screen } from "@testing-library/react";
+import userEvent from "@testing-library/user-event";
+import { renderWithRedux } from "../../../../../utils/test-utils";
+import ProcessRequestPopup from "../process-request-popup";
+import * as sponsorUsersActions from "../../../../../actions/sponsor-users-actions";
+import summitsMock from "./summits.mock.json";
+import userGroupsMock from "./userGroups.mock.json";
+
+// Mock the actions to return plain objects (not async functions)
+jest.mock("../../../../../actions/sponsor-users-actions", () => {
+ const originalModule = jest.requireActual(
+ "../../../../../actions/sponsor-users-actions"
+ );
+
+ return {
+ __esModule: true,
+ ...originalModule,
+ processSponsorUserRequest: jest.fn(() => ({
+ type: "processSponsorUserRequest",
+ payload: {}
+ })),
+ updateShowSponsorUser: jest.fn(() => ({
+ type: "processSponsorUserRequest",
+ payload: {}
+ })),
+ fetchSponsorByCompany: jest.fn(() =>
+ Promise.resolve({
+ id: 29,
+ name: "Accelink Technologies"
+ })
+ ),
+ getUserGroups: jest.fn(() => ({
+ type: "XXX",
+ payload: {}
+ }))
+ };
+});
+
+jest.mock("../../../../../actions/company-actions", () => {
+ const originalModule = jest.requireActual(
+ "../../../../../actions/company-actions"
+ );
+
+ return {
+ __esModule: true,
+ ...originalModule,
+ queryCompanies: jest.fn()
+ };
+});
+
+jest.mock("../../../../../actions/sponsor-actions", () => {
+ const originalModule = jest.requireActual(
+ "../../../../../actions/sponsor-actions"
+ );
+
+ return {
+ __esModule: true,
+ ...originalModule,
+ querySponsors: jest.fn()
+ };
+});
+
+jest.mock("../../../../../actions/sponsorship-actions", () => {
+ const originalModule = jest.requireActual(
+ "../../../../../actions/sponsorship-actions"
+ );
+
+ return {
+ __esModule: true,
+ ...originalModule,
+ querySponsorshipsBySummit: jest.fn()
+ };
+});
+
+jest.mock("lodash", () => {
+ const originalModule = jest.requireActual("lodash");
+
+ return {
+ __esModule: true,
+ ...originalModule,
+ debounce: jest.fn()
+ };
+});
+
+describe("ProcessRequestPopup", () => {
+ beforeEach(() => {
+ jest.clearAllMocks();
+ global.fetch.mockClear();
+ });
+
+ it("closes modal on process request click", async () => {
+ const onCloseMock = jest.fn();
+
+ const requestMock = {
+ id: 29,
+ requester_first_name: "cespin101 Espinoza",
+ requester_email: "cespin+101@gmail.com",
+ company_id: 179,
+ company_name: "Accelink Technologies",
+ created: "December 29th 2025, 1:27:29 am"
+ };
+
+ renderWithRedux(
+
The San Jose McEnery Convention Center sits in the center of Downtown and boasts hundreds of varied events a year. It has been the home for the OCP Global Summit for over 8 years! The 550,000-square-foot facility is the largest convention center in Silicon Valley. It is named after Tom McEnery, a former Mayor of San Jose. The interactive public art installation \"Idea Tree\" stands at the front of the Center.
\nSan Jose is the first convention center in Northern California to receive the cleaning industry’s only outbreak prevention, response and recovery accreditation. Global Biorisk Advisory Council (GBAC) STAR establishes protocols and procedures, offers expert-led training and assesses a facility’s preparedness for biorisk situations. Every venue that receives the accreditation is vetted by GBAC as meeting all requirements for a safe, preventative, and responsive meetings facility.
", + "location_type": "Internal", + "order": 1, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenue", + "address_1": "150 W San Carlos Street", + "address_2": "", + "zip_code": "95113", + "city": "San Jose", + "state": "CA", + "country": "US", + "lng": "-121.8852525", + "lat": "37.33874", + "website_url": "https://www.sanjose.org/conventioncenter", + "display_on_site": false, + "details_page": false, + "location_message": "", + "is_main": true, + "rooms": [ + { + "id": 733, + "created": 1683216484, + "last_edited": 1683216484, + "name": "The HUB", + "short_name": null, + "description": "The HUB
", + "location_type": "Internal", + "order": 2, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 108, + "capacity": 250, + "override_blackouts": false, + "published_events": [6689, 6691, 6692] + }, + { + "id": 734, + "created": 1683216510, + "last_edited": 1683216510, + "name": "Grand Ballroom 220", + "short_name": null, + "description": "Grand Ballroom 220
", + "location_type": "Internal", + "order": 3, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 3000, + "override_blackouts": false, + "published_events": [7784] + }, + { + "id": 735, + "created": 1683216530, + "last_edited": 1683216530, + "name": "Hall 1", + "short_name": null, + "description": "Hall 1
", + "location_type": "Internal", + "order": 4, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 1000, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 736, + "created": 1683216549, + "last_edited": 1683216549, + "name": "Hall 2", + "short_name": null, + "description": "Hall 2
", + "location_type": "Internal", + "order": 5, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 1000, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 737, + "created": 1683216578, + "last_edited": 1748453956, + "name": "Hall 1, 2, & 3", + "short_name": "", + "description": "Hall 1, 2, & 3
", + "location_type": "Internal", + "order": 6, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 8750, + "override_blackouts": false, + "published_events": [6694, 6749, 6754, 6755, 6759, 6782, 7704] + }, + { + "id": 738, + "created": 1683216597, + "last_edited": 1747079673, + "name": "210ABEF", + "short_name": "", + "description": "210ABEF
", + "location_type": "Internal", + "order": 7, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 575, + "override_blackouts": false, + "published_events": [ + 6713, 6715, 6830, 6832, 6841, 6847, 6848, 6897, 6906, 6929, 6967, + 6988, 7034, 7036, 7050, 7051, 7062, 7065, 7078, 7137, 7181, 7196, + 7262, 7303, 7317, 7320, 7330, 7341, 7381, 7383, 7384, 7390, 7408, + 7410, 7423, 7433, 7435, 7444, 7463, 7471, 7483, 7501, 7517, 7525, + 7536, 7549, 7567, 7703, 7705, 7706 + ] + }, + { + "id": 740, + "created": 1683216637, + "last_edited": 1747079716, + "name": "210CDGH", + "short_name": "", + "description": "210CDGH
", + "location_type": "Internal", + "order": 9, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 575, + "override_blackouts": false, + "published_events": [ + 6735, 6813, 6823, 6855, 6858, 6886, 6893, 6914, 6934, 6973, 6975, + 6984, 7011, 7012, 7017, 7072, 7074, 7076, 7090, 7106, 7111, 7174, + 7183, 7199, 7229, 7329, 7352, 7363, 7421, 7460, 7477, 7489, 7505, + 7523, 7595, 7634, 7656, 7677, 7679, 7691, 7693, 7698, 7699, 7741, + 7745 + ] + }, + { + "id": 742, + "created": 1683216687, + "last_edited": 1753129295, + "name": "LL20A - DO NOT USE!", + "short_name": "", + "description": "LL20A
", + "location_type": "Internal", + "order": 11, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 107, + "capacity": 200, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 743, + "created": 1683216710, + "last_edited": 1683216710, + "name": "LL20BC", + "short_name": null, + "description": "LL20BC
", + "location_type": "Internal", + "order": 12, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 107, + "capacity": 300, + "override_blackouts": false, + "published_events": [ + 6721, 6783, 6816, 6871, 6881, 6898, 6901, 6904, 6905, 6923, 7125, + 7154, 7171, 7172, 7175, 7203, 7207, 7217, 7237, 7247, 7250, 7275, + 7315, 7348, 7358, 7379, 7412, 7416, 7454, 7470, 7522, 7554, 7568, + 7573, 7716, 7717, 7718, 7719, 7720, 7721, 7766, 7767, 7768, 7769, + 7770, 7771, 7772, 7777, 7778, 7780, 7813, 7814, 7815, 7816, 7817, + 7818, 7819, 7820, 7827 + ] + }, + { + "id": 744, + "created": 1683216727, + "last_edited": 1683216727, + "name": "LL20D", + "short_name": null, + "description": "LL20D
", + "location_type": "Internal", + "order": 13, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 107, + "capacity": 200, + "override_blackouts": false, + "published_events": [ + 6784, 6828, 6931, 6941, 6957, 6968, 6969, 6971, 6978, 6987, 7042, + 7116, 7133, 7187, 7219, 7223, 7228, 7259, 7342, 7350, 7394, 7450, + 7466, 7497, 7498, 7502, 7563, 7654, 7826, 7828, 7829, 7830, 7831, + 7832, 7833, 7834, 7835, 7836, 7837, 7838 + ] + }, + { + "id": 745, + "created": 1683216747, + "last_edited": 1683216747, + "name": "Concourse Lobby", + "short_name": null, + "description": "Concourse Lobby
", + "location_type": "Internal", + "order": 14, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 3000, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 746, + "created": 1683216762, + "last_edited": 1683216762, + "name": "220B", + "short_name": null, + "description": "220B
", + "location_type": "Internal", + "order": 15, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 300, + "override_blackouts": false, + "published_events": [ + 6780, 6801, 6811, 6812, 6842, 6860, 6945, 7013, 7025, 7057, 7061, + 7064, 7081, 7101, 7153, 7205, 7236, 7253, 7277, 7331, 7333, 7337, + 7344, 7349, 7360, 7365, 7424, 7429, 7552, 7625, 7640, 7644, 7649, + 7658, 7665, 7708, 7709, 7710, 7740, 7773, 7781, 7791, 7821, 7823, + 7847 + ] + }, + { + "id": 747, + "created": 1683216784, + "last_edited": 1683216784, + "name": "220C", + "short_name": null, + "description": "220C
", + "location_type": "Internal", + "order": 16, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 300, + "override_blackouts": false, + "published_events": [ + 6716, 6719, 6722, 6727, 6738, 6794, 6796, 6804, 6807, 6808, 6932, + 6936, 6974, 6983, 6998, 7048, 7049, 7069, 7086, 7113, 7127, 7134, + 7161, 7180, 7245, 7276, 7293, 7299, 7374, 7406, 7431, 7441, 7478, + 7700, 7701, 7702, 7707, 7715, 7803, 7822, 7825, 7848 + ] + }, + { + "id": 748, + "created": 1683216829, + "last_edited": 1683216829, + "name": "Main Entrance Plaza", + "short_name": null, + "description": "Main Entrance Plaza
", + "location_type": "Internal", + "order": 17, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 108, + "capacity": 2000, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 750, + "created": 1695154632, + "last_edited": 1695154632, + "name": "Lower Level Lobby", + "short_name": null, + "description": "Lower Level Lobby
", + "location_type": "Internal", + "order": 19, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 107, + "capacity": 300, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 751, + "created": 1696435338, + "last_edited": 1729023532, + "name": "Expo Hall Theater", + "short_name": "", + "description": "Expo Hall Theater
", + "location_type": "Internal", + "order": 20, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 80, + "override_blackouts": false, + "published_events": [ + 6778, 6825, 7588, 7590, 7592, 7593, 7596, 7598, 7599, 7601, 7603, + 7606, 7611, 7613, 7615, 7616, 7619, 7621, 7622, 7624, 7628, 7630, + 7631, 7632, 7633, 7636, 7638, 7639, 7641, 7642, 7643, 7645, 7646, + 7647, 7648, 7652, 7653, 7659, 7661, 7663, 7667, 7669, 7672, 7674, + 7675, 7676, 7678, 7681, 7683, 7685, 7689, 7694, 7695, 7747, 7748, + 7749, 7750, 7751, 7752, 7755, 7756, 7758, 7759, 7760, 7761, 7762 + ] + }, + { + "id": 752, + "created": 1722277916, + "last_edited": 1753129227, + "name": "LL21B", + "short_name": "", + "description": "Lower level 21B
", + "location_type": "Internal", + "order": 22, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 107, + "capacity": 100, + "override_blackouts": false, + "published_events": [ + 6799, 6875, 6992, 7204, 7290, 7312, 7361, 7425, 7437, 7511, 7792, + 7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7804, + 7805, 7806, 7807, 7808, 7809, 7810, 7811 + ] + }, + { + "id": 753, + "created": 1726603323, + "last_edited": 1726603335, + "name": "Private CLA Room", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 23, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 0, + "capacity": 0, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 754, + "created": 1726607216, + "last_edited": 1748453762, + "name": "230A", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 24, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 330, + "override_blackouts": false, + "published_events": [ + 6800, 6849, 6872, 6888, 6924, 6993, 7015, 7047, 7083, 7104, 7169, + 7322, 7326, 7338, 7364, 7366, 7372, 7387, 7419, 7430, 7442, 7447, + 7586, 7597, 7623, 7651, 7712, 7713, 7742, 7743, 7744, 7746, 7782, + 7785, 7786, 7787, 7788, 7789, 7790, 7812 + ] + }, + { + "id": 755, + "created": 1727193892, + "last_edited": 1727193892, + "name": "220A", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 25, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 200, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 756, + "created": 1727193920, + "last_edited": 1727193920, + "name": "111", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 26, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 108, + "capacity": 30, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 757, + "created": 1727193946, + "last_edited": 1727193946, + "name": "114", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 27, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 108, + "capacity": 30, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 758, + "created": 1728564804, + "last_edited": 1728567224, + "name": "West Lobby", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 28, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 500, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 761, + "created": 1695311039, + "last_edited": 1759255282, + "name": "Speaker Ready Room - LL21A Session 1 (demos)", + "short_name": "", + "description": "This room is specifically for presenters who will be doing a demonstration using their own computer.
", + "location_type": "Internal", + "order": 21, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 1, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "published_events": [], + "image": { + "id": 7078, + "created": 1758128825, + "last_edited": 1758128825, + "title": "SJCC LL21A Speaker Ready Room", + "name": "SJCC-LL21A-Speaker-Ready-Room.png", + "url": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summits/69/locations/731/rooms/SJCC-LL21A-Speaker-Ready-Room.png" + }, + "attributes": [] + }, + { + "id": 762, + "created": 1747079607, + "last_edited": 1747079607, + "name": "Hall 3", + "short_name": null, + "description": "Hall 3
", + "location_type": "Internal", + "order": 32, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 1000, + "override_blackouts": false, + "published_events": [6752, 6760, 6764] + }, + { + "id": 763, + "created": 1747079903, + "last_edited": 1753129156, + "name": "211", + "short_name": "", + "description": "211ABCD
", + "location_type": "Internal", + "order": 33, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 350, + "override_blackouts": false, + "published_events": [ + 6723, 6818, 6821, 6824, 6837, 6862, 6866, 6867, 6876, 6877, 6902, + 6915, 6917, 6938, 7016, 7052, 7085, 7087, 7119, 7140, 7147, 7220, + 7255, 7345, 7367, 7402, 7415, 7443, 7445, 7456, 7464, 7479, 7499, + 7503, 7547, 7587, 7589, 7614, 7637, 7660, 7666, 7690 + ] + }, + { + "id": 764, + "created": 1747079923, + "last_edited": 1753129171, + "name": "212", + "short_name": "", + "description": "212ABCD
", + "location_type": "Internal", + "order": 34, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 350, + "override_blackouts": false, + "published_events": [ + 6714, 6718, 6789, 6822, 6831, 6878, 6921, 6947, 7002, 7004, 7014, + 7022, 7026, 7033, 7039, 7094, 7109, 7129, 7155, 7163, 7190, 7225, + 7240, 7246, 7249, 7300, 7305, 7313, 7351, 7396, 7434, 7446, 7521, + 7532, 7537, 7600, 7612, 7620, 7650, 7664, 7682, 7684, 7783 + ] + }, + { + "id": 767, + "created": 1748452376, + "last_edited": 1748452376, + "name": "The HUB & Main Entrance Plaza", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 37, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 108, + "capacity": 0, + "override_blackouts": false, + "published_events": [6763] + }, + { + "id": 768, + "created": 1748452484, + "last_edited": 1748564929, + "name": "210AE, 210CG, 211, 212, 230A", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 38, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 0, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 769, + "created": 1748452839, + "last_edited": 1748452839, + "name": "Lower Level Rooms", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 39, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "floor_id": 107, + "capacity": 0, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "published_events": [], + "attributes": [] + }, + { + "id": 773, + "created": 1748631730, + "last_edited": 1748631730, + "name": "Concourse & Lower Levels", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 42, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 0, + "capacity": 0, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 774, + "created": 1753116519, + "last_edited": 1753116519, + "name": "LL21C", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 43, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 107, + "capacity": 170, + "override_blackouts": false, + "published_events": [6856, 7296, 7739, 7775, 7849] + }, + { + "id": 778, + "created": 1755704853, + "last_edited": 1755715086, + "name": "South Hall", + "short_name": "", + "description": "Tent in parking lot, south of main Convention Center Building.
", + "location_type": "Internal", + "order": 45, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 115, + "capacity": 9000, + "override_blackouts": false, + "published_events": [ + 6693, 6695, 6696, 6697, 6698, 6747, 7722, 7723, 7724, 7725, 7726, + 7727, 7728, 7729, 7730, 7731, 7732, 7733, 7734, 7735, 7736, 7737, + 7738, 7824 + ] + }, + { + "id": 779, + "created": 1759163380, + "last_edited": 1761333362, + "name": "Speaker Ready Room - LL21A Session 2", + "short_name": "", + "description": "This room is intended for those uploading a new deck.
", + "location_type": "Internal", + "order": 46, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 1, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "published_events": [], + "image": { + "id": 7145, + "created": 1759163381, + "last_edited": 1759163381, + "title": "SJCC LL21A Speaker Ready Room1", + "name": "SJCC-LL21A-Speaker-Ready-Room1.png", + "url": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summits/69/locations/731/rooms/SJCC-LL21A-Speaker-Ready-Room1.png" + }, + "attributes": [ + { + "id": 7, + "created": 1747079545, + "last_edited": 1747079545, + "value": "Monitor, podium and technician", + "type_id": 6 + } + ] + }, + { + "id": 780, + "created": 1759163432, + "last_edited": 1759166225, + "name": "Speaker Ready Room - LL21A Session 3", + "short_name": "", + "description": "This room is intended for those uploading a new deck.
", + "location_type": "Internal", + "order": 47, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "floor_id": 109, + "capacity": 1, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "published_events": [], + "image": { + "id": 7146, + "created": 1759163433, + "last_edited": 1759163433, + "title": "SJCC LL21A Speaker Ready Room2", + "name": "SJCC-LL21A-Speaker-Ready-Room2.png", + "url": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summits/69/locations/731/rooms/SJCC-LL21A-Speaker-Ready-Room2.png" + }, + "attributes": [] + } + ], + "published_events": [], + "floors": [107, 108, 109, 114, 115] + }, + { + "id": 732, + "created": 1683216886, + "last_edited": 1683216886, + "name": "San Jose Marriott", + "short_name": "San Jose Marriott", + "description": "Find relaxation at our stylish hotel in San Jose. Designed for today's discerning traveler, San Jose Marriott is a stylish hotel retreat in a dynamic downtown location. Find your respite in newly renovated hotel accommodations with expansive layouts, plush bedding, ergonomic workstations and views of the San Jose skyline and mountains. Savor distinctive cuisine at our upscale restaurant and innovative cocktails at our chic bar and lounge. Walk to events and trade shows at the San Jose Convention Center, directly connected to our hotel.
", + "location_type": "Internal", + "order": 29, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenue", + "address_1": "301 South Market Street", + "address_2": "", + "zip_code": "95113", + "city": "San Jose", + "state": "CA", + "country": "US", + "lng": "-121.8852525", + "lat": "37.33874", + "website_url": "https://www.marriott.com/hotels/travel/sjcsj-san-jose-marriott/", + "display_on_site": false, + "details_page": false, + "location_message": "", + "is_main": false, + "rooms": [ + { + "id": 760, + "created": 1727193974, + "last_edited": 1727195907, + "name": "Salon I", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 31, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "floor_id": 110, + "capacity": 30, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 770, + "created": 1748463362, + "last_edited": 1748463362, + "name": "Marriott Salon III", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 40, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "floor_id": 110, + "capacity": 0, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 771, + "created": 1748463390, + "last_edited": 1748463390, + "name": "Marriott Salon IV", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 41, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "floor_id": 110, + "capacity": 0, + "override_blackouts": false, + "published_events": [6756, 7851] + }, + { + "id": 777, + "created": 1753129515, + "last_edited": 1753129515, + "name": "Salon II", + "short_name": null, + "description": "Salon II
", + "location_type": "Internal", + "order": 44, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "floor_id": 110, + "capacity": 25, + "override_blackouts": false, + "published_events": [] + } + ], + "published_events": [], + "floors": [110, 111] + }, + { + "id": 733, + "created": 1683216484, + "last_edited": 1683216484, + "name": "The HUB", + "short_name": null, + "description": "The HUB
", + "location_type": "Internal", + "order": 2, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 250, + "override_blackouts": false, + "floor": { + "id": 108, + "created": 1683216425, + "last_edited": 1683216425, + "name": "Parkway Level", + "description": "Parkway Level
", + "number": 1, + "venue_id": 731, + "image": null + }, + "published_events": [6689, 6691, 6692] + }, + { + "id": 734, + "created": 1683216510, + "last_edited": 1683216510, + "name": "Grand Ballroom 220", + "short_name": null, + "description": "Grand Ballroom 220
", + "location_type": "Internal", + "order": 3, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 3000, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [7784] + }, + { + "id": 735, + "created": 1683216530, + "last_edited": 1683216530, + "name": "Hall 1", + "short_name": null, + "description": "Hall 1
", + "location_type": "Internal", + "order": 4, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 1000, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 736, + "created": 1683216549, + "last_edited": 1683216549, + "name": "Hall 2", + "short_name": null, + "description": "Hall 2
", + "location_type": "Internal", + "order": 5, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 1000, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 737, + "created": 1683216578, + "last_edited": 1748453956, + "name": "Hall 1, 2, & 3", + "short_name": "", + "description": "Hall 1, 2, & 3
", + "location_type": "Internal", + "order": 6, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 8750, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [6694, 6749, 6754, 6755, 6759, 6782, 7704] + }, + { + "id": 738, + "created": 1683216597, + "last_edited": 1747079673, + "name": "210ABEF", + "short_name": "", + "description": "210ABEF
", + "location_type": "Internal", + "order": 7, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 575, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6713, 6715, 6830, 6832, 6841, 6847, 6848, 6897, 6906, 6929, 6967, + 6988, 7034, 7036, 7050, 7051, 7062, 7065, 7078, 7137, 7181, 7196, + 7262, 7303, 7317, 7320, 7330, 7341, 7381, 7383, 7384, 7390, 7408, + 7410, 7423, 7433, 7435, 7444, 7463, 7471, 7483, 7501, 7517, 7525, + 7536, 7549, 7567, 7703, 7705, 7706 + ] + }, + { + "id": 740, + "created": 1683216637, + "last_edited": 1747079716, + "name": "210CDGH", + "short_name": "", + "description": "210CDGH
", + "location_type": "Internal", + "order": 9, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 575, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6735, 6813, 6823, 6855, 6858, 6886, 6893, 6914, 6934, 6973, 6975, + 6984, 7011, 7012, 7017, 7072, 7074, 7076, 7090, 7106, 7111, 7174, + 7183, 7199, 7229, 7329, 7352, 7363, 7421, 7460, 7477, 7489, 7505, + 7523, 7595, 7634, 7656, 7677, 7679, 7691, 7693, 7698, 7699, 7741, 7745 + ] + }, + { + "id": 742, + "created": 1683216687, + "last_edited": 1753129295, + "name": "LL20A - DO NOT USE!", + "short_name": "", + "description": "LL20A
", + "location_type": "Internal", + "order": 11, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 200, + "override_blackouts": false, + "floor": { + "id": 107, + "created": 1683216402, + "last_edited": 1683216402, + "name": "Lower Level", + "description": "Lower Level
", + "number": 0, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 743, + "created": 1683216710, + "last_edited": 1683216710, + "name": "LL20BC", + "short_name": null, + "description": "LL20BC
", + "location_type": "Internal", + "order": 12, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 300, + "override_blackouts": false, + "floor": { + "id": 107, + "created": 1683216402, + "last_edited": 1683216402, + "name": "Lower Level", + "description": "Lower Level
", + "number": 0, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6721, 6783, 6816, 6871, 6881, 6898, 6901, 6904, 6905, 6923, 7125, + 7154, 7171, 7172, 7175, 7203, 7207, 7217, 7237, 7247, 7250, 7275, + 7315, 7348, 7358, 7379, 7412, 7416, 7454, 7470, 7522, 7554, 7568, + 7573, 7716, 7717, 7718, 7719, 7720, 7721, 7766, 7767, 7768, 7769, + 7770, 7771, 7772, 7777, 7778, 7780, 7813, 7814, 7815, 7816, 7817, + 7818, 7819, 7820, 7827 + ] + }, + { + "id": 744, + "created": 1683216727, + "last_edited": 1683216727, + "name": "LL20D", + "short_name": null, + "description": "LL20D
", + "location_type": "Internal", + "order": 13, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 200, + "override_blackouts": false, + "floor": { + "id": 107, + "created": 1683216402, + "last_edited": 1683216402, + "name": "Lower Level", + "description": "Lower Level
", + "number": 0, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6784, 6828, 6931, 6941, 6957, 6968, 6969, 6971, 6978, 6987, 7042, + 7116, 7133, 7187, 7219, 7223, 7228, 7259, 7342, 7350, 7394, 7450, + 7466, 7497, 7498, 7502, 7563, 7654, 7826, 7828, 7829, 7830, 7831, + 7832, 7833, 7834, 7835, 7836, 7837, 7838 + ] + }, + { + "id": 745, + "created": 1683216747, + "last_edited": 1683216747, + "name": "Concourse Lobby", + "short_name": null, + "description": "Concourse Lobby
", + "location_type": "Internal", + "order": 14, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 3000, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 746, + "created": 1683216762, + "last_edited": 1683216762, + "name": "220B", + "short_name": null, + "description": "220B
", + "location_type": "Internal", + "order": 15, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 300, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6780, 6801, 6811, 6812, 6842, 6860, 6945, 7013, 7025, 7057, 7061, + 7064, 7081, 7101, 7153, 7205, 7236, 7253, 7277, 7331, 7333, 7337, + 7344, 7349, 7360, 7365, 7424, 7429, 7552, 7625, 7640, 7644, 7649, + 7658, 7665, 7708, 7709, 7710, 7740, 7773, 7781, 7791, 7821, 7823, 7847 + ] + }, + { + "id": 747, + "created": 1683216784, + "last_edited": 1683216784, + "name": "220C", + "short_name": null, + "description": "220C
", + "location_type": "Internal", + "order": 16, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 300, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6716, 6719, 6722, 6727, 6738, 6794, 6796, 6804, 6807, 6808, 6932, + 6936, 6974, 6983, 6998, 7048, 7049, 7069, 7086, 7113, 7127, 7134, + 7161, 7180, 7245, 7276, 7293, 7299, 7374, 7406, 7431, 7441, 7478, + 7700, 7701, 7702, 7707, 7715, 7803, 7822, 7825, 7848 + ] + }, + { + "id": 748, + "created": 1683216829, + "last_edited": 1683216829, + "name": "Main Entrance Plaza", + "short_name": null, + "description": "Main Entrance Plaza
", + "location_type": "Internal", + "order": 17, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 2000, + "override_blackouts": false, + "floor": { + "id": 108, + "created": 1683216425, + "last_edited": 1683216425, + "name": "Parkway Level", + "description": "Parkway Level
", + "number": 1, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 750, + "created": 1695154632, + "last_edited": 1695154632, + "name": "Lower Level Lobby", + "short_name": null, + "description": "Lower Level Lobby
", + "location_type": "Internal", + "order": 19, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 300, + "override_blackouts": false, + "floor": { + "id": 107, + "created": 1683216402, + "last_edited": 1683216402, + "name": "Lower Level", + "description": "Lower Level
", + "number": 0, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 751, + "created": 1696435338, + "last_edited": 1729023532, + "name": "Expo Hall Theater", + "short_name": "", + "description": "Expo Hall Theater
", + "location_type": "Internal", + "order": 20, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 80, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6778, 6825, 7588, 7590, 7592, 7593, 7596, 7598, 7599, 7601, 7603, + 7606, 7611, 7613, 7615, 7616, 7619, 7621, 7622, 7624, 7628, 7630, + 7631, 7632, 7633, 7636, 7638, 7639, 7641, 7642, 7643, 7645, 7646, + 7647, 7648, 7652, 7653, 7659, 7661, 7663, 7667, 7669, 7672, 7674, + 7675, 7676, 7678, 7681, 7683, 7685, 7689, 7694, 7695, 7747, 7748, + 7749, 7750, 7751, 7752, 7755, 7756, 7758, 7759, 7760, 7761, 7762 + ] + }, + { + "id": 752, + "created": 1722277916, + "last_edited": 1753129227, + "name": "LL21B", + "short_name": "", + "description": "Lower level 21B
", + "location_type": "Internal", + "order": 22, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 100, + "override_blackouts": false, + "floor": { + "id": 107, + "created": 1683216402, + "last_edited": 1683216402, + "name": "Lower Level", + "description": "Lower Level
", + "number": 0, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6799, 6875, 6992, 7204, 7290, 7312, 7361, 7425, 7437, 7511, 7792, + 7793, 7794, 7795, 7796, 7797, 7798, 7799, 7800, 7801, 7802, 7804, + 7805, 7806, 7807, 7808, 7809, 7810, 7811 + ] + }, + { + "id": 753, + "created": 1726603323, + "last_edited": 1726603335, + "name": "Private CLA Room", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 23, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 0, + "capacity": 0, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 754, + "created": 1726607216, + "last_edited": 1748453762, + "name": "230A", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 24, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 330, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6800, 6849, 6872, 6888, 6924, 6993, 7015, 7047, 7083, 7104, 7169, + 7322, 7326, 7338, 7364, 7366, 7372, 7387, 7419, 7430, 7442, 7447, + 7586, 7597, 7623, 7651, 7712, 7713, 7742, 7743, 7744, 7746, 7782, + 7785, 7786, 7787, 7788, 7789, 7790, 7812 + ] + }, + { + "id": 755, + "created": 1727193892, + "last_edited": 1727193892, + "name": "220A", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 25, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 200, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 756, + "created": 1727193920, + "last_edited": 1727193920, + "name": "111", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 26, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 30, + "override_blackouts": false, + "floor": { + "id": 108, + "created": 1683216425, + "last_edited": 1683216425, + "name": "Parkway Level", + "description": "Parkway Level
", + "number": 1, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 757, + "created": 1727193946, + "last_edited": 1727193946, + "name": "114", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 27, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 30, + "override_blackouts": false, + "floor": { + "id": 108, + "created": 1683216425, + "last_edited": 1683216425, + "name": "Parkway Level", + "description": "Parkway Level
", + "number": 1, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 758, + "created": 1728564804, + "last_edited": 1728567224, + "name": "West Lobby", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 28, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 500, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 760, + "created": 1727193974, + "last_edited": 1727195907, + "name": "Salon I", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 31, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "capacity": 30, + "override_blackouts": false, + "floor": { + "id": 110, + "created": 1683216909, + "last_edited": 1683216935, + "name": "Level 2", + "description": "Level 2
", + "number": 2, + "venue_id": 732, + "image": null + }, + "published_events": [] + }, + { + "id": 761, + "created": 1695311039, + "last_edited": 1759255282, + "name": "Speaker Ready Room - LL21A Session 1 (demos)", + "short_name": "", + "description": "This room is specifically for presenters who will be doing a demonstration using their own computer.
", + "location_type": "Internal", + "order": 21, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "capacity": 1, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [], + "image": { + "id": 7078, + "created": 1758128825, + "last_edited": 1758128825, + "title": "SJCC LL21A Speaker Ready Room", + "name": "SJCC-LL21A-Speaker-Ready-Room.png", + "url": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summits/69/locations/731/rooms/SJCC-LL21A-Speaker-Ready-Room.png" + }, + "attributes": [] + }, + { + "id": 762, + "created": 1747079607, + "last_edited": 1747079607, + "name": "Hall 3", + "short_name": null, + "description": "Hall 3
", + "location_type": "Internal", + "order": 32, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 1000, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [6752, 6760, 6764] + }, + { + "id": 763, + "created": 1747079903, + "last_edited": 1753129156, + "name": "211", + "short_name": "", + "description": "211ABCD
", + "location_type": "Internal", + "order": 33, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 350, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6723, 6818, 6821, 6824, 6837, 6862, 6866, 6867, 6876, 6877, 6902, + 6915, 6917, 6938, 7016, 7052, 7085, 7087, 7119, 7140, 7147, 7220, + 7255, 7345, 7367, 7402, 7415, 7443, 7445, 7456, 7464, 7479, 7499, + 7503, 7547, 7587, 7589, 7614, 7637, 7660, 7666, 7690 + ] + }, + { + "id": 764, + "created": 1747079923, + "last_edited": 1753129171, + "name": "212", + "short_name": "", + "description": "212ABCD
", + "location_type": "Internal", + "order": 34, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 350, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [ + 6714, 6718, 6789, 6822, 6831, 6878, 6921, 6947, 7002, 7004, 7014, + 7022, 7026, 7033, 7039, 7094, 7109, 7129, 7155, 7163, 7190, 7225, + 7240, 7246, 7249, 7300, 7305, 7313, 7351, 7396, 7434, 7446, 7521, + 7532, 7537, 7600, 7612, 7620, 7650, 7664, 7682, 7684, 7783 + ] + }, + { + "id": 765, + "created": 1747080212, + "last_edited": 1747080212, + "name": "Hilton San Jose", + "short_name": "Hilton San Jose", + "description": "Stylish downtown hotel and mountain views.
\nSurrounded by restaurants, shops, and entertainment, our hotel features premium beds and views of the Santa Cruz Mountains. We're the official hotel of the San Jose Sharks, five minutes from SAP Center. Levi's Stadium is 10 minutes away. Our lively Secco Restaurant serves seasonal California cuisine, and the Patio offers sunset-themed cocktails.
", + "location_type": "Internal", + "order": 35, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenue", + "address_1": "300 Almaden Blvd.", + "address_2": "", + "zip_code": "95110", + "city": "San Jose", + "state": "CA", + "country": "US", + "lng": "-121.8852525", + "lat": "37.33874", + "website_url": "", + "display_on_site": false, + "details_page": false, + "location_message": "", + "is_main": false, + "rooms": [ + { + "id": 766, + "created": 1747080281, + "last_edited": 1747080281, + "name": "Almaden Ballroom", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 36, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 765, + "floor_id": 112, + "capacity": 200, + "override_blackouts": false, + "published_events": [] + } + ], + "published_events": [], + "floors": [112, 113] + }, + { + "id": 766, + "created": 1747080281, + "last_edited": 1747080281, + "name": "Almaden Ballroom", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 36, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 765, + "capacity": 200, + "override_blackouts": false, + "floor": { + "id": 112, + "created": 1747080240, + "last_edited": 1747080240, + "name": "Lobby Level", + "description": "", + "number": 1, + "venue_id": 765, + "image": null + }, + "published_events": [] + }, + { + "id": 767, + "created": 1748452376, + "last_edited": 1748452376, + "name": "The HUB & Main Entrance Plaza", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 37, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 0, + "override_blackouts": false, + "floor": { + "id": 108, + "created": 1683216425, + "last_edited": 1683216425, + "name": "Parkway Level", + "description": "Parkway Level
", + "number": 1, + "venue_id": 731, + "image": null + }, + "published_events": [6763] + }, + { + "id": 768, + "created": 1748452484, + "last_edited": 1748564929, + "name": "210AE, 210CG, 211, 212, 230A", + "short_name": "", + "description": "", + "location_type": "Internal", + "order": 38, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 0, + "override_blackouts": false, + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [] + }, + { + "id": 769, + "created": 1748452839, + "last_edited": 1748452839, + "name": "Lower Level Rooms", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 39, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "capacity": 0, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "floor": { + "id": 107, + "created": 1683216402, + "last_edited": 1683216402, + "name": "Lower Level", + "description": "Lower Level
", + "number": 0, + "venue_id": 731, + "image": null + }, + "published_events": [], + "attributes": [] + }, + { + "id": 770, + "created": 1748463362, + "last_edited": 1748463362, + "name": "Marriott Salon III", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 40, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "capacity": 0, + "override_blackouts": false, + "floor": { + "id": 110, + "created": 1683216909, + "last_edited": 1683216935, + "name": "Level 2", + "description": "Level 2
", + "number": 2, + "venue_id": 732, + "image": null + }, + "published_events": [] + }, + { + "id": 771, + "created": 1748463390, + "last_edited": 1748463390, + "name": "Marriott Salon IV", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 41, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "capacity": 0, + "override_blackouts": false, + "floor": { + "id": 110, + "created": 1683216909, + "last_edited": 1683216935, + "name": "Level 2", + "description": "Level 2
", + "number": 2, + "venue_id": 732, + "image": null + }, + "published_events": [6756, 7851] + }, + { + "id": 773, + "created": 1748631730, + "last_edited": 1748631730, + "name": "Concourse & Lower Levels", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 42, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "floor_id": 0, + "capacity": 0, + "override_blackouts": false, + "published_events": [] + }, + { + "id": 774, + "created": 1753116519, + "last_edited": 1753116519, + "name": "LL21C", + "short_name": null, + "description": "", + "location_type": "Internal", + "order": 43, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 170, + "override_blackouts": false, + "floor": { + "id": 107, + "created": 1683216402, + "last_edited": 1683216402, + "name": "Lower Level", + "description": "Lower Level
", + "number": 0, + "venue_id": 731, + "image": null + }, + "published_events": [6856, 7296, 7739, 7775, 7849] + }, + { + "id": 777, + "created": 1753129515, + "last_edited": 1753129515, + "name": "Salon II", + "short_name": null, + "description": "Salon II
", + "location_type": "Internal", + "order": 44, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 732, + "capacity": 25, + "override_blackouts": false, + "floor": { + "id": 110, + "created": 1683216909, + "last_edited": 1683216935, + "name": "Level 2", + "description": "Level 2
", + "number": 2, + "venue_id": 732, + "image": null + }, + "published_events": [] + }, + { + "id": 778, + "created": 1755704853, + "last_edited": 1755715086, + "name": "South Hall", + "short_name": "", + "description": "Tent in parking lot, south of main Convention Center Building.
", + "location_type": "Internal", + "order": 45, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenueRoom", + "venue_id": 731, + "capacity": 9000, + "override_blackouts": false, + "floor": { + "id": 115, + "created": 1755715049, + "last_edited": 1755715049, + "name": "Street Level", + "description": "This room is intended for those uploading a new deck.
", + "location_type": "Internal", + "order": 46, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "capacity": 1, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [], + "image": { + "id": 7145, + "created": 1759163381, + "last_edited": 1759163381, + "title": "SJCC LL21A Speaker Ready Room1", + "name": "SJCC-LL21A-Speaker-Ready-Room1.png", + "url": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summits/69/locations/731/rooms/SJCC-LL21A-Speaker-Ready-Room1.png" + }, + "attributes": [ + { + "id": 7, + "created": 1747079545, + "last_edited": 1747079545, + "value": "Monitor, podium and technician", + "type": { + "id": 6, + "created": 1747079545, + "last_edited": 1747079545, + "type": "Speaker Ready Room", + "summit_id": 69, + "values": [7] + } + } + ] + }, + { + "id": 780, + "created": 1759163432, + "last_edited": 1759166225, + "name": "Speaker Ready Room - LL21A Session 3", + "short_name": "", + "description": "This room is intended for those uploading a new deck.
", + "location_type": "Internal", + "order": 47, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitBookableVenueRoom", + "venue_id": 731, + "capacity": 1, + "override_blackouts": false, + "time_slot_cost": 0, + "currency": "USD", + "floor": { + "id": 109, + "created": 1683216447, + "last_edited": 1683216447, + "name": "Concourse Level", + "description": "Concourse Level
", + "number": 2, + "venue_id": 731, + "image": null + }, + "published_events": [], + "image": { + "id": 7146, + "created": 1759163433, + "last_edited": 1759163433, + "title": "SJCC LL21A Speaker Ready Room2", + "name": "SJCC-LL21A-Speaker-Ready-Room2.png", + "url": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summits/69/locations/731/rooms/SJCC-LL21A-Speaker-Ready-Room2.png" + }, + "attributes": [] + }, + { + "id": 781, + "created": 1762190581, + "last_edited": 1762190581, + "name": "International Barcelona Convention Center", + "short_name": "CCIB", + "description": "", + "location_type": "Internal", + "order": 48, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenue", + "address_1": "Plaça de Willy Brandt, 11-14", + "address_2": "", + "zip_code": "08019", + "city": "Sant Marti", + "state": "Barcelona", + "country": "ES", + "lng": "2.2193", + "lat": "41.4088", + "website_url": "", + "display_on_site": false, + "details_page": false, + "location_message": "", + "is_main": false, + "rooms": [], + "published_events": [] + }, + { + "id": 782, + "created": 1762201827, + "last_edited": 1762201827, + "name": "ICCB 2", + "short_name": "", + "description": "test
", + "location_type": "Internal", + "order": 51, + "opening_hour": 8, + "closing_hour": 1801, + "class_name": "SummitVenue", + "address_1": "", + "address_2": "", + "zip_code": "", + "city": "", + "state": "", + "country": "", + "lng": "0", + "lat": "0", + "website_url": "", + "display_on_site": true, + "details_page": false, + "location_message": "", + "is_main": false, + "rooms": [], + "published_events": [] + }, + { + "id": 787, + "created": 1765397050, + "last_edited": 1765397050, + "name": "test venue", + "short_name": "tv", + "description": "tv
", + "location_type": "Internal", + "order": 52, + "opening_hour": null, + "closing_hour": null, + "class_name": "SummitVenue", + "address_1": "", + "address_2": "", + "zip_code": "", + "city": "", + "state": "", + "country": "", + "lng": "0", + "lat": "0", + "website_url": "", + "display_on_site": true, + "details_page": false, + "location_message": "xxxx
", + "is_main": false, + "rooms": [], + "published_events": [] + }, + { + "id": 788, + "created": 1766777991, + "last_edited": 1766780205, + "name": "Test Exo 2nd Round", + "short_name": "VTO3", + "description": "testdadadda
", + "location_type": "Internal", + "order": 53, + "opening_hour": 100, + "closing_hour": 500, + "class_name": "SummitVenue", + "address_1": "", + "address_2": "", + "zip_code": "", + "city": "", + "state": "", + "country": "", + "lng": "0", + "lat": "0", + "website_url": "", + "display_on_site": false, + "details_page": false, + "location_message": "LM
daadda
", + "is_main": false, + "rooms": [ + { + "id": 789, + "created": 1766778175, + "last_edited": 1766780232, + "name": "Test Exo Room 2nd Round", + "short_name": "", + "description": "descadadadda
", + "location_type": "Internal", + "order": 54, + "opening_hour": 300, + "closing_hour": 600, + "class_name": "SummitVenueRoom", + "venue_id": 788, + "floor_id": 0, + "capacity": 3, + "override_blackouts": false, + "published_events": [] + } + ], + "published_events": [] + }, + { + "id": 789, + "created": 1766778175, + "last_edited": 1766780232, + "name": "Test Exo Room 2nd Round", + "short_name": "", + "description": "descadadadda
", + "location_type": "Internal", + "order": 54, + "opening_hour": 300, + "closing_hour": 600, + "class_name": "SummitVenueRoom", + "venue_id": 788, + "floor_id": 0, + "capacity": 3, + "override_blackouts": false, + "published_events": [] + } + ], + "logo": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summits/69/OCP23G-Nav-Logo.svg", + "secondary_logo": "", + "page_url": "", + "presentation_voters_count": 0, + "presentation_votes_count": 0, + "presentations_submitted_count": 1048, + "published_events_count": 548, + "reassign_ticket_till_date": 1764316740, + "registration_begin_date": 1747033200, + "registration_end_date": 1767315600, + "registration_link": "", + "registration_disclaimer_content": "I agree to the Open Compute Project Foundation Event Terms & Conditions.
\nCookies
\nWe use cookies to personalize content, to provide social media features and to analyze our traffic. We also share information about your use of our site with our social media, solution providers, members, sponsors, and analytics partners, who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services. You consent to our cookies if you continue to use this website.
\nConference Participation Consent and Acknowledgement
\nBy clicking “I agree” below, you hereby agree and consent to the Conference Participation terms set forth below.
\nIn consideration for my participation in this OCP Event, whether in-person or virtual (known moving forward as the “Event”):
\nI hereby authorize OCP, and any OCP licensees and designees, to photograph me and prepare audio and video recordings of me, and my Presentation if applicable, at this Event (“Recordings”), and to reproduce and distribute the Recordings in whole or in part. I waive all rights of privacy or publicity associated therewith.
\nOCP encourages participants to share their proposals, specifications and designs with the community. This is to promote openness and encourage continuous and open feedback. It is important to remember that by providing feedback during this Event, whether in written or verbal form, that I (and my organization if I am attending on behalf of an organization) grant OCP and its members the irrevocable right to use this feedback for any purpose without any further obligation to me.
\nIf I am presenting at this Event, I acknowledge that my Presentation and any ancillary materials I provide to OCP in connection with my Presentation, including without limitation any white paper, article, photograph, likeness, or professional biography (together, “Materials”) are made available under the Creative Commons Attribution-ShareAlike 4.0 International License found here: https://creativecommons.org/licenses/by-sa/4.0/, or any later version, and without limiting the foregoing, OCP may make the Materials available under such terms.
\nOCP may exercise its rights hereunder in all forms and media, whether now known or hereafter developed, throughout the world in perpetuity, royalty-free. My authorization and acknowledgment above are irrevocable and extend to OCP and its agents, successors, and assigns. I hereby waive any right to inspect or approve the Recordings. I acknowledge that OCP is not obligated to use the Recordings or Materials, if applicable, in any manner.
\nI hereby represent that I have the authority to grant the rights and licenses herein. If I am presenting at this Event, I further represent and warrant that the Materials do not and will not violate the rights of any third party, including without limitation rights in intellectual property. I also represent that, to the extent the Materials include materials owned or created by any third party, I have obtained permission for its use consistent with the foregoing. I will provide OCP evidence of such permission upon OCP’s request.
\nFurthermore, as a potential presenter, I understand and agree to the following:
\n-that acceptance of my abstract does not guarantee me a speaking engagement of any sort.
\n-that my presentation must use the OCP slide template and must be submitted by the deadlines as set forth by OCP.
\n-that my presentation will be reviewed and prioritized by the OCP Foundation, the OCP Project Leads and OCP Steering Committee
\n-that if I must cancel my presentation for any reason, I will inform OCP in writing at least 20 days in advance of the OCP Summit.
\n-that the OCP Foundation may accept or reject any presentation in its sole discretion at any time for any reason.
\nBadge Sharing
\nBadge sharing/swapping/trading is considered theft and is strictly prohibited at OCP events. Attendees must wear their badge at all times on the event premises, and that badge must match their ID. Any attendee caught without a badge will be escorted to registration to show an ID and charged a reprint fee if the badge cannot be found. If caught wearing another attendee's badge or leaving the premises with multiple badges with the intent to distribute to other attendees, all badges will be confiscated, and this person may be removed from the event. OCP keeps historical records of companies and sponsors who are regular offenders of badge sharing/swapping/trading. OCP reserves the right to deny attendance, sponsorship, and speaking opportunities to any individuals or organizations that do not abide by OCP event regulations.
\nFor events with wristband identifiers, please wear your wristband at all times and leave it on your person for the duration of the event. The wristband is for safety and security, and the badge is for identification and access to particular areas of the event. Be aware you must be wearing both to access the event. If you remove your wristband and/or lose it, you will be required to purchase an onsite ticket to replace it.
\nVirtual Event Attendance
\nAs a virtual event attendee, I acknowledge that my profile and contact information, as well as my activity within the event, will be collected by the event hosts. I also agree that my attendee profile may be visible to others in the virtual event, including other attendees. I understand I can choose what information is shared via chat with other attendees by updating My Profile on the event website. (This area can be accessed by clicking the top/right corner of the nav bar.)
\nPrivacy / GDPR
\nOCP will treat all information you provide in accordance with the OCP Privacy Policy posted at http://www.opencompute.org/privacy/. This includes cookies and any other information we may collect. By clicking “I agree” above, you acknowledge and accept OCP’s Privacy Policy and give your consent to the transfer of your personal information to the United States, which may have less protections than your jurisdiction of residence.
\nThe Open Compute Project respects your privacy and will never sell or share your contact information without your permission. Exhibitors may request to scan your badge in order to share valuable info with you after the show, but please feel free to opt out by not having your badge scanned. By allowing your badge to be scanned, you are giving sponsors permission to access your contact information.
\nFor some virtual events, attendee lists are shared with host sponsors. OCP will notify you during the registration process if your information will be shared with sponsors.
\nYour registration or contact submission for any OCP event grants us permission to store and use your information for direct email communication for updates, events, marketing, announcements and other Foundation news. We may utilize external services for these communications. Please refer to our privacy policy for complete details, and you retain the right to unsubscribe at any time.
\nHealth & Safety
\nOCP, FNTECH, and the local event venue and staff are not responsible for any expenses incurred should an attendee be denied entry into the country, state, or event, even if event is canceled, including but not limited to: airfare, hotel, meals, and event registration fees.
\nFurthermore, I agree that it is my responsibility to adhere to all event, facility, local, regional or federal laws and regulations related to COVID, or any other health-related requirements, including but not limited to the wearing of facemasks and vaccination requirements. For example, if you are not feeling well at the time of the event, you are asked to not attend the event. If you do not feel well, or test positive for any variation of COVID or any other health-related infection, you agree to refrain from attending the event and will immediately notify the event organizers, including any individuals or groups that you have come into direct contact with.
\nRelease and Waiver.
\nI hereby release, waive and forever discharge any and all liability, claims, and demands of whatever kind or nature against OCP, FNTECH and its affiliated partners and sponsors, including in each case, without limitation, their directors, officers, employees, volunteers, and agents (the “released parties”), either in law or in equity, to the fullest extent permissible by law, including but not limited to damages or losses caused by the negligence, fault or conduct of any kind on the part of the released parties, including but not limited to death, bodily injury, illness, economic loss or out of pocket expenses, or loss or damage to property, which I, my heirs, assignees, next of kin and/or legally appointed or designated representatives, may have or which may hereinafter accrue on my behalf, which arise or may hereafter arise from my participation with the activity.
\nCancellation
\nBy accepting your badge at check-in, you agree that all registration fees are final and non-refundable. Once issued, badges are non-transferable, and no cancellations, refunds, or credits will be provided post-check-in. Please see the cancellation terms and deadlines for each event on the OCP website.
\nAssumption of the Risk.
\nI acknowledge and understand the following:
\n1. Participation includes possible exposure to and illness from infectious diseases, including but not limited to COVID-19. While particular rules and personal discipline may reduce this risk, the risk of serious illness and death does exist;
\n2. I knowingly and freely assume all such risks related to illness and infectious diseases, such as COVID-19, even if arising from the negligence or fault of the Released Parties; and
\n3. I hereby knowingly assume the risk of injury, harm and loss associated with the Activity, including any injury, harm and loss caused by the negligence, fault or conduct of any kind on the part of the Released Parties.
\nAs a participant, volunteer, or attendee, You recognize that your participation, involvement and/or attendance at any OCP or FNTECH event or activity (“Activity”) is voluntary and may result in personal injury (including death) and/or property damage. By attending, observing or participating in the activity, you acknowledge and assume all risks and dangers associated with your participation and/or attendance at the Activity, and You agree that: (a) the OCP (b) the property or site owner of the Activity, and (c) all past, present and future affiliates, successors, assigns, employees, volunteers, vendors, partners, directors, and officers, of such entities (subsections (a) through (c), collectively, the \"Released Parties\"), will not be responsible for any personal injury (including death), property damage, or other loss suffered as a result of your participation in, attendance at, and/or observation of the Activity, regardless if any such injuries or losses are caused by the negligence of any of the Released Parties (collectively, the \"Released Claims\"). By attending and/or participating in the activity, you are deemed to have given a full release of liability to the released parties to the fullest extent permitted by law.
", + "registration_disclaimer_mandatory": true, + "registration_slug_prefix": "2025OCPGLO", + "schedule_event_detail_url": "", + "schedule_page_url": "", + "schedule_start_date": "", + "secondary_registration_label": "", + "secondary_registration_link": "", + "speaker_announcement_email_accepted_alternate_count": 0, + "speaker_announcement_email_accepted_count": 2699, + "speaker_announcement_email_accepted_rejected_count": 157, + "speaker_announcement_email_alternate_count": 0, + "speaker_announcement_email_alternate_rejected_count": 0, + "speaker_announcement_email_rejected_count": 472, + "speakers_count": 765, + "start_date": 1759388400, + "start_showing_venues_date": "", + "slug": "2025ocpglo", + "supported_currencies": ["USD", "EUR", "GBP", "CAD", "KRW"], + "default_ticket_type_currency": "USD", + "ticket_types": [ + { + "id": 188, + "created": 1747194574, + "last_edited": 1762531309, + "name": "Early Bird Ticket", + "description": "This is for general admission. Needs QR Code on Badge. Symposium included (first come, first served until capacity is met) This ticket available through Friday, August 1, 2025", + "external_id": null, + "summit_id": 69, + "cost": 700, + "currency": "USD", + "currency_symbol": "$", + "quantity_2_sell": 10000, + "max_quantity_per_order": 100, + "sales_start_date": 1747119600, + "sales_end_date": 1761893940, + "badge_type_id": 151, + "quantity_sold": 3944, + "audience": "All", + "allows_to_delegate": false, + "allows_to_reassign": true, + "applied_taxes": [], + "sub_type": "Regular" + }, + { + "id": 189, + "created": 1747195630, + "last_edited": 1764600599, + "name": "Standard Ticket", + "description": "This is for general admission. Needs QR Code on Badge. Symposium included (first come, first served until capacity is met). Early Bird pricing ended 8/1/25. In-Person Ticket: Standard, is on sale 8/2/25- 10/12/25", + "external_id": null, + "summit_id": 69, + "cost": 900, + "currency": "USD", + "currency_symbol": "$", + "quantity_2_sell": 10000, + "max_quantity_per_order": 100, + "sales_start_date": 1754118000, + "sales_end_date": 1765007940, + "badge_type_id": 151, + "quantity_sold": 2936, + "audience": "All", + "allows_to_delegate": false, + "allows_to_reassign": true, + "applied_taxes": [4], + "sub_type": "Regular" + }, + { + "id": 190, + "created": 1747195915, + "last_edited": 1765934184, + "name": "Onsite Ticket", + "description": "This is for general admission. Needs QR Code on Badge. Symposium included (first come, first served until capacity is met). Standard pricing ended 10/12. \"Onsite Ticket\" available all day on 10/13/25 and 10/14/25", + "external_id": null, + "summit_id": 69, + "cost": 1200, + "currency": "USD", + "currency_symbol": "$", + "quantity_2_sell": 10000, + "max_quantity_per_order": 100, + "sales_start_date": 1760338800, + "sales_end_date": 1766131140, + "badge_type_id": 151, + "quantity_sold": 42, + "audience": "All", + "allows_to_delegate": false, + "allows_to_reassign": true, + "applied_taxes": [4], + "sub_type": "Regular" + }, + { + "id": 191, + "created": 1747196041, + "last_edited": 1759851729, + "name": "OCP Foundation Staff Ticket", + "description": "OCP Staff ticket - tied to OCP Foundation Staff Badge-Type. Dates set in the past, so not visible online. MJ to flip Staff that registered with codeFTS Keynotes
", + "code": "FTS1", + "slug": "fts-keynotes-awards", + "session_count": 10, + "alternate_count": 2, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 1, + "proposed_schedule_transition_time": null, + "parent_id": 36527, + "track_groups": [69], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1690], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [21], + "subtracks": [] + }, + { + "id": 36481, + "created": 1747078146, + "last_edited": 1753196816, + "name": "Registration", + "description": "Registration
", + "code": "REG", + "slug": "registration", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#005870", + "text_color": "#ffffff", + "icon_url": null, + "order": 1, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36487, + "created": 1747078146, + "last_edited": 1760205489, + "name": "SONiC Workshop", + "description": "SONiC Workshop
", + "code": "SON", + "slug": "sonic-workshop", + "session_count": 30, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#e4c4b9", + "text_color": "#000000", + "icon_url": null, + "order": 1, + "proposed_schedule_transition_time": null, + "parent_id": 36530, + "track_groups": [72], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1688, 1689], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [22], + "subtracks": [] + }, + { + "id": 36493, + "created": 1747078146, + "last_edited": 1756999051, + "name": "FTI Workshop: Short Reach Optical Interconnects", + "description": "FTI Workshop: Short Reach Optical Interconnects details coming soon.
", + "code": "FTI4", + "slug": "fti-workshop-short-reach-optical-interconnects", + "session_count": 20, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#cac6f5", + "text_color": "#000000", + "icon_url": null, + "order": 1, + "proposed_schedule_transition_time": null, + "parent_id": 36528, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36477, + "created": 1747078146, + "last_edited": 1760205489, + "name": "Manageability Workshop", + "description": "Manageability Workshop presented by DMTF at the OCP Global Summit
", + "code": "CL01", + "slug": "manageability-workshop", + "session_count": 12, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#80614b", + "text_color": "#ffffff", + "icon_url": null, + "order": 2, + "proposed_schedule_transition_time": null, + "parent_id": 36530, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36480, + "created": 1747078146, + "last_edited": 1756999058, + "name": "FTI Workshop: Data Centric Computing", + "description": "FTI Workshop: Data Centric Computing details coming soon.
", + "code": "FTI3", + "slug": "fti-workshop-data-centric-computing", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#a8a1f2", + "text_color": "#000000", + "icon_url": null, + "order": 2, + "proposed_schedule_transition_time": null, + "parent_id": 36528, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36491, + "created": 1747078146, + "last_edited": 1756998972, + "name": "FTS: Data Center Sustainability", + "description": "Includes topics aimed at new methods to prolong product life cycles, application of new materials and technologies in shaping the life cycle of data center products, innovative research focusing on sustainable practices and technologies in the data center industry, carbon capture technologies, development and application of high-efficiency, environmentally friendly energy storage solutions, future generation energy reuse, novel methodologies for carbon accounting and costing, particularly as applied to AI/ML, trends and future implications of policy and regulation pertaining to achieving Net Zero, other innovative work on intersection of sustainability and data centers.
", + "code": "SYM2", + "slug": "fts-data-center-sustainability", + "session_count": 15, + "alternate_count": 2, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 2, + "proposed_schedule_transition_time": null, + "parent_id": 36527, + "track_groups": [69], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1579, 1606, 1607, 1631, 1658, 1659, 1661, 1670], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36492, + "created": 1747078146, + "last_edited": 1753196821, + "name": "Meals & Breaks", + "description": "Meals & Breaks
", + "code": "MB", + "slug": "meals-breaks", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#08c0cd", + "text_color": "#000000", + "icon_url": null, + "order": 2, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [23], + "subtracks": [] + }, + { + "id": 36484, + "created": 1747078146, + "last_edited": 1756998980, + "name": "FTS: AI / HPC", + "description": "Includes topics aimed at future generations of AI systems for AI/HPC and how it impacts AI cluster HW/SW design: energy-centric architectures for HPC, overall AI system efficiency, accelerating model training and inference, quantizing effects.
", + "code": "SYM1", + "slug": "fts-ai-hpc", + "session_count": 17, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 3, + "proposed_schedule_transition_time": null, + "parent_id": 36527, + "track_groups": [69], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1478, 1479, 1573, 1574, 1580, 1581, 1582, 1586, 1605, 1657, 1662, 1671 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36497, + "created": 1747078146, + "last_edited": 1753196824, + "name": "Keynotes", + "description": "", + "code": "KEY", + "slug": "keynotes", + "session_count": 20, + "alternate_count": 5, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#89c23f", + "text_color": "#000000", + "icon_url": null, + "order": 3, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [71], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1697], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36534, + "created": 1758218876, + "last_edited": 1760205645, + "name": "IPEC Workshop", + "description": "Includes such topics as deep dive / case study into superconducting, ion trap, and neutral atom as three modalities for quantum computing hardware, DC Facility considerations and standardizations for quantum, development environments, compilers, languages, architecture, acceleration, industry surveys and findings applied to OCP / open source, etc.
", + "code": "SYM3", + "slug": "fts-quantum-data-center-design", + "session_count": 20, + "alternate_count": 2, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 4, + "proposed_schedule_transition_time": null, + "parent_id": 36527, + "track_groups": [69], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1686, 1695], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36503, + "created": 1747078146, + "last_edited": 1753196826, + "name": "Expo Hall", + "description": "Expo Hall Sponsors and other Activities
", + "code": "EH", + "slug": "expo-hall", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#007940", + "text_color": "#ffffff", + "icon_url": null, + "order": 4, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36533, + "created": 1756912443, + "last_edited": 1760205645, + "name": "P4 Workshop", + "description": "P4 Workshop
", + "code": null, + "slug": "p4-workshop", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#c57b26", + "text_color": "#000000", + "icon_url": null, + "order": 4, + "proposed_schedule_transition_time": null, + "parent_id": 36530, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36506, + "created": 1747078146, + "last_edited": 1753196830, + "name": "Innovation Village", + "description": "Experience Center Demo
", + "code": "IV", + "slug": "innovation-village", + "session_count": 3, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#5f6062", + "text_color": "#ffffff", + "icon_url": null, + "order": 5, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36501, + "created": 1747078146, + "last_edited": 1753197100, + "name": "Executive Sessions", + "description": "A 25-minute presentation as a part of the Diamond Sponsorships or a 20-minute presentation as part of the Emerald Sponsorships.
", + "code": "ET", + "slug": "executive-sessions", + "session_count": 70, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#f6b71c", + "text_color": "#000000", + "icon_url": null, + "order": 6, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [70], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36502, + "created": 1747078146, + "last_edited": 1753197118, + "name": "Expo Hall Sessions", + "description": "A 15-minute presentation given on the Expo Hall Stage as a part of the Diamond, Emerald and Ruby Sponsorships.
", + "code": "EHT", + "slug": "expo-hall-sessions", + "session_count": 100, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#65e465", + "text_color": "#000000", + "icon_url": null, + "order": 7, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [70], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36476, + "created": 1747078146, + "last_edited": 1753741930, + "name": "Artificial Intelligence (Special Focus)", + "description": "This track explores open innovations driving efficiency and sustainability in AI systems, covering data center IT and physical infrastructure, systems management, networking and interconnection, composability and memory requirements, applying AI to network management, and optimizations such as quantization and specialized AI chiplets.
", + "code": "EW16", + "slug": "artificial-intelligence-special-focus", + "session_count": 51, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#caf0fe", + "text_color": "#000000", + "icon_url": null, + "order": 8, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1480, 1481, 1482, 1486, 1542, 1619, 1633, 1694], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36479, + "created": 1747078146, + "last_edited": 1753741930, + "name": "Cooling Environments: Immersion", + "description": "Cooling Environments: Immersion
", + "code": "EW18", + "slug": "cooling-environments-immersion", + "session_count": 20, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#117fff", + "text_color": "#000000", + "icon_url": null, + "order": 9, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1483, 1484, 1485, 1487, 1530, 1546, 1550, 1551, 1553, 1554, 1555, + 1556, 1557, 1558, 1559, 1560, 1570 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36486, + "created": 1747078146, + "last_edited": 1753741930, + "name": "Cooling Environments & Liquid Cooling", + "description": "This track is designed to address the increasing demand for data center cooling innovations. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW1", + "slug": "cooling-environments-liquid-cooling", + "session_count": 30, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#c4d9f0", + "text_color": "#000000", + "icon_url": null, + "order": 10, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1488, 1489, 1497, 1533, 1536, 1541, 1545, 1547, 1552, 1561, 1562, + 1563, 1565 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36513, + "created": 1747078146, + "last_edited": 1753741930, + "name": "Data Center Facility (DCF)", + "description": "Design, commissioning and operational practice of the data center, power and cooling infrastructure in support of IT equipment, DC infrastructure management. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW2", + "slug": "data-center-facility-dcf", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#b296ff", + "text_color": "#000000", + "icon_url": null, + "order": 11, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1490, 1491, 1526, 1531, 1572, 1591, 1592, 1608, 1610, 1611, 1612, + 1613, 1614, 1615, 1616, 1617, 1618, 1620, 1621, 1622, 1623, 1624, + 1625, 1626, 1627, 1628, 1629, 1630 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36532, + "created": 1750433953, + "last_edited": 1753741927, + "name": "Digital Twins", + "description": "Digital Twins
", + "code": "DT1", + "slug": "digital-twins", + "session_count": 5, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#DADADA", + "text_color": "#000000", + "icon_url": null, + "order": 12, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1493, 1494, 1527, 1647, 1648, 1649, 1656], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36522, + "created": 1747078146, + "last_edited": 1753741927, + "name": "Edge", + "description": "Technologies and products for telecom functions and far edge deployment including but not limited to silicon, modularity, products and integration solutions. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW11", + "slug": "edge", + "session_count": 5, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#aaaaaa", + "text_color": "#000000", + "icon_url": null, + "order": 13, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1495, 1496, 1535, 1537, 1538, 1539, 1540, 1576, 1583, 1584, 1585 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36514, + "created": 1747078146, + "last_edited": 1753741927, + "name": "Hardware Management", + "description": "This project creates and designs specifications to enable interoperable manageability for Open Compute Platforms, with core focus on baseline hardware manageability and out of band management. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW3", + "slug": "hardware-management", + "session_count": 19, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#fffd67", + "text_color": "#000000", + "icon_url": null, + "order": 14, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1498, 1499, 1510, 1523, 1566, 1575, 1609, 1635, 1636, 1637, 1638, + 1639, 1640, 1641, 1642, 1643, 1674 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36482, + "created": 1747078146, + "last_edited": 1753741961, + "name": "Market Impact & OCP Adoption Stories (Special Focus)", + "description": "This track will explore the broader market dynamics and trends shaping adoption of OCP-recognized hardware and solutions, grounded in IDC’s market impact study—including analysis by revenue, market segment, geography, and component type. It will also examine the evolving characteristics of the OCP supply ecosystem, highlighting how multi-vendor collaboration, interoperability, and service models contribute to scalable, resilient infrastructure. Real-world examples from OCP Solution Providers will showcase stories around deployments of OCP-recognized hardware, AI deployments, OCP Ready™ for Hyperscale Facilities, OCP Experience Center initiatives, and the OCP S.A.F.E. framework.
", + "code": "EW14", + "slug": "market-impact-ocp-adoption-stories-special-focus", + "session_count": 20, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#94e3fe", + "text_color": "#000000", + "icon_url": null, + "order": 15, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1492, 1528, 1529, 1543, 1634, 1683, 1684], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36515, + "created": 1747078146, + "last_edited": 1753741961, + "name": "Networking", + "description": "Networking hardware and software deployed into data centers, telecom central offices and enterprise. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW4", + "slug": "networking", + "session_count": 19, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#ff5a75", + "text_color": "#000000", + "icon_url": null, + "order": 16, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1500, 1501, 1594, 1595, 1596, 1597, 1672, 1676], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36516, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Open Platform Firmware (OPF)", + "description": "An open firmware development project aiming to allow safe modification and sharing by the owners. This project, for example, has contributions that leverage Coreboot/Linux Boot by filling the gaps against UEFI BIOS. In addition to System ROM firmware the intent is to extend this modification architecture and capability to BMC firmware and IO device firmware.
", + "code": "EW5", + "slug": "open-platform-firmware-opf", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#fe66ff", + "text_color": "#000000", + "icon_url": null, + "order": 17, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1502, 1503, 1532, 1549, 1571, 1589, 1590, 1675], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36488, + "created": 1747078146, + "last_edited": 1753741959, + "name": "OpenRAN (Special Focus)", + "description": "The track highlights and provides status towards OCP's Evenstar workstream, a pioneering approach to developing open, modular, and interoperable radio units. Evenstar aims to establish requirements and specifications for an open 5G/xG radio unit platform compatible with the 3GPP roadmap and Open RAN standards. By supporting the CU/DU ecosystem through robust, AI-accelerated platforms with open and private software stacks, this end-to-end approach seeks to deliver open platforms that reduce costs, strengthen supply chains, and accelerate next-generation wireless deployment. Key areas of focus include modular and scalable architectures for customizable radio units (RFIC, RFFE components and subsystems), open interfaces, deployment considerations (form factors, field logistics), interoperability, performance, sustainability, reliability, test/measurement, and security.
", + "code": "EW17", + "slug": "openran-special-focus", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#53d5fd", + "text_color": "#000000", + "icon_url": null, + "order": 18, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1682], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36496, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Photonics (Special Focus)", + "description": "This track will explore opportunities for collaboration between organizations adjacent to OCP working on optical networking (researchers and their vendors). Areas of interest include new optics technologies that will reduce power consumption, data center optics (400G, 800G and 1.6T Ethernet), DCI interconnect (400G, 800G, and 1.6T-ZR), and optical chiplets.
", + "code": "EW15", + "slug": "photonics-special-focus", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#00c7fc", + "text_color": "#000000", + "icon_url": null, + "order": 19, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1524, 1525, 1568, 1569], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36517, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Rack & Power", + "description": "The Rack & Power Project focuses on rack standards that are designed for data centers, integrating the rack into the data center infrastructure. Includes standard 19” and OpenRack 21” architectures, power shelves, bus bars and the enclosures.
", + "code": "EW6", + "slug": "rack-power", + "session_count": 11, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#d357fe", + "text_color": "#000000", + "icon_url": null, + "order": 20, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1504, 1505, 1578, 1663], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36518, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Security", + "description": "The goal of the OCP Security project is to improve security across data centers through open standards. It provides specifications for hardware and software on security implementations.
", + "code": "EW7", + "slug": "security", + "session_count": 20, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#c0fbc7", + "text_color": "#000000", + "icon_url": null, + "order": 21, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1506, 1507, 1567, 1587, 1588, 1598, 1599, 1693, 1696 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36494, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Server: AI HW SW Co-Design/NIC/HPC", + "description": "Server: AI HW SW Co-Design/NIC/HPC
", + "code": "EW22", + "slug": "server-ai-hw-sw-codesignnichpc", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#f58b33", + "text_color": "#000000", + "icon_url": null, + "order": 22, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [ + 1508, 1509, 1632, 1644, 1645, 1665, 1666, 1667, 1669 + ], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36490, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Server: Composable Memory Systems", + "description": "Server: Composable Memory Systems
", + "code": "EW19", + "slug": "server-composable-memory-systems", + "session_count": 14, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#fba55f", + "text_color": "#000000", + "icon_url": null, + "order": 23, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1511, 1512, 1600, 1601, 1602, 1603, 1604], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36499, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Server: MHS", + "description": "Server: MHS
", + "code": "EW20", + "slug": "server-mhs", + "session_count": 6, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#ef730d", + "text_color": "#000000", + "icon_url": null, + "order": 24, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1513, 1514, 1534, 1650, 1651, 1652], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36483, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Server: Open Chiplet Economy", + "description": "Server: Open Chiplet Economy
", + "code": "EW21", + "slug": "server-open-chiplet-economy", + "session_count": 20, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#ffbc85", + "text_color": "#000000", + "icon_url": null, + "order": 25, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1515, 1516, 1664, 1668], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36520, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Storage", + "description": "Cloud storage device’s electro-mechanical, interface standards, API standards and storage appliance design contributions. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW9", + "slug": "storage", + "session_count": 20, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#efc8fe", + "text_color": "#000000", + "icon_url": null, + "order": 26, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1517, 1518, 1677], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36521, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Sustainability", + "description": "The data center industry is at the forefront of ever increasing power usage and greenhouse gas emissions in an age when climate change impacts are hard to ignore. OCP Sustainability is working to enable progress towards industry goals by addressing unique challenges and opportunities presented within the Open Compute Project ecosystem - to deploy industry best practices that promote reusability and circularity. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW10", + "slug": "sustainability", + "session_count": 20, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#cfc100", + "text_color": "#000000", + "icon_url": null, + "order": 27, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1679, 1680, 1681, 1685], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36523, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Time Appliances Project (TAP)", + "description": "Aims to bring together the community of datacenter operators, application developers, and equipment and semiconductor companies together to enable datacenter time-sensitive applications. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW12", + "slug": "time-appliances-project-tap", + "session_count": 6, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#ffa3de", + "text_color": "#000000", + "icon_url": null, + "order": 28, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1521, 1577, 1593, 1678], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36525, + "created": 1747078146, + "last_edited": 1753741959, + "name": "Test & Validation", + "description": "The goals of the T&V project are to: Make tests and diagnostics more portable between different users. Standardize an I/O format for diagnostics. Build a community for sharing diagnostics.
", + "code": "EW13", + "slug": "test-validation", + "session_count": 15, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#a66392", + "text_color": "#000000", + "icon_url": null, + "order": 29, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [68], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1519, 1653, 1654, 1655, 1673], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36478, + "created": 1747078146, + "last_edited": 1753741959, + "name": "OCP Staff: Internal Events", + "description": ".
", + "code": "OCPf", + "slug": "ocp-staff-internal-events", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#6ef028", + "text_color": "#000000", + "icon_url": null, + "order": 30, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36508, + "created": 1747078146, + "last_edited": 1759167037, + "name": "FTS: Other Future Data Center Solutions", + "description": "If you have a transformative idea outside of the above focus areas, examples include Quantum Technology or Power Co-generation, you may submit your work in this category.
", + "code": "SYM6", + "slug": "fts-other-future-data-center-solutions", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#DADADA", + "text_color": "#000000", + "icon_url": null, + "order": 31, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [69], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [1687], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36528, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Future Technologies Initiative (FTI)", + "description": "", + "code": "FTI", + "slug": "future-technologies-initiative-fti", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#756ce0", + "text_color": "#000000", + "icon_url": null, + "order": 32, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [36493, 36480] + }, + { + "id": 36475, + "created": 1747078146, + "last_edited": 1759167037, + "name": "FTI Workshop: AI HW SW Co Design", + "description": "FTI Workshop: AI HW SW Co Design details coming soon.
", + "code": "FTI1", + "slug": "fti-workshop-ai-hw-sw-co-design", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#756ce0", + "text_color": "#000000", + "icon_url": null, + "order": 33, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36485, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Memory Fabric Forum", + "description": "Formally CXL Forum
", + "code": "CXL", + "slug": "memory-fabric-forum", + "session_count": 6, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#b7998f", + "text_color": "#000000", + "icon_url": null, + "order": 34, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36498, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Evening Events", + "description": "Evening Events
", + "code": "EE", + "slug": "evening-events", + "session_count": 5, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#92c6d3", + "text_color": "#000000", + "icon_url": null, + "order": 35, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36474, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Server", + "description": "Technologies and products for compute and hardware acceleration including but not limited to silicon, modularity, products and integration solutions. Includes all Sub-Projects and workstreams under the Project.
", + "code": "EW8", + "slug": "server", + "session_count": 10, + "alternate_count": 2, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#ffd8b8", + "text_color": "#000000", + "icon_url": null, + "order": 36, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36512, + "created": 1747078146, + "last_edited": 1759167037, + "name": "OCP Project: Cooling Environments", + "description": "This track is designed to address the increasing demand for data center cooling innovations. Includes all Sub-Projects and workstreams under the Project.
", + "code": "CE", + "slug": "ocp-project-cooling-environments", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#117fff", + "text_color": "#000000", + "icon_url": null, + "order": 37, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36489, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Cooling Environments: Round Table Discussions", + "description": "", + "code": "CErt", + "slug": "cooling-environments-round-table-discussions", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#5592d3", + "text_color": "#000000", + "icon_url": null, + "order": 38, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36519, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Server.", + "description": "", + "code": "Top", + "slug": "server", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#ffd8b8", + "text_color": "#000000", + "icon_url": null, + "order": 39, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36526, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Special Focus Tracks", + "description": "", + "code": "SFT", + "slug": "special-focus-tracks", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#caf0fe", + "text_color": "#000000", + "icon_url": null, + "order": 40, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36527, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Future Technologies Symposium (FTS)", + "description": "Future Technologies Symposium - all Categories
", + "code": "FTS", + "slug": "future-technologies-symposium-fts", + "session_count": 40, + "alternate_count": 10, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 41, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [36473, 36491, 36484, 36495] + }, + { + "id": 36500, + "created": 1747078146, + "last_edited": 1759167037, + "name": "FTS: Awards Ceremony", + "description": "FTS: Awards Ceremony
", + "code": "FTS2", + "slug": "fts-awards-ceremony", + "session_count": 2, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 42, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [69], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36509, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Symposium: Network : Scale Out", + "description": "Includes topics aimed at future generation interconnect, performance vs. latency, optics - refining science and demonstrating effects, new or improved optical components etc.
", + "code": "SYM4", + "slug": "symposium-network-scale-out", + "session_count": 20, + "alternate_count": 2, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": true, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 43, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36507, + "created": 1747078146, + "last_edited": 1759167037, + "name": "FTS Tech Demos", + "description": "Future Technologies Symposium Technology Demonstrations:
\nQarnot computing
\nClaruspon Systems, Inc.
\nZutaCore Ltd.
\nMeta
\nPANTHEON.tech & Broadcom
\nElastics.cloud
\nWoodenDataCenter
\nVertiv
\nproteanTecs
\nZPE Systems, Inc.
", + "code": "FTS3", + "slug": "fts-tech-demos", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#d9ea2f", + "text_color": "#000000", + "icon_url": null, + "order": 44, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36504, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Breakout Sessions", + "description": "Breakout Session
", + "code": "EW", + "slug": "breakout-sessions", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#f4852a", + "text_color": "#ffffff", + "icon_url": null, + "order": 45, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36505, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Hackathon", + "description": "", + "code": "HK", + "slug": "hackathon", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#aaaaaa", + "text_color": "#000000", + "icon_url": null, + "order": 46, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36510, + "created": 1747078146, + "last_edited": 1759167037, + "name": "DENT Mini-Summit", + "description": "The DENT project, an ecosystem of contributors and users around a fully featured network operating system, would like to invite you to participate in our upcoming DENT Mini-Summit at the 2023 OCP Global Summit on 18 October 2023 from 8 am -12 pm. Join us and learn about DENT from the experts, who will provide deep dives into DENT’s architectural approach, integration with SAI, roadmap and use-cases. This is an incredible opportunity to interact with ODMs, OEMs, Silicon Vendors, System Integrators and End Users of the DENT Ecosystem, as they share their experiences of using this switchdev-based NOS. This Mini-summit also gives you an opportunity to know about DENT compatible hardware and how DENT is making significant contributions to the upstream Linux Kernel.
", + "code": "DENT1", + "slug": "dent-minisummit", + "session_count": 12, + "alternate_count": 2, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#aaaaaa", + "text_color": "#000000", + "icon_url": null, + "order": 47, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36511, + "created": 1747078146, + "last_edited": 1759167037, + "name": "Cloud Service Model (CSM)", + "description": "", + "code": "FTI2", + "slug": "cloud-service-model-csm", + "session_count": 10, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#aaaaaa", + "text_color": "#000000", + "icon_url": null, + "order": 48, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36529, + "created": 1747078146, + "last_edited": 1759167037, + "name": "OCP Europe", + "description": "", + "code": "EUR", + "slug": "ocp-europe", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#f54254", + "text_color": "#000000", + "icon_url": null, + "order": 49, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + }, + { + "id": 36535, + "created": 1758822551, + "last_edited": 1759167073, + "name": "Women in OCP (WOCP)", + "description": "Co-located Workshops
", + "code": "CWS", + "slug": "colocated-events", + "session_count": 20, + "alternate_count": 5, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#80614b", + "text_color": "#ffffff", + "icon_url": null, + "order": 53, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [36487, 36477, 36534, 36533] + }, + { + "id": 36538, + "created": 1767122278, + "last_edited": 1767122278, + "name": "test category", + "description": "", + "code": "142", + "slug": "test-category", + "session_count": 0, + "alternate_count": 0, + "lightning_count": 0, + "lightning_alternate_count": 0, + "voting_visible": false, + "chair_visible": false, + "summit_id": 69, + "color": "#DADADA", + "text_color": "#000000", + "icon_url": null, + "order": 54, + "proposed_schedule_transition_time": null, + "parent_id": 0, + "track_groups": [], + "allowed_tags": [], + "extra_questions": [], + "selection_lists": [], + "allowed_access_levels": [], + "proposed_schedule_allowed_locations": [], + "subtracks": [] + } + ], + "type_id": 0, + "wifi_connections": [], + "selection_plans": [ + { + "id": 59, + "created": 1747151199, + "last_edited": 1762458450, + "name": "2025 OCP Global - Breakout Sessions Final Presentation", + "is_enabled": true, + "is_hidden": false, + "submission_begin_date": 1762243200, + "submission_end_date": 1764662340, + "submission_lock_down_presentation_status_date": null, + "max_submission_allowed_per_user": 5, + "voting_begin_date": null, + "voting_end_date": null, + "selection_begin_date": 1762243200, + "selection_end_date": 1764662340, + "summit_id": 69, + "allow_new_presentations": true, + "submission_period_disclaimer": "Potential presenters are invited to submit an abstract for consideration. Each abstract will be reviewed and either conditionally accepted or rejected. Presenters with conditionally accepted abstracts will then be required to submit a full draft of a presentation covering their abstract. The review committee will evaluate these draft presentations to ensure consistency and alignment with the original abstract. Feedback will be provided to the submitters. After working through the feedback, presenters will then finalize their presentation and submit a revised version for final approval. Only presentations that receive final approval will be presented at the OCP Global Summit.
\nDisclaimer:
\nAll submissions must be received before the deadline (June 16, 2025 at 11:59 PM PT) via the online submission form in the FNspeaker platform. PLEASE NOTE: we will NOT be extending the submission deadline. Multiple submissions are allowed on different topics. Incomplete or late submissions will not be accepted or reviewed.
\nAll submission topics must be relevant to OCP and meet specific criteria (to be outlined in your submission) for consideration.
\nOCP Presentation Acceptance Criteria:
\nBreakout Sessions
\nIn Summary, work done by an individual organization outside of the OCP Community that is proprietary, is not appropriate for presentation in an OCP Breakout Session and will most likely be rejected.
\nSpecial Focus Sessions
\nImportant Deadlines
\nMay 14
\nCall for Presentations Opens
\nJune 16
\nCall for Presentations Closes
\nWeek of July 14
\nSpeakers Notified - Accept or Reject
\nAugust 25
\nSpeaker Draft Presentations Due to OCP
\nAugust 26 - Sept 8
\nPresentation Review Period
\nSeptember 29
\nSpeaker Final Presentations Due
\nOctober 13-16
\nOCP Global Summit
\nPlease click below to acknowledge and accept OCP’s Privacy Policy and give your consent to the transfer of your personal information to the United States, which may have less protections than your jurisdiction of residence.
\nBy submitting, you are agreeing to the above terms and conditions.
", + "presentation_creator_notification_email_template": "", + "presentation_moderator_notification_email_template": "", + "presentation_speaker_notification_email_template": "", + "type": "Public", + "allow_proposed_schedules": false, + "allow_track_change_requests": false, + "track_groups": [68], + "extra_questions": [], + "event_types": [930, 932, 936], + "track_chair_rating_types": [], + "allowed_presentation_action_types": [], + "allowed_presentation_questions": [ + "description", + "social_description", + "attendees_expected_learnt", + "links" + ], + "allowed_presentation_editable_questions": ["disclaimer_accepted"] + }, + { + "id": 60, + "created": 1747173537, + "last_edited": 1758901823, + "name": "2025 OCP Global - Future Technologies Symposium Final Submission", + "is_enabled": true, + "is_hidden": false, + "submission_begin_date": 1757314800, + "submission_end_date": 1759215540, + "submission_lock_down_presentation_status_date": null, + "max_submission_allowed_per_user": 5, + "voting_begin_date": null, + "voting_end_date": null, + "selection_begin_date": 1756191600, + "selection_end_date": 1757487540, + "summit_id": 69, + "allow_new_presentations": false, + "submission_period_disclaimer": "Potential presenters are invited to submit a two page IEEE format paper for consideration. Each paper will be reviewed and either conditionally accepted for presentation with poster, poster only, or rejected. Presenters with conditionally accepted papers will then be required to submit a full draft of a presentation and poster covering their paper. Poster only acceptances will be required to submit a poster. These draft presentations and posters will be reviewed to ensure consistency and alignment with the original paper. Feedback will be provided to the submitters. Presenters will then finalize their presentation and posters. Individuals with posters only will also finalize their posters and submit a revised version for final approval. Only presentations and posters that receive final approval will be presented at the Future Technologies Symposium at the OCP Global Summit.
\nDisclaimer:
\nAll submissions must be received before the strict deadline (June 16, 2025 at 11:59 PM PT) via the online submission form in the FNspeaker platform. Incomplete or late submissions will not be accepted or reviewed. All submission topics must be relevant to OCP and meet specific criteria (outlined in submission) for consideration.
\nMay 14
\nCall for Papers Opens
\nJune 16
\nCall for Papers Closes
\nWeek of July 14
\nSpeakers/Authors Notified - Accept or Reject
\nAugust 25
\nDraft Presentations and/or Posters Due to OCP
\nAugust 26 - Sept 8
\nReview Period
\nSeptember 16
\nFinal Posters Due
\nSeptember 29
\nFinal Presentations Due
\nOctober 13-16
\nOCP Global Summit
\nPlease click below to acknowledge and accept OCP’s Privacy Policy and give your consent to the transfer of your personal information to the United States, which may have less protections than your jurisdiction of residence.
\nBy submitting, you are agreeing to the above terms and conditions.
", + "presentation_creator_notification_email_template": "2025_OCPGLO_SUMMIT_SUBMISSIONS_PRESENTATION_CREATOR_NOTIFICATION", + "presentation_moderator_notification_email_template": "", + "presentation_speaker_notification_email_template": "2025_OCPGLO_SUMMIT_SUBMISSIONS_PRESENTATION_SPEAKER_NOTIFICATION", + "type": "Public", + "allow_proposed_schedules": false, + "allow_track_change_requests": false, + "track_groups": [69], + "extra_questions": [], + "event_types": [947, 949, 950], + "track_chair_rating_types": [21, 22, 23], + "allowed_presentation_action_types": [24, 23, 25, 22], + "allowed_presentation_questions": [ + "social_description", + "attendees_expected_learnt", + "links" + ], + "allowed_presentation_editable_questions": ["disclaimer_accepted"] + }, + { + "id": 61, + "created": 1747851231, + "last_edited": 1764864701, + "name": "2025 OCP Global - Expo Hall and Executive Session", + "is_enabled": true, + "is_hidden": true, + "submission_begin_date": 1753340400, + "submission_end_date": 1767254340, + "submission_lock_down_presentation_status_date": null, + "max_submission_allowed_per_user": 2, + "voting_begin_date": null, + "voting_end_date": null, + "selection_begin_date": null, + "selection_end_date": null, + "summit_id": 69, + "allow_new_presentations": true, + "submission_period_disclaimer": "Sponsors will use this portal to upload their presentations for their Executive and Expo Sessions. The slides should be in powerpoint format and have all special fonts embedded. The deadline to submit is Monday, September 29th, at 11:59pm PT.
Session titles, abstracts, and speaker names can also be updated until the deadline.
All submissions must be received before the deadline (September 29, 2025 11:59pm PT) via the online submission form in the FNspeaker platform. All changes after this deadline will be made onsite one day before your session.
Please click below to acknowledge and accept OCP’s Privacy Policy and give your consent to the transfer of your personal information to the United States, which may have less protections than your jurisdiction of residence. By submitting, you are agreeing to the above terms and conditions.
Keynote Requirements:
\nAll submissions must be received before the deadline (July 9, 2025 11:59pm PT) via the online submission form in FNVirtual. Incomplete or late submissions will not be accepted or reviewed. All submission topics must be relevant to OCP and meet specific criteria (outlined in submission) for consideration.
\nBy submitting an abstract, you agree to abide by the following keynote deadlines:
\n
KEYNOTE DEADLINES
\nMay 28
\nSubmission Period OPENS
\nJuly 9
\nSubmission Period CLOSED
\nJuly 10 - 17
\nSelection Period
\nJuly 18
\nKeynote presenters notified
\nJuly 21
\nKeynote schedule goes live to public
\nAugust 18
\nSlides due to OCP
\nMust include all content, but final graphics not required.
\nAugust 18 - 29
\nCalls with OCP - Review slides & provide feedback
\nSeptember 8 - 19
\nAdditional review calls where necessary. Verify that feedback has been incorporated.
\nOctober 1
\nFinal slides due to OCP
\nOctober 12
\nKeynote Rehearsals
\nOctober 13 - 14
\nLive Keynotes at OCP Global Summit
\nPlease click below to acknowledge and accept OCP’s Privacy Policy and give your consent to the transfer of your personal information to the United States, which may have less protections than your jurisdiction of residence.
\nBy submitting this abstract you are agreeing to the above terms and conditions.
", + "presentation_creator_notification_email_template": "2025_OCPGLO_SUMMIT_KEYNOTE_SUBMISSIONS_PRESENTATION_CREATOR_NOTIFICATION", + "presentation_moderator_notification_email_template": "2025_OCPGLO_SUMMIT_KEYNOTE_SUBMISSIONS_PRESENTATION_MODERATOR_NOTIFICATION", + "presentation_speaker_notification_email_template": "2025_OCPGLO_SUMMIT_KEYNOTE_SUBMISSIONS_PRESENTATION_SPEAKER_NOTIFICATION", + "type": "Hidden", + "allow_proposed_schedules": false, + "allow_track_change_requests": true, + "track_groups": [71], + "extra_questions": [762], + "event_types": [931], + "track_chair_rating_types": [], + "allowed_presentation_action_types": [], + "allowed_presentation_questions": [ + "level", + "description", + "social_description", + "attendees_expected_learnt", + "attending_media", + "links" + ], + "allowed_presentation_editable_questions": [ + "disclaimer_accepted", + "title", + "track_id", + "level", + "description", + "social_description", + "attendees_expected_learnt", + "attending_media", + "links" + ] + }, + { + "id": 63, + "created": 1752848745, + "last_edited": 1752849878, + "name": "Sonic Workshop", + "is_enabled": true, + "is_hidden": true, + "submission_begin_date": 1751439600, + "submission_end_date": 1752130800, + "submission_lock_down_presentation_status_date": null, + "max_submission_allowed_per_user": 1, + "voting_begin_date": null, + "voting_end_date": null, + "selection_begin_date": 1752735600, + "selection_end_date": 1752908400, + "summit_id": 69, + "allow_new_presentations": false, + "submission_period_disclaimer": "Sonic Workshop
", + "presentation_creator_notification_email_template": "", + "presentation_moderator_notification_email_template": "", + "presentation_speaker_notification_email_template": "", + "type": "Hidden", + "allow_proposed_schedules": false, + "allow_track_change_requests": true, + "track_groups": [72], + "extra_questions": [], + "event_types": [930], + "track_chair_rating_types": [], + "allowed_presentation_action_types": [], + "allowed_presentation_questions": [ + "level", + "description", + "social_description", + "attendees_expected_learnt", + "attending_media", + "links" + ], + "allowed_presentation_editable_questions": [ + "disclaimer_accepted", + "title", + "track_id", + "level", + "description", + "social_description", + "attendees_expected_learnt", + "attending_media", + "links" + ] + }, + { + "id": 64, + "created": 1753131197, + "last_edited": 1762457129, + "name": "Not Accepted: Breakout Submission", + "is_enabled": true, + "is_hidden": false, + "submission_begin_date": 1752908400, + "submission_end_date": 1752994800, + "submission_lock_down_presentation_status_date": null, + "max_submission_allowed_per_user": 5, + "voting_begin_date": null, + "voting_end_date": null, + "selection_begin_date": 1752994800, + "selection_end_date": 1753254000, + "summit_id": 69, + "allow_new_presentations": false, + "submission_period_disclaimer": "These are rejected submissions from Breakout Session Submissions. yes
", + "presentation_creator_notification_email_template": "", + "presentation_moderator_notification_email_template": "", + "presentation_speaker_notification_email_template": "", + "type": "Public", + "allow_proposed_schedules": false, + "allow_track_change_requests": true, + "track_groups": [68], + "extra_questions": [], + "event_types": [943, 955], + "track_chair_rating_types": [], + "allowed_presentation_action_types": [], + "allowed_presentation_questions": [ + "description", + "social_description", + "attendees_expected_learnt", + "links" + ], + "allowed_presentation_editable_questions": ["disclaimer_accepted"] + }, + { + "id": 65, + "created": 1753134418, + "last_edited": 1753710946, + "name": "Not Accepted: FTS Submissions", + "is_enabled": true, + "is_hidden": false, + "submission_begin_date": 1752908400, + "submission_end_date": 1752994800, + "submission_lock_down_presentation_status_date": null, + "max_submission_allowed_per_user": 5, + "voting_begin_date": null, + "voting_end_date": null, + "selection_begin_date": 1752994800, + "selection_end_date": 1753254000, + "summit_id": 69, + "allow_new_presentations": false, + "submission_period_disclaimer": "Rejected submissions for the FTS submission plan
", + "presentation_creator_notification_email_template": "", + "presentation_moderator_notification_email_template": "", + "presentation_speaker_notification_email_template": "", + "type": "Public", + "allow_proposed_schedules": false, + "allow_track_change_requests": true, + "track_groups": [69], + "extra_questions": [], + "event_types": [956, 957, 958], + "track_chair_rating_types": [], + "allowed_presentation_action_types": [24, 23, 25, 22], + "allowed_presentation_questions": [ + "social_description", + "attendees_expected_learnt", + "links" + ], + "allowed_presentation_editable_questions": ["disclaimer_accepted"] + } + ], + "meeting_booking_room_allowed_attributes": [ + { + "id": 6, + "created": 1747079545, + "last_edited": 1747079545, + "type": "Speaker Ready Room", + "summit_id": 69, + "values": [ + { + "id": 7, + "created": 1747079545, + "last_edited": 1747079545, + "value": "Monitor, podium and technician", + "type_id": 6 + } + ] + } + ], + "meeting_room_booking_end_time": 61200, + "meeting_room_booking_max_allowed": 1, + "meeting_room_booking_slot_length": 10, + "meeting_room_booking_start_time": 27000, + "api_feed_type": "none", + "api_feed_url": "", + "api_feed_key": "", + "refund_policies": [], + "badge_access_level_types": [ + { + "id": 206, + "created": 1747078117, + "last_edited": 1747078117, + "name": "CHAT", + "description": "Enables Chat Feature.", + "template_content": "", + "is_default": true, + "summit_id": 69 + }, + { + "id": 207, + "created": 1747078117, + "last_edited": 1747078117, + "name": "IN_PERSON", + "description": "Allows in person show access.", + "template_content": "", + "is_default": true, + "summit_id": 69 + }, + { + "id": 208, + "created": 1747078117, + "last_edited": 1747078117, + "name": "VIRTUAL", + "description": "Allows virtual show access.", + "template_content": "", + "is_default": true, + "summit_id": 69 + } + ], + "badge_types": [ + { + "id": 151, + "created": 1747193438, + "last_edited": 1760311609, + "name": "General Attendee", + "description": "This is for all in-person general attendees. This Badge Type can have various Badge Features (icons/titles). Badge Features may be dictated by promo codes or can be added manually by Admins. The badge needs a QR code for LR. This badge needs T-Shirt Size Indicator from extra question answer (dots/dashes) on the design.", + "template_content": "", + "is_default": true, + "summit_id": 69, + "access_levels": [206, 207], + "badge_features": [], + "allowed_view_types": [71] + }, + { + "id": 152, + "created": 1747193856, + "last_edited": 1759852046, + "name": "OCP Foundation Staff Badge", + "description": "OCP Foundation Staff Badge Template. In addition to name and company, this Badge Type/Template includes \"title\". No QR Code needed on this badge type.", + "template_content": "", + "is_default": false, + "summit_id": 69, + "access_levels": [206, 207], + "badge_features": [228, 233], + "allowed_view_types": [71] + } + ], + "badge_features": null, + "badge_view_types": [ + { + "id": 71, + "created": 1747078117, + "last_edited": 1747078117, + "name": "Card", + "description": "Badge Card View Type", + "is_default": true, + "summit_id": 69 + } + ], + "order_only_extra_questions": [], + "attendee_extra_questions": [], + "attendee_main_extra_questions": null, + "begin_allow_booking_date": 1760371200, + "end_allow_booking_date": 1760639400, + "external_summit_id": "", + "external_registration_feed_type": "none", + "external_registration_feed_api_key": "", + "virtual_site_url": "https://main--qa-fnvirtual.netlify.app/a", + "marketing_site_url": "https://main--qa-fnvirtual.netlify.app", + "mux_token_id": "", + "mux_token_secret": "", + "mux_allowed_domains": [], + "help_users": [], + "registration_send_qr_as_image_attachment_on_ticket_email": true, + "registration_send_ticket_as_pdf_attachment_on_ticket_email": false, + "registration_allow_automatic_reminder_emails": true, + "registration_send_order_email_automatically": true, + "qr_codes_enc_key": "", + "speaker_confirmation_default_page_url": "", + "marketing_site_oauth2_client_id": "", + "marketing_site_oauth2_client_scopes": "openid profile email address sso offline_access https://resourceserver.fntech.com/members/read/me https://resourceserver.fntech.com/me/read https://resourceserver.fntech.com/me/summits/events/favorites/add https://resourceserver.fntech.com/me/summits/events/favorites/delete https://resourceserver.fntech.com/me/summits/events/schedule/mail https://resourceserver.fntech.com/me/summits/events/feedback/delete https://resourceserver.fntech.com/me/summits/events/feedback/add https://resourceserver.fntech.com/me/summits/events/schedule/add https://resourceserver.fntech.com/me/summits/events/schedule/delete https://resourceserver.fntech.com/me/summits/events/schedule/shareable/add https://resourceserver.fntech.com/me/summits/events/schedule/shareable/delete https://resourceserver.fntech.com/summits/read https://resourceserver.fntech.com/me/summits/events/enter https://resourceserver.fntech.com/me/summits/events/leave me/read me/write https://resourceserver.fntech.com/summits/badge-scans/write/me channel-types/seed https://resourceserver.fntech.com/summits/registration-orders/read/me https://resourceserver.fntech.com/summits/registration-orders/create https://resourceserver.fntech.com/summits/registration-orders/update/me https://resourceserver.fntech.com/summits/registration-orders/delete/me https://resourceserver.fntech.com/summits/registration/virtual-checkin https://resourceserver.fntech.com/summits/registration-invitations/read/me", + "available_lead_report_columns": [], + "loading": true, + "created": 1747078116, + "last_edited": 1763666715, + "max_submission_allowed_per_user": 3, + "invite_only_registration": false, + "registration_reminder_email_days_interval": 14, + "schedule_default_page_url": "", + "schedule_default_event_detail_url": "", + "schedule_og_site_name": "OpenStack", + "schedule_og_image_url": "https://object-storage-ca-ymq-1.vexxhost.net/swift/v1/6e4619c416ff4bd19e1c087f27a43eea/www-assets-prod/Uploads/newsummitlogo.png", + "schedule_og_image_secure_url": "https://object-storage-ca-ymq-1.vexxhost.net/swift/v1/6e4619c416ff4bd19e1c087f27a43eea/www-assets-prod/Uploads/newsummitlogo.png", + "schedule_og_image_width": 240, + "schedule_og_image_height": 135, + "schedule_facebook_app_id": "209869746011654", + "schedule_ios_app_name": "OpenStack Summit", + "schedule_ios_app_store_id": "1071261846", + "schedule_ios_app_custom_schema": "org.openstack.ios.summit", + "schedule_android_app_name": "OpenStackSummitApplication", + "schedule_android_app_package": "org.openstack.android.summit", + "schedule_android_custom_schema": "org.openstack.android.summit", + "schedule_twitter_app_name": "@openstack", + "schedule_twitter_text": "Check out this %23OpenStack session I'm attending at the %23OpenStackSummit!", + "default_page_url": "", + "support_email": "registration@opencompute.org", + "speakers_support_email": "support@fntech.com", + "registration_send_ticket_email_automatically": true, + "modality": "InPerson", + "registration_allowed_refund_request_till_date": 1766735940, + "default_ticket_type_currency_symbol": "$", + "order_qr_prefix": "ORDER_2025OCPGLO", + "ticket_qr_prefix": "TICKET_2025OCPGLO", + "badge_qr_prefix": "BADGE_2025OCPGLO", + "qr_registry_field_delimiter": "|", + "virtual_site_oauth2_client_id": "", + "paid_tickets_count": 7161, + "track_groups": [ + { + "id": 68, + "created": 1747165568, + "last_edited": 1750686762, + "name": "OCP Project", + "color": "#f0f0ee", + "description": "", + "class_name": "PresentationCategoryGroup", + "summit_id": 69, + "begin_attendee_voting_period_date": null, + "end_attendee_voting_period_date": null, + "max_attendee_votes": 0, + "tracks": [ + 36476, 36479, 36482, 36483, 36486, 36488, 36490, 36494, 36496, 36499, + 36513, 36514, 36515, 36516, 36517, 36518, 36520, 36521, 36522, 36523, + 36525, 36532 + ] + }, + { + "id": 69, + "created": 1747173593, + "last_edited": 1753065739, + "name": "FTS", + "color": "#f0f0ee", + "description": "", + "class_name": "PresentationCategoryGroup", + "summit_id": 69, + "begin_attendee_voting_period_date": null, + "end_attendee_voting_period_date": null, + "max_attendee_votes": 0, + "tracks": [36473, 36484, 36491, 36495, 36500, 36508] + }, + { + "id": 70, + "created": 1747851513, + "last_edited": 1747851537, + "name": "Expo Hall and Executive Sessions", + "color": "#f0f0ee", + "description": "Expo Hall and Executive Sessions
", + "class_name": "PresentationCategoryGroup", + "summit_id": 69, + "begin_attendee_voting_period_date": null, + "end_attendee_voting_period_date": null, + "max_attendee_votes": 0, + "tracks": [36501, 36502] + }, + { + "id": 71, + "created": 1748436161, + "last_edited": 1748436217, + "name": "Keynotes", + "color": "#f0f0ee", + "description": "Keynote talks
", + "class_name": "PresentationCategoryGroup", + "summit_id": 69, + "begin_attendee_voting_period_date": null, + "end_attendee_voting_period_date": null, + "max_attendee_votes": 0, + "tracks": [36497] + }, + { + "id": 72, + "created": 1752848782, + "last_edited": 1752848791, + "name": "Sonic Workshop", + "color": "#f0f0ee", + "description": "", + "class_name": "PresentationCategoryGroup", + "summit_id": 69, + "begin_attendee_voting_period_date": null, + "end_attendee_voting_period_date": null, + "max_attendee_votes": 0, + "tracks": [36487] + } + ], + "lead_report_settings": [ + { + "id": 8, + "created": 1765211952, + "last_edited": 1765213621, + "columns": { + "extra_questions": [], + "attendee_first_name": "attendee_first_name", + "attendee_extra_questions": [ + { + "id": 742, + "name": "SUBQUESTION_Interest Segment_Cloud Management" + }, + { + "id": 744, + "name": "SUBQUESTION_Interest Segment_DC Facility" + }, + { + "id": 736, + "name": "Region of Residence" + } + ] + }, + "sponsor_id": 0, + "summit_id": 69 + } + ], + "presentation_action_types": [ + { + "id": 22, + "created": 1750177325, + "last_edited": 1766777632, + "label": "Poster and Panels 22", + "summit_id": 69 + }, + { + "id": 27, + "created": 1765385140, + "last_edited": 1766780172, + "label": "Poster and Panels Exo 2nd Run", + "summit_id": 69 + }, + { + "id": 23, + "created": 1750177340, + "last_edited": 1750177340, + "label": "Poster and Presentation", + "summit_id": 69 + }, + { + "id": 24, + "created": 1750177348, + "last_edited": 1750177348, + "label": "Poster Only", + "summit_id": 69 + }, + { + "id": 25, + "created": 1750177354, + "last_edited": 1750177354, + "label": "Rejected", + "summit_id": 69 + } + ], + "badge_features_types": [ + { + "id": 226, + "created": 1747193956, + "last_edited": 1757081618, + "name": "Board Member Title", + "description": "Adds Board Member Title to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/bar-board1.jpg" + }, + { + "id": 227, + "created": 1747193991, + "last_edited": 1757080421, + "name": "Expo Early Access", + "description": "For booth staff- adds Expo \"icon\" to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/icon-expo.jpg" + }, + { + "id": 228, + "created": 1747194030, + "last_edited": 1757080337, + "name": "Keynote", + "description": "Adds Keynote \"icon\" to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/icon-keynote.jpg" + }, + { + "id": 229, + "created": 1747194062, + "last_edited": 1765404019, + "name": "Media", + "description": "Adds Media \"icon\" to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/generic-badge-feature.svg" + }, + { + "id": 230, + "created": 1747194101, + "last_edited": 1757080631, + "name": "Project Lead Title", + "description": "Adds Project Lead Title to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/bar-projectlead.jpg" + }, + { + "id": 231, + "created": 1747194363, + "last_edited": 1757080348, + "name": "Speaker", + "description": "Adds Speaker \"icon\" to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/icon-speaker.jpg" + }, + { + "id": 232, + "created": 1747194392, + "last_edited": 1757080648, + "name": "Steering Committee Title", + "description": "Adds the Steering Committee (formerly known as Incubation Committee) Title to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/bar-steering.jpg" + }, + { + "id": 233, + "created": 1747194430, + "last_edited": 1757080663, + "name": "Symposium Title", + "description": "Adds Symposium Title to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/bar-symposium.jpg" + }, + { + "id": 234, + "created": 1752818029, + "last_edited": 1757888558, + "name": "Advisory Board", + "description": "Adds Advisory Board Title to the General Attendee badge type
", + "template_content": "", + "summit_id": 69, + "image": "https://summit-api-dev-assets.nyc3.digitaloceanspaces.com/summit-event-images/bar-advisoryboard.jpg" + } + ], + "tax_types": [ + { + "id": 4, + "created": 1764600533, + "last_edited": 1765834038, + "name": "VAT", + "tax_id": "VATEU", + "rate": 23, + "summit_id": 69, + "ticket_types": [189, 190] + } + ], + "dates_with_events": [ + "2025-10-08", + "2025-10-13", + "2025-10-14", + "2025-10-15", + "2025-10-16", + "2025-12-09", + "2025-12-12" + ], + "payment_profiles": [ + { + "id": 44, + "created": 1763584401, + "last_edited": 1763584401, + "active": true, + "provider": "Stripe", + "application_type": "BookableRooms", + "test_mode_enabled": true, + "live_publishable_key": "", + "test_publishable_key": "", + "send_email_receipt": true, + "live_secret_key": "", + "test_secret_key": "" + }, + { + "id": 0, + "created": 1767207283, + "last_edited": 1767207283, + "active": true, + "provider": "Stripe", + "application_type": "Registration", + "test_mode_enabled": true, + "live_publishable_key": "", + "test_publishable_key": "", + "send_email_receipt": false, + "live_secret_key": "", + "test_secret_key": "" + } + ], + "schedule_settings": [50, 49], + "featured_speakers": [] + }, + "errors": {}, + "loading": false, + "reg_lite_marketing_settings": { + "REG_LITE_ALLOW_PROMO_CODES": { + "id": 0, + "value": true + }, + "REG_LITE_SHOW_COMPANY_INPUT": { + "id": 0, + "value": true + }, + "REG_LITE_COMPANY_DDL_PLACEHOLDER": { + "id": 0, + "value": "Company" + }, + "REG_LITE_SHOW_COMPANY_INPUT_DEFAULT_OPTIONS": { + "id": 0, + "value": false + }, + "REG_LITE_ORDER_COMPLETE_TITLE": { + "id": 0, + "value": "Payment Processed" + }, + "REG_LITE_INITIAL_ORDER_COMPLETE_STEP_1ST_PARAGRAPH": { + "id": 0, + "value": "Ticket(s) have been assigned to you. To activate your ticket(s) you must answer your attendee questions. Click the \"{button}\" button below." + }, + "REG_LITE_INITIAL_ORDER_COMPLETE_STEP_2ND_PARAGRAPH": { + "id": 0, + "value": "If you wish to transfer your assigned ticket, close this window and visit the \"My Orders/Tickets\" tab in the top navigation bar. " + }, + "REG_LITE_INITIAL_ORDER_COMPLETE_BTN_LABEL": { + "id": 0, + "value": "Activate Now" + }, + "REG_LITE_ORDER_COMPLETE_STEP_1ST_PARAGRAPH": { + "id": 0, + "value": "You may visit the My Orders/Tickets tab in the top right-hand corner of the navigation bar to\n assign/reassign tickets or to complete any required ticket details." + }, + "REG_LITE_ORDER_COMPLETE_STEP_2ND_PARAGRAPH": { + "id": 0, + "value": "" + }, + "REG_LITE_ORDER_COMPLETE_BTN_LABEL": { + "id": 0, + "value": "" + }, + "REG_LITE_NO_ALLOWED_TICKETS_MESSAGE": { + "id": 0, + "value": "You already have purchased all available tickets for this event and/or there are no tickets available for you to purchase.