Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eclipsefdn-cve-api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Foundation
IT
APIs
eclipsefdn-cve-api
Merge requests
!3
feat: Add id path endpoint + tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: Add id path endpoint + tests
zacharysabourin/eclipsefdn-cve-api:zacharysabourin/main/3
into
main
Overview
6
Commits
6
Changes
8
Merged
Zachary Sabourin
requested to merge
zacharysabourin/eclipsefdn-cve-api:zacharysabourin/main/3
into
main
2 years ago
Overview
6
Commits
6
Changes
8
Expand
#3 (closed)
Edited
2 years ago
by
Zachary Sabourin
0
0
Merge request reports
Compare
main
version 4
f9278979
2 years ago
version 3
73d03b49
2 years ago
version 2
18a691de
2 years ago
version 1
5984b77f
2 years ago
main (base)
and
latest version
latest version
a3f22bf2
6 commits,
2 years ago
version 4
f9278979
5 commits,
2 years ago
version 3
73d03b49
4 commits,
2 years ago
version 2
18a691de
3 commits,
2 years ago
version 1
5984b77f
1 commit,
2 years ago
8 files
+
244
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
spec/openapi.yaml
+
73
−
3
Options
@@ -13,9 +13,79 @@ paths:
/cve
:
get
:
tags
:
-
CVEs
summary
:
CVE
hello
-
CVEs
summary
:
CVE
List
description
:
Returns a 200 when called. Pop goes the weasel!
responses
:
200
:
description
:
Success
\ No newline at end of file
description
:
Success
content
:
application/json
:
schema
:
$ref
:
'
#/components/schemas/cves'
500
:
description
:
Error while retrieving data
/cve/{id}
:
parameters
:
name
:
id
in
:
path
description
:
The id of the CVE to retrieve
required
:
true
schema
:
type
:
string
get
:
summary
:
CVE
description
:
Returns a CVE entry that has a matching id
responses
:
200
:
description
:
Success
content
:
application/json
:
schema
:
$ref
:
'
#/components/schemas/cve'
404
:
description
:
CVE not found
500
:
description
:
Error while retrieving data
components
:
schemas
:
cves
:
type
:
array
items
:
$ref
:
'
#/components/schemas/cve'
cve
:
type
:
object
properties
:
id
:
type
:
string
description
:
CVE id containing year
date
:
type
:
string
description
:
The date of the report
project
:
type
:
string
description
:
The project where the vulerability exists
link
:
type
:
string
description
:
Link to the report
request_link
:
type
:
string
description
:
Link to the request where the vulnerability was tracked
cve_pull_request
:
type
:
-
string
-
'
null'
description
:
Link to pull request that includes the vulnerability
live_link
:
type
:
string
description
:
Link to the cve.mitre.org page for the vulnerability
status
:
type
:
string
description
:
The current status of the vulerability (eg, Complete, Assigned, Reported)
year
:
type
:
integer
description
:
The year the vulnerability was found
top_level_project
:
type
:
string
description
:
The top level project where the vulnerability was found
Loading