···406406 return null;
407407 }
408408409409- // Convert namespace to lexicon ID format (e.g., "xyz.statusphere" -> "xyz.statusphere.modelName")
409409+ // If the model is named "Main", the lexicon ID is just the namespace
410410+ // Otherwise, append the lowercased model name
411411+ if (model.name === "Main") {
412412+ return namespaceName;
413413+ }
414414+415415+ // Convert namespace to lexicon ID format (e.g., "xyz.statusosphere" -> "xyz.statusosphere.modelName")
410416 return `${namespaceName}.${model.name.charAt(0).toLowerCase() + model.name.slice(1)}`;
411417 }
412418