{ "$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": "owner@example.com" } } }