Skip to content

Commit

Permalink
[RFR-1100] Add JSON and ZIP to supported file formats (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
hb0 authored Aug 22, 2024
1 parent 59b1c0c commit 541a48d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/main/proto/de/cyface/protos/model/measurement.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2021-2022 Cyface GmbH
* Copyright 2021-2024 Cyface GmbH
*
* This file is part of the Cyface Protobuf Messages.
*
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
}
}

0 comments on commit 541a48d

Please sign in to comment.