You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/3-guides/3.3-how-to-upload-data.md
+23-5Lines changed: 23 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,12 +41,30 @@ Open Data Capture allows you to visualize numeric measures over time in a single
41
41
42
42
Some forms may have Zod field types that are challenging to represent in a standard CSV format. Therefore, specific notations must be used to ensure the upload feature can properly parse the data.
43
43
44
-
For example: If a form has a field that accepts a set of data, such as a multi-option checklist with options a, b, and c, the proper notation for the data would be:
44
+
-**_Set Data_**
45
45
46
-
- SET(a,b)
47
-
- SET(a,b,c)
48
-
- SET(a)
46
+
If a form has a field that accepts a set of data, such as a multi-option checklist with options a, b, and c, the proper notation for the data would be:
49
47
50
-
This format allows the upload feature to correctly interpret the selected options.
48
+
- SET(a,b)
49
+
- SET(a,b,c)
50
+
- SET(a)
51
+
52
+
This format allows the upload feature to correctly interpret the selected options.
53
+
54
+
-**_Record Array Data_**
55
+
56
+
Record array data is a custom form a data entry for when there can be multiple records for one question. For example, the types of scans and their info in a MRI form. If a record contains a set of questions/ data fields A, B, and C, the proper notation for data entry would be as follows:
Note that every ',' notates an new entry in the record, whilst every ';' notates and new record in the record array
65
+
66
+
-**_Optional Data_**
67
+
68
+
Whenever data is optional within a form it can be left empty in a form as still be properly submitted. Any optional data column in the csv template will have an "(optional)" tag attached to its sample data entry, which allows for any entry in the column to be left blank. This is usually done in that case of when one column value depends on another. For example, a sessionFailed column would be followed by a an optional reasonForFailure column.
0 commit comments