@@ -24635,16 +24635,36 @@ components:
24635
24635
UserCreateAttributes:
24636
24636
description: Attributes of the created user.
24637
24637
properties:
24638
+ created_at:
24639
+ description: The `UserCreateAttributes` `created_at`.
24640
+ format: date-time
24641
+ type: string
24642
+ disabled:
24643
+ description: The `UserCreateAttributes` `disabled`.
24644
+ type: boolean
24638
24645
email:
24639
24646
description: The email of the user.
24640
24647
24641
24648
type: string
24649
+ handle:
24650
+ description: The `UserCreateAttributes` `handle`.
24651
+ type: string
24652
+ modified_at:
24653
+ description: The `UserCreateAttributes` `modified_at`.
24654
+ format: date-time
24655
+ type: string
24642
24656
name:
24643
24657
description: The name of the user.
24644
24658
type: string
24659
+ service_account:
24660
+ description: The `UserCreateAttributes` `service_account`.
24661
+ type: boolean
24645
24662
title:
24646
24663
description: The title of the user.
24647
24664
type: string
24665
+ verified:
24666
+ description: The `UserCreateAttributes` `verified`.
24667
+ type: boolean
24648
24668
required:
24649
24669
- email
24650
24670
type: object
@@ -24694,6 +24714,10 @@ components:
24694
24714
invite_type:
24695
24715
description: Type of invitation.
24696
24716
type: string
24717
+ login_method:
24718
+ description: The `UserInvitationDataAttributes` `login_method`.
24719
+ nullable: true
24720
+ type: string
24697
24721
uuid:
24698
24722
description: UUID of the user invitation.
24699
24723
type: string
@@ -24755,6 +24779,79 @@ components:
24755
24779
type: string
24756
24780
x-enum-varnames:
24757
24781
- USER_INVITATIONS
24782
+ UserOrgsSerializable:
24783
+ description: The definition of `UserOrgsSerializable` object.
24784
+ properties:
24785
+ attributes:
24786
+ $ref: '#/components/schemas/UserOrgsSerializableAttributes'
24787
+ id:
24788
+ description: The `UserOrgsSerializable` `id`.
24789
+ type: string
24790
+ type:
24791
+ $ref: '#/components/schemas/UserOrgsSerializableType'
24792
+ required:
24793
+ - type
24794
+ type: object
24795
+ UserOrgsSerializableAttributes:
24796
+ description: The definition of `UserOrgsSerializableAttributes` object.
24797
+ properties:
24798
+ disabled:
24799
+ description: The `UserOrgsSerializableAttributes` `disabled`.
24800
+ type: boolean
24801
+ email:
24802
+ description: The `UserOrgsSerializableAttributes` `email`.
24803
+ type: string
24804
+ name:
24805
+ description: The `UserOrgsSerializableAttributes` `name`.
24806
+ type: string
24807
+ org_id:
24808
+ description: The `UserOrgsSerializableAttributes` `org_id`.
24809
+ type: string
24810
+ title:
24811
+ description: The `UserOrgsSerializableAttributes` `title`.
24812
+ type: string
24813
+ verified:
24814
+ description: The `UserOrgsSerializableAttributes` `verified`.
24815
+ type: boolean
24816
+ type: object
24817
+ UserOrgsSerializableType:
24818
+ default: users
24819
+ description: The definition of `UserOrgsSerializableType` object.
24820
+ enum:
24821
+ - users
24822
+ example: users
24823
+ type: string
24824
+ x-enum-varnames:
24825
+ - USERS
24826
+ UserOverrideIdentityProvider:
24827
+ description: The definition of `UserOverrideIdentityProvider` object.
24828
+ properties:
24829
+ attributes:
24830
+ $ref: '#/components/schemas/UserOverrideIdentityProviderAttributes'
24831
+ id:
24832
+ description: The `UserOverrideIdentityProvider` `id`.
24833
+ type: string
24834
+ type:
24835
+ $ref: '#/components/schemas/UserOverrideIdentityProviderType'
24836
+ required:
24837
+ - type
24838
+ type: object
24839
+ UserOverrideIdentityProviderAttributes:
24840
+ description: The definition of `UserOverrideIdentityProviderAttributes` object.
24841
+ properties:
24842
+ authentication_method:
24843
+ description: The `UserOverrideIdentityProviderAttributes` `authentication_method`.
24844
+ type: string
24845
+ type: object
24846
+ UserOverrideIdentityProviderType:
24847
+ default: identity_providers
24848
+ description: The definition of `UserOverrideIdentityProviderType` object.
24849
+ enum:
24850
+ - identity_providers
24851
+ example: identity_providers
24852
+ type: string
24853
+ x-enum-varnames:
24854
+ - IDENTITY_PROVIDERS
24758
24855
UserRelationshipData:
24759
24856
description: Relationship to user object.
24760
24857
properties:
@@ -24800,6 +24897,8 @@ components:
24800
24897
- $ref: '#/components/schemas/Organization'
24801
24898
- $ref: '#/components/schemas/Permission'
24802
24899
- $ref: '#/components/schemas/Role'
24900
+ - $ref: '#/components/schemas/UserOverrideIdentityProvider'
24901
+ - $ref: '#/components/schemas/UserOrgsSerializable'
24803
24902
UserResponseRelationships:
24804
24903
description: Relationships of the user object returned by the API.
24805
24904
properties:
@@ -25038,15 +25137,36 @@ components:
25038
25137
UserUpdateAttributes:
25039
25138
description: Attributes of the edited user.
25040
25139
properties:
25140
+ created_at:
25141
+ description: The `UserUpdateAttributes` `created_at`.
25142
+ format: date-time
25143
+ type: string
25041
25144
disabled:
25042
25145
description: If the user is enabled or disabled.
25043
25146
type: boolean
25044
25147
email:
25045
25148
description: The email of the user.
25046
25149
type: string
25150
+ handle:
25151
+ description: The `UserUpdateAttributes` `handle`.
25152
+ type: string
25153
+ modified_at:
25154
+ description: The `UserUpdateAttributes` `modified_at`.
25155
+ format: date-time
25156
+ type: string
25047
25157
name:
25048
25158
description: The name of the user.
25049
25159
type: string
25160
+ service_account:
25161
+ description: The `UserUpdateAttributes` `service_account`.
25162
+ type: boolean
25163
+ title:
25164
+ description: The `UserUpdateAttributes` `title`.
25165
+ nullable: true
25166
+ type: string
25167
+ verified:
25168
+ description: The `UserUpdateAttributes` `verified`.
25169
+ type: boolean
25050
25170
type: object
25051
25171
UserUpdateData:
25052
25172
description: Object to update a user.
0 commit comments