Tripleseat · JSON Structure

Tripleseat Api User Structure

A person who can log into Tripleseat.

Type: object Properties: 5
RestaurantEventsCateringLeadsWebhooksSales

User is a JSON Structure definition published by Tripleseat, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id first_name last_name email_address active

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tripleseat/refs/heads/main/json-structure/tripleseat-api-user-structure.json",
  "name": "User",
  "description": "A person who can log into Tripleseat.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Unique identifier of the user.",
      "example": 500123
    },
    "first_name": {
      "type": "string",
      "example": "Mark"
    },
    "last_name": {
      "type": "string",
      "example": "Lawrence"
    },
    "email_address": {
      "type": "string",
      "example": "contact@example.com"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the user account is active.",
      "example": true
    }
  }
}