Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the member. |
| lastName | string | Last name of the member. |
| firstName | string | First name of the member. |
| type | object | Type of member. |
| licenseType | object | License type of the member. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Members",
"title": "Members",
"type": "object",
"required": [
"id",
"type",
"licenseType"
],
"properties": {
"id": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VybjpURUFNOnVzLXdlc3QtMl9yL1BMQUNFL2U2OTczZDgyLWM1NTUtNDMwOC05NGU3LWI3ZWU2MjczY2YyMg",
"description": "Unique identifier of the member."
},
"lastName": {
"type": "string",
"example": "jones",
"description": "Last name of the member."
},
"firstName": {
"type": "string",
"example": "Vickor",
"description": "First name of the member."
},
"type": {
"$ref": "#/components/schemas/MemberType",
"description": "Type of member."
},
"licenseType": {
"$ref": "#/components/schemas/UserLicenseType",
"description": "License type of the member."
}
}
}