bugsnag · Schema

ThreadPayload

Information about a thread running at the time of the error.

Properties

Name Type Description
id string The thread identifier.
name string The thread name.
errorReportingThread boolean Whether this is the thread on which the error occurred.
stacktrace array The stack trace of this thread at the time of the error.
View JSON Schema on GitHub

JSON Schema

bugsnag-threadpayload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThreadPayload",
  "title": "ThreadPayload",
  "type": "object",
  "description": "Information about a thread running at the time of the error.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The thread identifier."
    },
    "name": {
      "type": "string",
      "description": "The thread name."
    },
    "errorReportingThread": {
      "type": "boolean",
      "description": "Whether this is the thread on which the error occurred."
    },
    "stacktrace": {
      "type": "array",
      "description": "The stack trace of this thread at the time of the error.",
      "items": {
        "$ref": "#/components/schemas/StackFramePayload"
      }
    }
  }
}