Timeline Comment Event

Timeline Comment Event

APIs.ioEngineeringPlatform

Properties

Name Type Description
event string
actor object
id integer Unique identifier of the issue comment
node_id string
url string URL for the issue comment
body string Contents of the issue comment
body_text string
body_html string
html_url string
user object
created_at string
updated_at string
issue_url string
author_association object
performed_via_github_app object
reactions object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-timeline-comment-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/timeline-comment-event",
  "title": "Timeline Comment Event",
  "description": "Timeline Comment Event",
  "type": "object",
  "properties": {
    "event": {
      "type": "string"
    },
    "actor": {
      "$ref": "#/components/schemas/simple-user"
    },
    "id": {
      "description": "Unique identifier of the issue comment",
      "example": 42,
      "type": "integer"
    },
    "node_id": {
      "type": "string"
    },
    "url": {
      "description": "URL for the issue comment",
      "example": "https://api.github.com/repositories/42/issues/comments/1",
      "type": "string",
      "format": "uri"
    },
    "body": {
      "description": "Contents of the issue comment",
      "example": "What version of Safari were you using when you observed this bug?",
      "type": "string"
    },
    "body_text": {
      "type": "string"
    },
    "body_html": {
      "type": "string"
    },
    "html_url": {
      "type": "string",
      "format": "uri"
    },
    "user": {
      "$ref": "#/components/schemas/simple-user"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2011-04-14T16:00:49Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "example": "2011-04-14T16:00:49Z"
    },
    "issue_url": {
      "type": "string",
      "format": "uri"
    },
    "author_association": {
      "$ref": "#/components/schemas/author-association"
    },
    "performed_via_github_app": {
      "$ref": "#/components/schemas/nullable-integration"
    },
    "reactions": {
      "$ref": "#/components/schemas/reaction-rollup"
    }
  },
  "required": [
    "event",
    "actor",
    "id",
    "node_id",
    "html_url",
    "issue_url",
    "author_association",
    "user",
    "url",
    "created_at",
    "updated_at"
  ]
}