OrganizationMemberWithUser
Organization member with denormalized user fields for API responses.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
created_at |
string | Yes | |
email |
Yes | ||
id |
string | Yes | |
name |
string,null | No | |
organization_id |
string | Yes | |
role |
string | Yes | |
user_id |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Organization member with denormalized user fields for API responses.",
"required": [
"id",
"organization_id",
"user_id",
"email",
"role",
"created_at"
],
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"email": {
"$ref": "#/components/schemas/Email"
},
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": [
"string",
"null"
]
},
"organization_id": {
"type": "string",
"format": "uuid"
},
"role": {
"type": "string"
},
"user_id": {
"type": "string",
"format": "uuid"
}
}
}