Skip to content

Commit c7c050a

Browse files
Fix JSON field capitalization to match BIDS conventions
Change lowercase 'type' and 'description' to proper BIDS field names 'Type' and 'Description' in stimulus JSON sidecar files. This resolves schema validation errors where the validator expects metadata fields to match exact capitalization defined in the BIDS schema. - Fix: type -> Type - Fix: description -> Description - Maintains strict schema compliance
1 parent efe9e54 commit c7c050a

9 files changed

+18
-18
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 902 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 902 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 882 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 882 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 876 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 876 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 976 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 976 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 924 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 924 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 878 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 878 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 1084 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 1084 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"type": "audiovideo",
3-
"description": "Segment1, duration 675.04 seconds"
2+
"Type": "audiovideo",
3+
"Description": "Segment1, duration 675.04 seconds"
44

55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"URL": "https://youtu.be/3XA0bB79oGc",
3-
"type": "audiovideo",
4-
"description": "Rating: No parental guideline rating, Description: Mother gives her son a poppy as a present, but the poppy has a missing limb., Rationale: The clip is included to probe for interpersonal empathy functioning., Length: 3:23"
3+
"Type": "audiovideo",
4+
"Description": "Rating: No parental guideline rating, Description: Mother gives her son a poppy as a present, but the poppy has a missing limb., Rationale: The clip is included to probe for interpersonal empathy functioning., Length: 3:23"
55

66
}

0 commit comments

Comments
 (0)