Discord · Schema

GithubRelease

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id integer
tag_name string
html_url string
author object
View JSON Schema on GitHub

JSON Schema

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