{ "$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" } } }