Base representation of a comment.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Comment--Base", "title": "Comment (Base)", "type": "object", "x-box-resource-id": "comment--base", "x-box-sanitized": true, "x-box-tag": "comments", "x-box-variants": [ "base", "standard", "full" ], "x-box-variant": "base", "description": "Base representation of a comment.", "properties": { "id": { "type": "string", "description": "The unique identifier for this comment.", "example": "11446498" }, "type": { "type": "string", "description": "`comment`", "example": "comment", "enum": [ "comment" ] } } }