Properties
| Name | Type | Description |
|---|---|---|
| member_id | string | Unique identifier for the member. |
| string | Email address of the member. | |
| first_name | string | First name of the member. |
| last_name | string | Last name of the member. |
| scopes | array | Scopes assigned to this member. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Member",
"title": "Member",
"type": "object",
"properties": {
"member_id": {
"type": "string",
"description": "Unique identifier for the member."
},
"email": {
"type": "string",
"format": "email",
"description": "Email address of the member."
},
"first_name": {
"type": "string",
"description": "First name of the member."
},
"last_name": {
"type": "string",
"description": "Last name of the member."
},
"scopes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Scopes assigned to this member."
}
}
}