{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Comment", "type": "object", "description": "A comment on a report or expense", "properties": { "comment": { "type": "string", "description": "The comment text content" }, "author": { "type": "object", "description": "The user who authored the comment" }, "creationDate": { "type": "string", "description": "When the comment was created" }, "isLatest": { "type": "boolean", "description": "Whether this is the most recent comment" }, "isAuditLog": { "type": "boolean", "description": "Whether this is a system-generated audit entry" } } }