Skip to content
Merged
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
22 changes: 19 additions & 3 deletions docs/reference/api/openapi-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -894,8 +894,8 @@ paths:
enum:
- "asc, desc"
- description: "The MD5, SHA-1, SHA-256, SHA-384, SHA-512, SHA3-256, SHA3-384,\
\ SHA3-512, BLAKE2b-256, BLAKE2b-384, BLAKE2b-512, or BLAKE3 hash of the\
\ component to retrieve"
\ SHA3-512, BLAKE2b-256, BLAKE2b-384, BLAKE2b-512, BLAKE3, Streebog-256,\
\ or Streebog-512 hash of the component to retrieve"
in: path
name: hash
required: true
Expand Down Expand Up @@ -2287,6 +2287,7 @@ paths:
- INTERNAL
- OSV
- SNYK
- CX
- UNKNOWN
- in: header
name: accept
Expand Down Expand Up @@ -9578,6 +9579,7 @@ components:
- INTERNAL
- OSV
- SNYK
- CX
- UNKNOWN
required:
- firstSeen
Expand Down Expand Up @@ -10060,6 +10062,12 @@ components:
sha512:
type: string
pattern: "^[0-9a-fA-F]{128}$"
streebog_256:
type: string
pattern: "^[0-9a-fA-F]{64}$"
streebog_512:
type: string
pattern: "^[0-9a-fA-F]{128}$"
supplier:
$ref: "#/components/schemas/OrganizationalEntity"
swidTagId:
Expand Down Expand Up @@ -10924,7 +10932,7 @@ components:
- build-system
- release-notes
- security-contact
- model_card
- model-card
- attestation
- threat-model
- adversary-model
Expand All @@ -10947,6 +10955,11 @@ components:
- rfc-9116
- electronic-signature
- digital-signature
- patent
- patent-family
- patent-assertion
- citation
- poam
- other
url:
type: string
Expand Down Expand Up @@ -13402,6 +13415,9 @@ components:
cveId:
type: string
pattern: "^[\\p{IsWhite_Space}\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\n\\r\\t]*$"
cxId:
type: string
pattern: "^[\\p{IsWhite_Space}\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\n\\r\\t]*$"
ghsaId:
type: string
pattern: "^[\\p{IsWhite_Space}\\p{L}\\p{M}\\p{S}\\p{N}\\p{P}\\n\\r\\t]*$"
Expand Down
8 changes: 8 additions & 0 deletions docs/reference/api/openapi-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,8 @@ paths:
- BLAKE2B_384
- BLAKE2B_512
- BLAKE3
- STREEBOG_256
- STREEBOG_512
- name: hash
in: query
description: |-
Expand Down Expand Up @@ -2661,6 +2663,12 @@ components:
blake3:
maxLength: 255
type: string
streebog_256:
maxLength: 64
type: string
streebog_512:
maxLength: 128
type: string
md5:
maxLength: 32
type: string
Expand Down