Discord · Schema

GithubCommit

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id string
url string
message string
author object
View JSON Schema on GitHub

JSON Schema

discord-githubcommit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GithubCommit",
  "title": "GithubCommit",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 152133
    },
    "url": {
      "type": "string",
      "maxLength": 2048,
      "format": "uri"
    },
    "message": {
      "type": "string",
      "maxLength": 152133
    },
    "author": {
      "$ref": "#/components/schemas/GithubAuthor"
    }
  },
  "required": [
    "id",
    "url",
    "message",
    "author"
  ]
}