bugsnag · Schema

CommentCreate

Request body for creating or updating a comment.

Properties

Name Type Description
message string The text content of the comment.
View JSON Schema on GitHub

JSON Schema

bugsnag-commentcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommentCreate",
  "title": "CommentCreate",
  "type": "object",
  "description": "Request body for creating or updating a comment.",
  "required": [
    "message"
  ],
  "properties": {
    "message": {
      "type": "string",
      "description": "The text content of the comment."
    }
  }
}