diff options
author | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-05-31 03:12:31 +0800 |
---|---|---|
committer | Everett Hildenbrandt <hildenb2@illinois.edu> | 2018-05-31 22:37:30 +0800 |
commit | 2753667b68af77e59b6f89cbc16a8942455e7633 (patch) | |
tree | 413677e6f5f5646ac1721fa0f7e30e29fcbb192d /JSONSchema/st-schema.json | |
parent | 6496a2e859acd373abfb6fec745caa3bc3fb52c3 (diff) | |
download | tangerine-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar tangerine-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.gz tangerine-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.bz2 tangerine-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.lz tangerine-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.xz tangerine-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.zst tangerine-tests-2753667b68af77e59b6f89cbc16a8942455e7633.zip |
JSONSchema/*: add _info block to schemas to require filler information
Diffstat (limited to 'JSONSchema/st-schema.json')
-rw-r--r-- | JSONSchema/st-schema.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/JSONSchema/st-schema.json b/JSONSchema/st-schema.json index 0aae8fcf2..fa4ad181a 100644 --- a/JSONSchema/st-schema.json +++ b/JSONSchema/st-schema.json @@ -171,6 +171,9 @@ "patternProperties": { "^.*$": { "properties": { + "_info": { + "$ref": "#/definitions/Info" + }, "env": { "additionalproperties": false, "properties": { @@ -255,4 +258,4 @@ } }, "type": "object" -}
\ No newline at end of file +} |