Tripleseat · Schema
User
A person who can log into Tripleseat.
RestaurantEventsCateringLeadsWebhooksSales
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the user. |
| first_name | string | |
| last_name | string | |
| email_address | string | |
| active | boolean | Whether the user account is active. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "User",
"description": "A person who can log into Tripleseat.",
"$id": "https://raw.githubusercontent.com/api-evangelist/tripleseat/refs/heads/main/json-schema/tripleseat-api-user-schema.json",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the user.",
"example": 500123
},
"first_name": {
"type": "string",
"example": "Mark"
},
"last_name": {
"type": "string",
"example": "Lawrence"
},
"email_address": {
"type": "string",
"format": "email",
"example": "[email protected]"
},
"active": {
"type": "boolean",
"description": "Whether the user account is active.",
"example": true
}
}
}