String namespaceForKey(String keyPath) { final segments = keyPath.split('.'); return segments.isEmpty ? keyPath : segments.first; }