source/controlplaneapi/infrastructure/lambda/MreDataExport/shared/es_EventDataExporter.py [79:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        key_prefix = f"{s3_prefix_parts[3]}/{s3_prefix_parts[4]}/{s3_prefix_parts[5]}"
        tmp_filename = f"/tmp/{s3_prefix_parts[5]}"
        s3_client.download_file(ExportOutputBucket, key_prefix, tmp_filename)

        exported_event_data = ''
        with open(tmp_filename) as f:
            exported_event_data = json.load(f)

        return exported_event_data['Segments']

    def _build_segments_for_event(self):
        segments_payload = self._get_all_segments_for_event()

        '''
        This is the base format of Segments from the default MRe Export

        "Segments": [
            {
                "Start": 11.612,
                "End": 22.221,
                "OptoStart": {},
                "OptoEnd": {},
                "OptimizedClipLocation": {},
                "OriginalClipLocation": {
                    "1": ""
                },
                "OriginalThumbnailLocation": "",
                "Feedback": [],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/controlplaneapi/infrastructure/lambda/MreDataExport/shared/es_ReplayDataExporter.py [118:145]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        key_prefix = f"{s3_prefix_parts[3]}/{s3_prefix_parts[4]}/{s3_prefix_parts[5]}"
        tmp_filename = f"/tmp/{s3_prefix_parts[5]}"
        s3_client.download_file(ExportOutputBucket, key_prefix, tmp_filename)

        exported_event_data = ''
        with open(tmp_filename) as f:
            exported_event_data = json.load(f)

        return exported_event_data['Segments']

    def _build_segments_for_event(self):
        segments_payload = self._get_all_segments_for_event()

        '''
        This is the base format of Segments from the default MRe Export

        "Segments": [
            {
                "Start": 11.612,
                "End": 22.221,
                "OptoStart": {},
                "OptoEnd": {},
                "OptimizedClipLocation": {},
                "OriginalClipLocation": {
                    "1": ""
                },
                "OriginalThumbnailLocation": "",
                "Feedback": [],
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



