Automated commit by github action: 5050348058

This commit is contained in:
GitHub Action Bot
2023-05-22 21:00:10 +00:00
parent 757639844d
commit 678fb9b23f
2 changed files with 17 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ allOf:
isManager:
type: boolean
description: Whether this identity is a manager of another identity
default: false
example: true
lastRefresh:
type: string
@@ -50,3 +51,6 @@ allOf:
type: object
description: A map with the identity attributes for the identity
example: '{"uid":"Walter White","firstname":"walter","cloudStatus":"UNREGISTERED","displayName":"Walter White","identificationNumber":"942","lastSyncDate":1470348809380,"email":"walter@gmail.com","lastname":"white"}'
lifecycleState:
$ref: '../../v3/schemas/LifecycleStateDto.yaml'
description: Lifecycle state details that include lifecycle state name and whether this lifecycle state has been set manually

View File

@@ -0,0 +1,13 @@
type: object
properties:
stateName:
type: string
description: The name of the lifecycle state
example: 'active'
manuallyUpdated:
type: boolean
description: Whether the lifecycle state has been manually or automatically set
example: true
required:
- stateName
- manuallyUpdated