Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update openapi spec with identity and is_anonymous fields #1573

Merged
merged 1 commit into from
May 8, 2024
Merged
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: 32 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1840,7 +1840,7 @@ components:
identities:
type: array
items:
type: object
$ref: "#/components/schemas/IdentitySchema"
banned_until:
type: string
format: date-time
Expand All @@ -1853,6 +1853,8 @@ components:
deleted_at:
type: string
format: date-time
is_anonymous:
type: boolean

SAMLAttributeMappingSchema:
type: object
Expand Down Expand Up @@ -1958,6 +1960,35 @@ components:
Usually one of:
- totp

IdentitySchema:
type: object
properties:
identity_id:
type: string
format: uuid
id:
type: string
format: uuid
user_id:
type: string
format: uuid
identity_data:
type: object
provider:
type: string
last_sign_in_at:
type: string
format: date-time
created_at:
type: string
format: date-time
updated_at:
type: string
format: date-time
email:
type: string
format: email

responses:
OAuthCallbackRedirectResponse:
description: >
Expand Down
Loading