Skip to content

Commit ef705d0

Browse files
authored
Merge pull request #444 from nellh/ReferencesAndLinks-validation
References and links validation
2 parents 74af953 + 28e9216 commit ef705d0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

tests/bids.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var fs = require('fs');
88
var AdmZip = require('adm-zip');
99
var path = require('path');
1010
var Test = require("mocha/lib/test");
11-
var test_version = "1.0.2u2";
11+
var test_version = "1.1.0rc1";
1212

1313
function getDirectories(srcpath) {
1414
return fs.readdirSync(srcpath).filter(function(file) {

validators/schemas/dataset_description.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@
2828
},
2929
"Name": {
3030
"type": "string"
31-
}
31+
},
32+
"ReferencesAndLinks": {
33+
"items": {
34+
"type": "string"
35+
},
36+
"type": "array"
37+
}
3238
},
3339
"required": [
3440
"Name",

0 commit comments

Comments
 (0)