Discord · Schema

GithubComment

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id integer
html_url string
user object
commit_id stringnull
body string
View JSON Schema on GitHub

JSON Schema

discord-githubcomment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GithubComment",
  "title": "GithubComment",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "html_url": {
      "type": "string",
      "maxLength": 2048,
      "format": "uri"
    },
    "user": {
      "$ref": "#/components/schemas/GithubUser"
    },
    "commit_id": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 152133
    },
    "body": {
      "type": "string",
      "maxLength": 152133
    }
  },
  "required": [
    "id",
    "html_url",
    "user",
    "body"
  ]
}