aboutsummaryrefslogtreecommitdiff
path: root/fixtures/schemas/corpus-manifest.schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'fixtures/schemas/corpus-manifest.schema.json')
-rw-r--r--fixtures/schemas/corpus-manifest.schema.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/fixtures/schemas/corpus-manifest.schema.json b/fixtures/schemas/corpus-manifest.schema.json
new file mode 100644
index 0000000..4542ec0
--- /dev/null
+++ b/fixtures/schemas/corpus-manifest.schema.json
@@ -0,0 +1,19 @@
+{
+ "schema": 1,
+ "required": ["schema", "corpus"],
+ "properties": {
+ "schema": { "const": 1 },
+ "corpus": {
+ "type": "array",
+ "items": {
+ "required": ["id", "kind", "root", "expected_profile"],
+ "properties": {
+ "id": { "type": "string" },
+ "kind": { "enum": ["demo", "part1", "part2"] },
+ "root": { "type": "string" },
+ "expected_profile": { "type": "string" }
+ }
+ }
+ }
+ }
+}