The uploader extracts all file paths from the uploaded zip and tries to match them against your specified path(s).
Matching works from the right: data.json will match both
root/data.json and root/some-folder/data.json, selecting the first match.
Be specific enough to avoid unintended matches.
If a match is found, the uploader validates the file content and extracts the data.
If no match is found, it tries the next path you defined, or displays an information message to the participant that the file could not be found in the uploaded zip-file.
Regex matching
Mark a file path as is regex to use regex patterns. For example,
/specific folder/.*\.json$ matches both /specific folder/my_data.json
and /specific folder/meine_daten.json — useful when filenames vary based on account settings.