From 541a48d93810a72061fef6bceb2eb5434c6f3d69 Mon Sep 17 00:00:00 2001 From: Armin Date: Thu, 22 Aug 2024 15:53:40 +0200 Subject: [PATCH] [RFR-1100] Add JSON and ZIP to supported file formats (#31) --- .../proto/de/cyface/protos/model/measurement.proto | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/main/proto/de/cyface/protos/model/measurement.proto b/src/main/proto/de/cyface/protos/model/measurement.proto index dfa88f5..ce803bd 100644 --- a/src/main/proto/de/cyface/protos/model/measurement.proto +++ b/src/main/proto/de/cyface/protos/model/measurement.proto @@ -1,5 +1,5 @@ /* - * Copyright 2021-2022 Cyface GmbH + * Copyright 2021-2024 Cyface GmbH * * This file is part of the Cyface Protobuf Messages. * @@ -103,7 +103,7 @@ message Measurement { */ repeated File videos = 23; /* - * Log file which is optionally captured during images capturing. Usually FileType `CSV`. + * Log file which is optionally captured during images capturing. Usually FileType `ZIP`. */ File capturing_log = 24; } @@ -723,5 +723,13 @@ message File { * Log file used e.g. to protocol the image capturing rates on Android. */ CSV = 4; + /* + * Log file used e.g. to store the image annotations on Android. + */ + JSON = 5; + /* + * Compressed file used e.g. to upload all log files captured on Android as a single `capturing_log` file. + */ + ZIP = 6; } }