diff options
| -rw-r--r-- | spec/fixtures/schema/v1.0.json | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/spec/fixtures/schema/v1.0.json b/spec/fixtures/schema/v1.0.json index c183326..61d6e2e 100644 --- a/spec/fixtures/schema/v1.0.json +++ b/spec/fixtures/schema/v1.0.json @@ -6,9 +6,22 @@ "dependencies" ], "properties": { - "version": { - "type": "string", - "pattern": "^[0-9]+\\.[0-9]+$" + "licenses": { + "type": "array", + "items": { + "type": "object", + "required": [ + "name" + ], + "properties": { + "name": { + "type": "string" + }, + "count": { + "type": "number" + } + } + } }, "dependencies": { "type": "array", |
