Discord · Schema

GithubIssue

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

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

JSON Schema

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