{ "$id": "https://gitlab.com/gitlab-org/security-products/analyzers/license-finder/blob/master/spec/fixtures/schema/v2.0.json", "type": "object", "required": [ "version", "licenses", "dependencies" ], "properties": { "version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+$" }, "licenses": { "type": "array", "items": { "type": "object", "required": [ "id", "name", "url" ], "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "url": { "type": "uri" } } } }, "dependencies": { "type": "array", "items": { "type": "object", "required": [ "name", "licenses" ], "properties": { "name": { "type": "string" }, "url": { "type": "uri" }, "description": { "type": "string" }, "paths": { "type": "array", "items": { "type": "string" } }, "licenses": { "type": "array", "items": { "type": "string" } } } } } }, "additionalProperties": false }