Skip to content

Commit

Permalink
docs: update api schema
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Feb 12, 2025
1 parent 9842322 commit 2077cda
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions public/v1/components/schemas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1178,9 +1178,13 @@ components:
Indicates whether the `rawBody` value was truncated due to being too big.
headers:
type: object
description: The HTTP response headers.
description: The HTTP response headers. Value may be an array of strings for headers with multiple values, e.g. `Set-Cookie`.
additionalProperties:
type: string
oneOf:
- type: string
- type: array
items:
type: string
statusCode:
$ref: 'schemas.yaml#/components/schemas/HttpStatusCode'
statusCodeName:
Expand Down Expand Up @@ -1276,8 +1280,6 @@ components:
title: TlsCertificate
required:
- authorized
- createdAt
- expiresAt
- subject
- issuer
- keyType
Expand Down Expand Up @@ -1362,8 +1364,10 @@ components:
type: string
description: The subject's common name.
alt:
type: string
description: The subject's alternative names.
type:
- string
- 'null'
description: The subject's alternative names, or `null` if missing.
Limits:
type: object
required:
Expand Down

0 comments on commit 2077cda

Please sign in to comment.