Properties
| Name | Type | Description |
|---|---|---|
| _id | string | The unique identifier of the member. |
| string | The email address of the member. | |
| firstName | string | The first name of the member. |
| lastName | string | The last name of the member. |
| _links | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MemberSummary",
"title": "MemberSummary",
"type": "object",
"description": "A summary of a member who performed an action.",
"properties": {
"_id": {
"type": "string",
"description": "The unique identifier of the member."
},
"email": {
"type": "string",
"format": "email",
"description": "The email address of the member."
},
"firstName": {
"type": "string",
"description": "The first name of the member."
},
"lastName": {
"type": "string",
"description": "The last name of the member."
},
"_links": {
"$ref": "#/components/schemas/Links"
}
}
}