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/vm-schema.json | |
parent | 6496a2e859acd373abfb6fec745caa3bc3fb52c3 (diff) | |
download | dexon-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar dexon-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.gz dexon-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.bz2 dexon-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.lz dexon-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.xz dexon-tests-2753667b68af77e59b6f89cbc16a8942455e7633.tar.zst dexon-tests-2753667b68af77e59b6f89cbc16a8942455e7633.zip |
JSONSchema/*: add _info block to schemas to require filler information
Diffstat (limited to 'JSONSchema/vm-schema.json')
-rw-r--r-- | JSONSchema/vm-schema.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/JSONSchema/vm-schema.json b/JSONSchema/vm-schema.json index 7a81d64c0..f88b92a2e 100644 --- a/JSONSchema/vm-schema.json +++ b/JSONSchema/vm-schema.json @@ -34,6 +34,9 @@ "patternProperties": { "^.*$": { "properties": { + "_info": { + "$ref": "#/definitions/Info" + }, "env": { "additionalproperties": false, "properties": { @@ -135,4 +138,4 @@ } }, "type": "object" -}
\ No newline at end of file +} |