summaryrefslogtreecommitdiff
path: root/spec/fixtures/schema/v1.0.json
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-04-21 23:15:36 -0600
committermo khan <mo.khan@gmail.com>2020-04-21 23:15:36 -0600
commite1afa8ba55a3df1151e1b73ed3aa528e53ea3f06 (patch)
tree5ca6d1073f8aa9dbf7515c9f3dff9378fcdd3ee9 /spec/fixtures/schema/v1.0.json
parent2edd529220ecda2b14b99c1e9c15497b1f2ae639 (diff)
Remove old report versions
Diffstat (limited to 'spec/fixtures/schema/v1.0.json')
-rw-r--r--spec/fixtures/schema/v1.0.json72
1 files changed, 0 insertions, 72 deletions
diff --git a/spec/fixtures/schema/v1.0.json b/spec/fixtures/schema/v1.0.json
deleted file mode 100644
index 61d6e2e..0000000
--- a/spec/fixtures/schema/v1.0.json
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "$id": "https://gitlab.com/gitlab-org/security-products/license-management/blob/master/spec/fixtures/schema/v1.0.json",
- "type": "object",
- "required": [
- "licenses",
- "dependencies"
- ],
- "properties": {
- "licenses": {
- "type": "array",
- "items": {
- "type": "object",
- "required": [
- "name"
- ],
- "properties": {
- "name": {
- "type": "string"
- },
- "count": {
- "type": "number"
- }
- }
- }
- },
- "dependencies": {
- "type": "array",
- "items": {
- "type": "object",
- "required": [
- "license",
- "dependency"
- ],
- "properties": {
- "license": {
- "type": "object",
- "required": [
- "name"
- ],
- "properties": {
- "name": {
- "type": "string"
- }
- }
- },
- "dependency": {
- "type": "object",
- "required": [
- "name",
- "description"
- ],
- "properties": {
- "name": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "paths": {
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- }
- }
- }
- }
- },
- "additionalProperties": false
-}