Discord · Schema

GithubDiscussion

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

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

JSON Schema

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