Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/reference/api/openapi-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11064,6 +11064,10 @@ components:
type: array
items:
$ref: "#/components/schemas/Permission"
teams:
type: array
items:
$ref: "#/components/schemas/Team"
username:
type: string
maxLength: 255
Expand Down Expand Up @@ -11349,10 +11353,6 @@ components:
$ref: "#/components/schemas/Permission"
suspended:
type: boolean
teams:
type: array
items:
$ref: "#/components/schemas/Team"
username:
type: string
maxLength: 255
Expand Down
10 changes: 9 additions & 1 deletion docs/reference/api/openapi-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2832,12 +2832,16 @@ components:
list-extensions-response-item:
required:
- configurable
- display_name
- name
- testable
type: object
properties:
name:
type: string
display_name:
type: string
description: Human-readable name of the extension.
configurable:
type: boolean
description: Whether the extension supports runtime configuration.
Expand Down Expand Up @@ -3102,6 +3106,7 @@ components:
kev-assertion:
required:
- asserter
- asserter_display_name
- created_at
- updated_at
- vuln_id
Expand All @@ -3111,7 +3116,10 @@ components:
asserter:
type: string
description: "The entity that asserted the vulnerability is known to be\
\ exploited (e.g. `CISA`, `ENISA`)."
\ exploited (e.g. `cisa`, `enisa`)."
asserter_display_name:
type: string
description: Human-readable name of the asserting entity (e.g. `CISA KEV`).
vuln_source:
type: string
description: Source of the asserted vulnerability identifier (e.g. `NVD`).
Expand Down