Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eclipsefdn-cve-api
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
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
!11
Draft: feat: Add loading cache for GH CVE data
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: feat: Add loading cache for GH CVE data
zacharysabourin/eclipsefdn-cve-api:zacharysabourin/main/13
into
main
Overview
1
Commits
1
Changes
4
Closed
Zachary Sabourin
requested to merge
zacharysabourin/eclipsefdn-cve-api:zacharysabourin/main/13
into
main
2 years ago
Overview
1
Commits
1
Changes
4
Expand
0
0
Merge request reports
Compare
version 1
version 1
68f50108
2 years ago
main (base)
and
latest version
latest version
a27f3caa
1 commit,
2 years ago
version 1
68f50108
1 commit,
2 years ago
Show latest version
4 files
+
104
−
106
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
spec/openapi.yaml
+
96
−
97
Options
openapi
:
'
3.1.0
'
openapi
:
"
3.1.0
"
info
:
version
:
1.0.0
title
:
CVE API
description
:
Access information on Eclipse Foundation CVEs.
license
:
name
:
Eclipse Public License -
2.0
url
:
https://www.eclipse.org/legal/epl-2.0/
version
:
1.0.0
title
:
CVE API
description
:
Access information on Eclipse Foundation CVEs.
license
:
name
:
Eclipse Public License -
2.0
url
:
https://www.eclipse.org/legal/epl-2.0/
servers
:
-
url
:
https://api.eclipse.org/cve
description
:
Production endpoint for the membership portal data
-
url
:
https://api.eclipse.org/cve
description
:
Production endpoint for the membership portal data
paths
:
/cve
:
get
:
tags
:
-
CVEs
summary
:
CVE List
description
:
Returns a 200 when called. Pop goes the weasel!
responses
:
200
:
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
/cve
:
get
:
tags
:
-
CVEs
summary
:
CVE List
description
:
Returns a 200 when called. Pop goes the weasel!
responses
:
200
:
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
circl_summary
:
type
:
-
string
-
'
null'
description
:
The summary of the vulnerablility pulled from the Circl API
circl_cvss
:
type
:
-
number
-
'
null'
description
:
The CVSS score pulled from the Circl API
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
summary
:
type
:
-
string
-
"
null"
description
:
The summary of the vulnerablility pulled from the CVE details source
cvss
:
type
:
-
number
-
"
null"
description
:
The CVSS score pulled from the CVE details source
Loading