Files
api-specs/idn/beta/schemas/trigger/example-input/IdentityCreated.yaml
GitHub Action Bot 03c7b80a9e Automated commit 'Merge pull request #1469 from sailpoint/devrel-1185-2
Devrel 1185 2' by github action: 6736623414
2023-11-02 18:15:05 +00:00

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"
}