mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 12:27:48 +00:00
28 lines
679 B
YAML
28 lines
679 B
YAML
description: List of identities to be added or removed to a Governance Group members list.
|
|
type: array
|
|
items:
|
|
type: object
|
|
description: Identity's basic details.
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: Identity's DTO type.
|
|
enum:
|
|
- IDENTITY
|
|
example: IDENTITY
|
|
id:
|
|
type: string
|
|
description: Identity ID.
|
|
example: 2c7180a46faadee4016fb4e018c20642
|
|
name:
|
|
type: string
|
|
description: Identity's display name.
|
|
example: Michael Michaels
|
|
example:
|
|
[
|
|
{
|
|
"type": "IDENTITY",
|
|
"id": "464ae7bf791e49fdb74606a2e4a89635",
|
|
"name": "Addie Smith"
|
|
}
|
|
] |