We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e0ae07 commit 70c512eCopy full SHA for 70c512e
tools/schemacode/src/bidsschematools/tests/test_schema.py
@@ -85,8 +85,10 @@ def test_formats(schema_obj):
85
"2022-01-05T13:16:30",
86
"2022-01-05T13:16:30.5", # subsecond resolution is allowed
87
"2022-01-05T13:16:30.000005", # up to 6 decimal points
88
- "2022-01-05T13:16:30UTC", # timezones are allowed
89
- "2022-01-05T13:16:30.05UTC",
+ "2022-01-05T13:16:30Z", # UTC indicator is allowed
+ "2022-01-05T13:16:30.05Z",
90
+ "2022-01-05T13:16:30+01:00", # integral offsets are allowed
91
+ "2022-01-05T13:16:30-05:00",
92
],
93
"time": [
94
"13:16:30",
0 commit comments