{ "openapi": "3.1.0", "info": { "title": "Discord HTTP API (Preview)", "description": "Preview of the Discord v10 HTTP API specification. See https://discord.com/developers/docs for more details.", "termsOfService": "https://discord.com/developers/docs/policies-and-agreements/developer-terms-of-service", "license": { "name": "MIT", "identifier": "MIT" }, "version": "10" }, "servers": [ { "url": "https://discord.com/api/v10" } ], "paths": { "/webhooks/github": { "post": { "operationId": "execute_github_compatible_webhook", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/GithubWebhook" } } } }, "responses": { "204": { "description": "204 response" } } } } }, "components": { "schemas": { "GithubWebhook": { "type": "object", "properties": { "pull_request": {} } } } } }