Flipdish · Schema
UserNote
User Note
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| UserNoteId | integer | Identifier for the user note. |
| UserId | integer | User identifier associated with the note. |
| Note | string | Note content. |
| TsCreate | string | Creation timestamp of the note. |
| CreatedByUserId | integer | Identifier of the user who created the note. |
| CreatedByUserName | string | Name of the user who created the note. |
| CreatedByUserEmail | string | Email of the user who created the note. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-user-note-schema.json",
"title": "UserNote",
"description": "User Note",
"type": "object",
"properties": {
"UserNoteId": {
"format": "int32",
"description": "Identifier for the user note.",
"type": "integer",
"example": 500123
},
"UserId": {
"format": "int32",
"description": "User identifier associated with the note.",
"type": "integer",
"example": 500123
},
"Note": {
"description": "Note content.",
"type": "string",
"example": "string"
},
"TsCreate": {
"format": "date-time",
"description": "Creation timestamp of the note.",
"type": "string",
"example": "2026-06-02T12:00:00Z"
},
"CreatedByUserId": {
"format": "int32",
"description": "Identifier of the user who created the note.",
"type": "integer",
"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": "[email protected]"
}
}
}