Discord · Schema

GithubReview

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
user object
body stringnull
html_url string
state string
View JSON Schema on GitHub

JSON Schema

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