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
33 changes: 33 additions & 0 deletions docs/reference/api/openapi-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9912,6 +9912,10 @@ components:
type: integer
format: int64
description: UNIX epoch timestamp in milliseconds
expiresAt:
type: integer
format: int64
description: UNIX epoch timestamp in milliseconds
key:
type: string
lastUsed:
Expand Down Expand Up @@ -12723,6 +12727,31 @@ components:
technicalImpactScore:
type: number
format: double
ServiceAccount:
type: object
properties:
email:
type: string
maxLength: 255
minLength: 0
pattern: "[\\P{Cc}]+"
permissions:
type: array
items:
$ref: "#/components/schemas/Permission"
suspended:
type: boolean
teams:
type: array
items:
$ref: "#/components/schemas/Team"
username:
type: string
maxLength: 255
minLength: 1
pattern: "[\\P{Cc}]+"
required:
- username
ServiceComponent:
type: object
properties:
Expand Down Expand Up @@ -12957,6 +12986,10 @@ components:
type: array
items:
$ref: "#/components/schemas/Permission"
serviceAccounts:
type: array
items:
$ref: "#/components/schemas/ServiceAccount"
uuid:
type: string
format: uuid
Expand Down
Loading
Loading