mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-10 12:27:48 +00:00
35 lines
817 B
YAML
35 lines
817 B
YAML
title: Identity Created
|
|
type: object
|
|
required:
|
|
- identity
|
|
- attributes
|
|
properties:
|
|
identity:
|
|
required:
|
|
- id
|
|
- type
|
|
- name
|
|
type: object
|
|
description: Created identity.
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: Created identity's DTO type.
|
|
enum:
|
|
- IDENTITY
|
|
example: IDENTITY
|
|
id:
|
|
type: string
|
|
description: Created identity ID.
|
|
example: 2c7180a46faadee4016fb4e018c20642
|
|
name:
|
|
type: string
|
|
description: Created identity's display name.
|
|
example: Michael Michaels
|
|
attributes:
|
|
type: object
|
|
description: The attributes assigned to the identity. Attributes are determined by the identity profile.
|
|
additionalProperties: true
|
|
example: {
|
|
"firstname": "John"
|
|
} |