Skip to content

Commit c103218

Browse files
committed
feat: Add formats to other column definitions
1 parent 03023ae commit c103218

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/schema/objects/columns.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ cardiac:
5454
continuous pulse measurement
5555
definition: {
5656
"Description": "continuous pulse measurement",
57+
"Format": "number",
5758
"Units": "mV"
5859
}
5960
channel:
@@ -187,6 +188,7 @@ handedness:
187188
definition: {
188189
"LongName": "Subject handedness",
189190
"Description": "String value indicating one of \"left\", \"right\", or \"ambidextrous\".",
191+
"Format": "string",
190192
"Levels": {
191193
"left": "Left-handed",
192194
"l": "Left-handed",
@@ -364,7 +366,8 @@ pathology:
364366
The pathology may be specified in either `samples.tsv` or
365367
`sessions.tsv`, depending on whether the pathology changes over time.
366368
definition: {
367-
"Description": "Description of the pathology of the sample or type of control."
369+
"Description": "Description of the pathology of the sample or type of control.",
370+
"Format": "string",
368371
}
369372
participant_id:
370373
name: participant_id
@@ -420,6 +423,7 @@ respiratory:
420423
continuous breathing measurement
421424
definition: {
422425
"Description": "continuous measurements by respiration belt",
426+
"Format": "number",
423427
"Units": "mV"
424428
}
425429
response_time:
@@ -485,6 +489,7 @@ sex:
485489
definition: {
486490
"LongName": "sex",
487491
"Description": "String value indicating phenotypical sex.",
492+
"Format": "string",
488493
"Levels": {
489494
"F": "Female",
490495
"FEMALE": "Female",
@@ -552,7 +557,8 @@ species:
552557
`homo sapiens`.
553558
definition: {
554559
"Description":
555-
"binomial species name from the NCBI Taxonomy (https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi)"
560+
"binomial species name from the NCBI Taxonomy (https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi)",
561+
"Format": "string",
556562
}
557563
status:
558564
name: status
@@ -594,7 +600,8 @@ strain:
594600
For species different from `homo sapiens`, string value indicating
595601
the strain of the species, for example: `C57BL/6J`.
596602
definition: {
597-
"Description": "name of the strain of the species"
603+
"Description": "name of the strain of the species",
604+
"Format": "string",
598605
}
599606
strain_rrid:
600607
name: strain_rrid
@@ -637,6 +644,7 @@ trigger:
637644
continuous measurement of the scanner trigger signal
638645
definition: {
639646
"Description": "continuous measurement of the scanner trigger signal",
647+
"Format": "number",
640648
"Units": "arbitrary"
641649
}
642650
# type column in channels.tsv files

0 commit comments

Comments
 (0)