The resolution object for a Comment.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/comment_resolution", "title": "Comment Resolution", "type": "object", "description": "The resolution object for a Comment.", "properties": { "type": { "type": "string", "example": "example_value" }, "user": { "$ref": "#/components/schemas/account" }, "created_on": { "type": "string", "description": "The ISO8601 timestamp the resolution was created.", "format": "date-time", "example": "2026-01-15T10:30:00Z" } }, "required": [ "type" ], "additionalProperties": true }