Flipdish · JSON Structure

Customers User Note Structure

User Note

Type: object Properties: 7
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

UserNoteId UserId Note TsCreate CreatedByUserId CreatedByUserName CreatedByUserEmail

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/flipdish/refs/heads/main/json-structure/customers-user-note-structure.json",
  "name": "UserNote",
  "description": "User Note",
  "type": "object",
  "properties": {
    "UserNoteId": {
      "description": "Identifier for the user note.",
      "type": "int32",
      "example": 500123
    },
    "UserId": {
      "description": "User identifier associated with the note.",
      "type": "int32",
      "example": 500123
    },
    "Note": {
      "description": "Note content.",
      "type": "string",
      "example": "string"
    },
    "TsCreate": {
      "description": "Creation timestamp of the note.",
      "type": "datetime",
      "example": "2026-06-02T12:00:00Z"
    },
    "CreatedByUserId": {
      "description": "Identifier of the user who created the note.",
      "type": "int32",
      "example": 500123
    },
    "CreatedByUserName": {
      "description": "Name of the user who created the note.",
      "type": "string",
      "example": "Example Name"
    },
    "CreatedByUserEmail": {
      "description": "Email of the user who created the note.",
      "type": "string",
      "example": "owner@example.com"
    }
  }
}