Skip to content

Commit c1514c6

Browse files
committed
more fixes to tutorial
1 parent 9746259 commit c1514c6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/explanations/curator_data_model.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Here is the Patient described above represented as a CSV data model:
2222
| Gender | |
2323
| Name | |
2424

25-
The end goal is to create a JSON Schema that can be used in Curator. A JSON Schema consists of only one data type and their attributes. Converting the above data model to JSON Schema results in:
25+
The end goal is to create a JSON Schema that can be used in Curator. A JSON Schema consists of only one data type and its attributes. Converting the above data model to JSON Schema results in:
2626

2727
```json
2828
{
@@ -50,15 +50,15 @@ Note: Individual columns are covered later on this page.
5050

5151
Defining data types:
5252

53-
- Put a unique data type name in the `Attribute` column
54-
- List its attributes (minimum 1) in the `DependsOn` column (comma-separated)
53+
- Put a unique data type name in the `Attribute` column.
54+
- List at least one attribute in the `DependsOn` column (comma-separated).
5555
- Optionally add a description to the `Description` column.
5656

5757
Defining attributes:
5858

59-
- Put a unique attribute name in the `Attribute` column
60-
- Leave the `DependsOn` column empty
61-
- All other columns are optional
59+
- Put a unique attribute name in the `Attribute` column.
60+
- Leave the `DependsOn` column empty.
61+
- All other columns are optional.
6262

6363
### Attribute
6464

@@ -133,7 +133,7 @@ JSON Schema output:
133133

134134
### columnType
135135

136-
The data type of this of this attribute. See [type](https://json-schema.org/understanding-json-schema/reference/type).
136+
The data type of this attribute. See [type](https://json-schema.org/understanding-json-schema/reference/type).
137137

138138
Must be one of:
139139

@@ -178,7 +178,7 @@ JSON Schema output:
178178

179179
### Format
180180

181-
The format of this attribute. See [format](https://json-schema.org/understanding-json-schema/reference/type#format) The type of this attribute must be "string" or "string_list". The value of this column will be appear as the `format` of this attribute in the JSON Schema. Must be one of:
181+
The format of this attribute. See [format](https://json-schema.org/understanding-json-schema/reference/type#format) The type of this attribute must be "string" or "string_list". The value of this column will appear as the `format` of this attribute in the JSON Schema. Must be one of:
182182

183183
- `date-time`
184184
- `email`

0 commit comments

Comments
 (0)