diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 9dc2ad41b5..4bda23ec20 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -21,6 +21,8 @@ module.exports = { "!/.*", "/.next/", "script/bookmarklets/*", + "src/open-source/scripts/add-pr-links.js", + "src/open-source/scripts/pr-link-source.js", "rest-api-description/", ], rules: { diff --git a/.github/workflows/ready-for-doc-review.yml b/.github/workflows/ready-for-doc-review.yml index 48a3b5eb37..f8c2f7d555 100644 --- a/.github/workflows/ready-for-doc-review.yml +++ b/.github/workflows/ready-for-doc-review.yml @@ -7,6 +7,7 @@ name: Ready for docs-content review on: pull_request_target: types: [labeled, review_requested] + workflow_call: permissions: contents: read diff --git a/.github/workflows/test-changed-content.yml b/.github/workflows/test-changed-content.yml new file mode 100644 index 0000000000..f163ed551b --- /dev/null +++ b/.github/workflows/test-changed-content.yml @@ -0,0 +1,55 @@ +name: Test changed content + +# **What it does**: Runs the jest tests for changed and deleted content files. +# **Why we have it**: Use GitHub Actions to run tests on changed content files. +# **Who does it impact**: Docs engineering, open-source engineering contributors. + +on: + pull_request: + branches: + # This is important! If you make a PR against a megabranch, you + # might actually want to delete a file without setting up a + # redirect in its place. But if it's going into `main` we'll + # want to make sure that doesn't happen. + - main + paths: + - 'content/**' + +permissions: + contents: read + +jobs: + test-changed-content: + runs-on: ${{ fromJSON('["ubuntu-latest", "ubuntu-20.04-xl"]')[github.repository == 'github/docs-internal'] }} + steps: + # Each of these ifs needs to be repeated at each step to make sure the required check still runs + # Even if if doesn't do anything + - name: Check out repo + uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 + with: + # See https://github.com/tj-actions/changed-files#on-pull_request- + fetch-depth: 2 + + - uses: ./.github/actions/node-npm-setup + + - uses: ./.github/actions/get-docs-early-access + if: ${{ github.repository == 'github/docs-internal' }} + with: + token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }} + + - uses: ./.github/actions/cache-nextjs + + - name: Run build script + run: npm run build + + - name: Get changed files + id: changed-files + uses: tj-actions/changed-files@246636f5fa148b5ad8e65ca4c57b18af3123e5f6 # v39.0.1 + with: + files: 'content/**' + + - name: Run tests + env: + CHANGED_FILES: ${{ steps.changed-files.outputs.modified_files }} + DELETED_FILES: ${{ steps.changed-files.outputs.deleted_files }} + run: npm test -- src/content-render/tests/render-changed-and-deleted-files.js diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cb154f7591..09655cb27a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,6 +47,7 @@ jobs: { name: 'automated-pipelines', path: 'src/automated-pipelines/tests', }, { name: 'color-schemes', path: 'src/color-schemes/tests', }, { name: 'content', path: 'tests/content', }, + { name: 'content-linter', path: 'src/content-linter/tests', }, { name: 'content-render', path: 'src/content-render/tests', }, { name: 'events', path: 'src/events/tests', }, { name: 'ghes-releases', path: 'src/ghes-releases/tests', }, @@ -54,7 +55,6 @@ jobs: { name: 'graphql', path: 'src/graphql/tests', }, { name: 'landings', path: 'src/landings/tests', }, { name: 'learning-track', path: 'src/learning-track/tests', }, - { name: 'linting', path: 'src/content-linter/tests', }, { name: 'observability', path: 'src/observability/tests' }, { name: 'pageinfo', path: 'src/pageinfo/tests', }, { name: 'redirects', path: 'src/redirects/tests', }, @@ -126,7 +126,7 @@ jobs: token: ${{ secrets.DOCS_BOT_PAT_READPUBLICKEY }} - name: Gather files changed - if: ${{ matrix.name == 'linting' }} + if: ${{ matrix.name == 'content-linter' }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR: ${{ github.event.pull_request.number }} diff --git a/.prettierignore b/.prettierignore index 26be76badc..e235401a9d 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,5 +1,6 @@ data/release-notes/ script/bookmarklets/ +src/open-source/scripts/add-pr-links.js /.next/ # jest --coverage option diff --git a/assets/images/enterprise/github-ae/settings/github.com-end-user-connection.png b/assets/images/enterprise/github-ae/settings/github.com-end-user-connection.png deleted file mode 100644 index f72046499f..0000000000 Binary files a/assets/images/enterprise/github-ae/settings/github.com-end-user-connection.png and /dev/null differ diff --git a/assets/images/enterprise/settings/top_right_avatar.png b/assets/images/enterprise/settings/top_right_avatar.png deleted file mode 100644 index bd2faefa95..0000000000 Binary files a/assets/images/enterprise/settings/top_right_avatar.png and /dev/null differ diff --git a/assets/images/help/classroom/assignments-click-review-button.png b/assets/images/help/classroom/assignments-click-review-button.png deleted file mode 100644 index 0858e67f30..0000000000 Binary files a/assets/images/help/classroom/assignments-click-review-button.png and /dev/null differ diff --git a/assets/images/help/classroom/click-classroom-in-list.png b/assets/images/help/classroom/click-classroom-in-list.png deleted file mode 100644 index f38f7765a3..0000000000 Binary files a/assets/images/help/classroom/click-classroom-in-list.png and /dev/null differ diff --git a/assets/images/help/codespaces/click-name-codespace.png b/assets/images/help/codespaces/click-name-codespace.png deleted file mode 100644 index 019664de2e..0000000000 Binary files a/assets/images/help/codespaces/click-name-codespace.png and /dev/null differ diff --git a/assets/images/help/codespaces/delete-codespace-vscode.png b/assets/images/help/codespaces/delete-codespace-vscode.png deleted file mode 100644 index 0afd1c0a03..0000000000 Binary files a/assets/images/help/codespaces/delete-codespace-vscode.png and /dev/null differ diff --git a/assets/images/help/copilot/manage-access-search.png b/assets/images/help/copilot/manage-access-search.png deleted file mode 100644 index 3d3b67c6bc..0000000000 Binary files a/assets/images/help/copilot/manage-access-search.png and /dev/null differ diff --git a/assets/images/help/desktop/clone-a-repository-list-win.png b/assets/images/help/desktop/clone-a-repository-list-win.png deleted file mode 100644 index 76d74bb754..0000000000 Binary files a/assets/images/help/desktop/clone-a-repository-list-win.png and /dev/null differ diff --git a/assets/images/help/education/camera-drop-down.png b/assets/images/help/education/camera-drop-down.png deleted file mode 100644 index abbfdbf856..0000000000 Binary files a/assets/images/help/education/camera-drop-down.png and /dev/null differ diff --git a/assets/images/help/education/community-exchange-page.png b/assets/images/help/education/community-exchange-page.png deleted file mode 100644 index e4e789d0ff..0000000000 Binary files a/assets/images/help/education/community-exchange-page.png and /dev/null differ diff --git a/assets/images/help/education/select-email-address.png b/assets/images/help/education/select-email-address.png deleted file mode 100644 index 5db83daba8..0000000000 Binary files a/assets/images/help/education/select-email-address.png and /dev/null differ diff --git a/assets/images/help/education/submit-your-information-button.png b/assets/images/help/education/submit-your-information-button.png deleted file mode 100644 index 3509cc096b..0000000000 Binary files a/assets/images/help/education/submit-your-information-button.png and /dev/null differ diff --git a/assets/images/help/education/take-photo-button.png b/assets/images/help/education/take-photo-button.png deleted file mode 100644 index 4a5ab3d7e9..0000000000 Binary files a/assets/images/help/education/take-photo-button.png and /dev/null differ diff --git a/assets/images/help/enterprises/click-advanced-security.png b/assets/images/help/enterprises/click-advanced-security.png deleted file mode 100644 index d6fbf7649f..0000000000 Binary files a/assets/images/help/enterprises/click-advanced-security.png and /dev/null differ diff --git a/assets/images/help/enterprises/verified-domains-tab.png b/assets/images/help/enterprises/verified-domains-tab.png deleted file mode 100644 index d7e178f653..0000000000 Binary files a/assets/images/help/enterprises/verified-domains-tab.png and /dev/null differ diff --git a/assets/images/help/issues/Issues-Label-Create.png b/assets/images/help/issues/Issues-Label-Create.png deleted file mode 100644 index 291485fc8b..0000000000 Binary files a/assets/images/help/issues/Issues-Label-Create.png and /dev/null differ diff --git a/assets/images/help/issues/milestone-info-page.png b/assets/images/help/issues/milestone-info-page.png deleted file mode 100644 index f2f8fc6198..0000000000 Binary files a/assets/images/help/issues/milestone-info-page.png and /dev/null differ diff --git a/assets/images/help/issues/milestone-reordered.gif b/assets/images/help/issues/milestone-reordered.gif deleted file mode 100644 index 9be39580b8..0000000000 Binary files a/assets/images/help/issues/milestone-reordered.gif and /dev/null differ diff --git a/assets/images/help/issues/new_issues_button.png b/assets/images/help/issues/new_issues_button.png deleted file mode 100644 index 842356e01c..0000000000 Binary files a/assets/images/help/issues/new_issues_button.png and /dev/null differ diff --git a/assets/images/help/organizations/add-domain-field.png b/assets/images/help/organizations/add-domain-field.png deleted file mode 100644 index 4f21c90eae..0000000000 Binary files a/assets/images/help/organizations/add-domain-field.png and /dev/null differ diff --git a/assets/images/help/organizations/allow-members-to-view-full-names.png b/assets/images/help/organizations/allow-members-to-view-full-names.png deleted file mode 100644 index a185f321f8..0000000000 Binary files a/assets/images/help/organizations/allow-members-to-view-full-names.png and /dev/null differ diff --git a/assets/images/help/organizations/list-of-organizations.png b/assets/images/help/organizations/list-of-organizations.png deleted file mode 100644 index 888803ee2b..0000000000 Binary files a/assets/images/help/organizations/list-of-organizations.png and /dev/null differ diff --git a/assets/images/help/organizations/member-search-box.png b/assets/images/help/organizations/member-search-box.png deleted file mode 100644 index a42d616dc9..0000000000 Binary files a/assets/images/help/organizations/member-search-box.png and /dev/null differ diff --git a/assets/images/help/organizations/name-of-business.png b/assets/images/help/organizations/name-of-business.png deleted file mode 100644 index b7a112d420..0000000000 Binary files a/assets/images/help/organizations/name-of-business.png and /dev/null differ diff --git a/assets/images/help/organizations/org-invite-modal.png b/assets/images/help/organizations/org-invite-modal.png deleted file mode 100644 index e1db38580e..0000000000 Binary files a/assets/images/help/organizations/org-invite-modal.png and /dev/null differ diff --git a/assets/images/help/organizations/organization-belongs-to.png b/assets/images/help/organizations/organization-belongs-to.png deleted file mode 100644 index 2116b009e1..0000000000 Binary files a/assets/images/help/organizations/organization-belongs-to.png and /dev/null differ diff --git a/assets/images/help/organizations/people-tab-invite-member-ghe.png b/assets/images/help/organizations/people-tab-invite-member-ghe.png deleted file mode 100644 index a1efb5c8dc..0000000000 Binary files a/assets/images/help/organizations/people-tab-invite-member-ghe.png and /dev/null differ diff --git a/assets/images/help/organizations/people-tab-invite-member.png b/assets/images/help/organizations/people-tab-invite-member.png deleted file mode 100644 index e5b173dc24..0000000000 Binary files a/assets/images/help/organizations/people-tab-invite-member.png and /dev/null differ diff --git a/assets/images/help/organizations/restrict-email-notifications-to-domain.png b/assets/images/help/organizations/restrict-email-notifications-to-domain.png deleted file mode 100644 index 6c2956b9f0..0000000000 Binary files a/assets/images/help/organizations/restrict-email-notifications-to-domain.png and /dev/null differ diff --git a/assets/images/help/organizations/secret-scanning-enable-push-protection-org-ghes.png b/assets/images/help/organizations/secret-scanning-enable-push-protection-org-ghes.png deleted file mode 100644 index 1c8516bcec..0000000000 Binary files a/assets/images/help/organizations/secret-scanning-enable-push-protection-org-ghes.png and /dev/null differ diff --git a/assets/images/help/organizations/secret-scanning-enable-push-protection-org.png b/assets/images/help/organizations/secret-scanning-enable-push-protection-org.png deleted file mode 100644 index 032c076e13..0000000000 Binary files a/assets/images/help/organizations/secret-scanning-enable-push-protection-org.png and /dev/null differ diff --git a/assets/images/help/organizations/verify-domain-final-button.png b/assets/images/help/organizations/verify-domain-final-button.png deleted file mode 100644 index 02a8748a6c..0000000000 Binary files a/assets/images/help/organizations/verify-domain-final-button.png and /dev/null differ diff --git a/assets/images/help/package-registry/connect-repository.png b/assets/images/help/package-registry/connect-repository.png deleted file mode 100644 index d53539b93f..0000000000 Binary files a/assets/images/help/package-registry/connect-repository.png and /dev/null differ diff --git a/assets/images/help/package-registry/packages-link.png b/assets/images/help/package-registry/packages-link.png deleted file mode 100644 index 085454c559..0000000000 Binary files a/assets/images/help/package-registry/packages-link.png and /dev/null differ diff --git a/assets/images/help/package-registry/select_a_repo.png b/assets/images/help/package-registry/select_a_repo.png deleted file mode 100644 index b335e7abbd..0000000000 Binary files a/assets/images/help/package-registry/select_a_repo.png and /dev/null differ diff --git a/assets/images/help/projects-v2/add-to-repo-button.png b/assets/images/help/projects-v2/add-to-repo-button.png deleted file mode 100644 index 05f3d5d703..0000000000 Binary files a/assets/images/help/projects-v2/add-to-repo-button.png and /dev/null differ diff --git a/assets/images/help/projects-v2/add-to-repo-search.png b/assets/images/help/projects-v2/add-to-repo-search.png deleted file mode 100644 index 6e49cd6031..0000000000 Binary files a/assets/images/help/projects-v2/add-to-repo-search.png and /dev/null differ diff --git a/assets/images/help/projects-v2/add-to-repo.png b/assets/images/help/projects-v2/add-to-repo.png deleted file mode 100644 index bcf0a3f6b8..0000000000 Binary files a/assets/images/help/projects-v2/add-to-repo.png and /dev/null differ diff --git a/assets/images/help/projects-v2/edit-description.png b/assets/images/help/projects-v2/edit-description.png deleted file mode 100644 index 3f8c35ea25..0000000000 Binary files a/assets/images/help/projects-v2/edit-description.png and /dev/null differ diff --git a/assets/images/help/projects-v2/edit-readme.png b/assets/images/help/projects-v2/edit-readme.png deleted file mode 100644 index 41713cff8b..0000000000 Binary files a/assets/images/help/projects-v2/edit-readme.png and /dev/null differ diff --git a/assets/images/help/projects-v2/new-field-date.png b/assets/images/help/projects-v2/new-field-date.png deleted file mode 100644 index dc8ae747cf..0000000000 Binary files a/assets/images/help/projects-v2/new-field-date.png and /dev/null differ diff --git a/assets/images/help/projects-v2/new-field-menu-item.png b/assets/images/help/projects-v2/new-field-menu-item.png deleted file mode 100644 index e6629009f6..0000000000 Binary files a/assets/images/help/projects-v2/new-field-menu-item.png and /dev/null differ diff --git a/assets/images/help/projects-v2/new-field-name.png b/assets/images/help/projects-v2/new-field-name.png deleted file mode 100644 index c2e7a57df9..0000000000 Binary files a/assets/images/help/projects-v2/new-field-name.png and /dev/null differ diff --git a/assets/images/help/projects-v2/new-field-save.png b/assets/images/help/projects-v2/new-field-save.png deleted file mode 100644 index b2e71c2cc8..0000000000 Binary files a/assets/images/help/projects-v2/new-field-save.png and /dev/null differ diff --git a/assets/images/help/projects-v2/save-readme-button.png b/assets/images/help/projects-v2/save-readme-button.png deleted file mode 100644 index 7488ac038c..0000000000 Binary files a/assets/images/help/projects-v2/save-readme-button.png and /dev/null differ diff --git a/assets/images/help/projects-v2/save-view.png b/assets/images/help/projects-v2/save-view.png deleted file mode 100644 index 3a0629cf80..0000000000 Binary files a/assets/images/help/projects-v2/save-view.png and /dev/null differ diff --git a/assets/images/help/projects-v2/show-hide-fields-menu-item.png b/assets/images/help/projects-v2/show-hide-fields-menu-item.png deleted file mode 100644 index 4f698acd3e..0000000000 Binary files a/assets/images/help/projects-v2/show-hide-fields-menu-item.png and /dev/null differ diff --git a/assets/images/help/projects-v2/show-hide-fields.png b/assets/images/help/projects-v2/show-hide-fields.png deleted file mode 100644 index daf757c922..0000000000 Binary files a/assets/images/help/projects-v2/show-hide-fields.png and /dev/null differ diff --git a/assets/images/help/projects-v2/visibility.png b/assets/images/help/projects-v2/visibility.png deleted file mode 100644 index ee4aa58973..0000000000 Binary files a/assets/images/help/projects-v2/visibility.png and /dev/null differ diff --git a/assets/images/help/projects/hidden-items.png b/assets/images/help/projects/hidden-items.png deleted file mode 100644 index 7bbd8ca356..0000000000 Binary files a/assets/images/help/projects/hidden-items.png and /dev/null differ diff --git a/assets/images/help/projects/select-project.png b/assets/images/help/projects/select-project.png deleted file mode 100644 index faad55e7d2..0000000000 Binary files a/assets/images/help/projects/select-project.png and /dev/null differ diff --git a/assets/images/help/projects/visibility-radio-buttons-ae.png b/assets/images/help/projects/visibility-radio-buttons-ae.png deleted file mode 100644 index bf88479cb4..0000000000 Binary files a/assets/images/help/projects/visibility-radio-buttons-ae.png and /dev/null differ diff --git a/assets/images/help/projects/visibility-radio-buttons-es.png b/assets/images/help/projects/visibility-radio-buttons-es.png deleted file mode 100644 index 74f0aaafe6..0000000000 Binary files a/assets/images/help/projects/visibility-radio-buttons-es.png and /dev/null differ diff --git a/assets/images/help/projects/visibility-radio-buttons.png b/assets/images/help/projects/visibility-radio-buttons.png deleted file mode 100644 index b423a1fd5e..0000000000 Binary files a/assets/images/help/projects/visibility-radio-buttons.png and /dev/null differ diff --git a/assets/images/help/pull_requests/allow-maintainers-to-make-edits.png b/assets/images/help/pull_requests/allow-maintainers-to-make-edits.png deleted file mode 100644 index 77fdd5abe1..0000000000 Binary files a/assets/images/help/pull_requests/allow-maintainers-to-make-edits.png and /dev/null differ diff --git a/assets/images/help/pull_requests/conflict-resolution-merge-dialog-box.png b/assets/images/help/pull_requests/conflict-resolution-merge-dialog-box.png deleted file mode 100644 index 1a23555504..0000000000 Binary files a/assets/images/help/pull_requests/conflict-resolution-merge-dialog-box.png and /dev/null differ diff --git a/assets/images/help/pull_requests/conversation-with-resolve-button.png b/assets/images/help/pull_requests/conversation-with-resolve-button.png deleted file mode 100644 index 219132349f..0000000000 Binary files a/assets/images/help/pull_requests/conversation-with-resolve-button.png and /dev/null differ diff --git a/assets/images/help/pull_requests/conversation.png b/assets/images/help/pull_requests/conversation.png deleted file mode 100644 index 5164b3d578..0000000000 Binary files a/assets/images/help/pull_requests/conversation.png and /dev/null differ diff --git a/assets/images/help/pull_requests/merge_box/pull-request-dismiss-review-button.png b/assets/images/help/pull_requests/merge_box/pull-request-dismiss-review-button.png deleted file mode 100644 index 0c97e9f640..0000000000 Binary files a/assets/images/help/pull_requests/merge_box/pull-request-dismiss-review-button.png and /dev/null differ diff --git a/assets/images/help/pull_requests/pull-request-base-branch-confirm.png b/assets/images/help/pull_requests/pull-request-base-branch-confirm.png deleted file mode 100644 index cc19dfb06d..0000000000 Binary files a/assets/images/help/pull_requests/pull-request-base-branch-confirm.png and /dev/null differ diff --git a/assets/images/help/pull_requests/pull-request-start-review-button.png b/assets/images/help/pull_requests/pull-request-start-review-button.png deleted file mode 100644 index 2cda370148..0000000000 Binary files a/assets/images/help/pull_requests/pull-request-start-review-button.png and /dev/null differ diff --git a/assets/images/help/pull_requests/pullrequest-send.png b/assets/images/help/pull_requests/pullrequest-send.png deleted file mode 100644 index 5416f5aa79..0000000000 Binary files a/assets/images/help/pull_requests/pullrequest-send.png and /dev/null differ diff --git a/assets/images/help/pull_requests/resolve-merge-conflict-select-conflicting-file.png b/assets/images/help/pull_requests/resolve-merge-conflict-select-conflicting-file.png deleted file mode 100644 index 5648e7dd00..0000000000 Binary files a/assets/images/help/pull_requests/resolve-merge-conflict-select-conflicting-file.png and /dev/null differ diff --git a/assets/images/help/pull_requests/resolved-conversation.png b/assets/images/help/pull_requests/resolved-conversation.png deleted file mode 100644 index 7152dacd89..0000000000 Binary files a/assets/images/help/pull_requests/resolved-conversation.png and /dev/null differ diff --git a/assets/images/help/pull_requests/view-merge-conflict-with-markers.png b/assets/images/help/pull_requests/view-merge-conflict-with-markers.png deleted file mode 100644 index 476154547d..0000000000 Binary files a/assets/images/help/pull_requests/view-merge-conflict-with-markers.png and /dev/null differ diff --git a/assets/images/help/repository/create-personal-repository-desc.png b/assets/images/help/repository/create-personal-repository-desc.png deleted file mode 100644 index 56cbc5f28e..0000000000 Binary files a/assets/images/help/repository/create-personal-repository-desc.png and /dev/null differ diff --git a/assets/images/help/repository/create-personal-repository-visibility.png b/assets/images/help/repository/create-personal-repository-visibility.png deleted file mode 100644 index b756cdeb00..0000000000 Binary files a/assets/images/help/repository/create-personal-repository-visibility.png and /dev/null differ diff --git a/assets/images/help/repository/create-repository-public-private.png b/assets/images/help/repository/create-repository-public-private.png deleted file mode 100644 index e9df928851..0000000000 Binary files a/assets/images/help/repository/create-repository-public-private.png and /dev/null differ diff --git a/assets/images/help/repository/enable-debug-logging.png b/assets/images/help/repository/enable-debug-logging.png deleted file mode 100644 index d02e0a916c..0000000000 Binary files a/assets/images/help/repository/enable-debug-logging.png and /dev/null differ diff --git a/assets/images/help/repository/enable-git-read-access-for-a-repo.png b/assets/images/help/repository/enable-git-read-access-for-a-repo.png deleted file mode 100644 index 515a42b246..0000000000 Binary files a/assets/images/help/repository/enable-git-read-access-for-a-repo.png and /dev/null differ diff --git a/assets/images/help/repository/limit-branches-and-tags-single-push.png b/assets/images/help/repository/limit-branches-and-tags-single-push.png deleted file mode 100644 index 6d7cb120dc..0000000000 Binary files a/assets/images/help/repository/limit-branches-and-tags-single-push.png and /dev/null differ diff --git a/assets/images/help/repository/limit-reviews-in-repository.png b/assets/images/help/repository/limit-reviews-in-repository.png deleted file mode 100644 index a02682b5e2..0000000000 Binary files a/assets/images/help/repository/limit-reviews-in-repository.png and /dev/null differ diff --git a/assets/images/help/repository/personal-repository-edit-readme.png b/assets/images/help/repository/personal-repository-edit-readme.png deleted file mode 100644 index 1869e03bf7..0000000000 Binary files a/assets/images/help/repository/personal-repository-edit-readme.png and /dev/null differ diff --git a/assets/images/help/repository/personal-repository-readme-template.png b/assets/images/help/repository/personal-repository-readme-template.png deleted file mode 100644 index f274ea9fe3..0000000000 Binary files a/assets/images/help/repository/personal-repository-readme-template.png and /dev/null differ diff --git a/assets/images/help/repository/repo-delete-confirmation.png b/assets/images/help/repository/repo-delete-confirmation.png deleted file mode 100644 index 2b3a939e55..0000000000 Binary files a/assets/images/help/repository/repo-delete-confirmation.png and /dev/null differ diff --git a/assets/images/help/repository/repo-delete.png b/assets/images/help/repository/repo-delete.png deleted file mode 100644 index ba9dc2837e..0000000000 Binary files a/assets/images/help/repository/repo-delete.png and /dev/null differ diff --git a/assets/images/help/repository/repo-username-match.png b/assets/images/help/repository/repo-username-match.png deleted file mode 100644 index c6d722a619..0000000000 Binary files a/assets/images/help/repository/repo-username-match.png and /dev/null differ diff --git a/assets/images/help/repository/repository-options-defaultbranch-change.png b/assets/images/help/repository/repository-options-defaultbranch-change.png deleted file mode 100644 index 86ba375f5d..0000000000 Binary files a/assets/images/help/repository/repository-options-defaultbranch-change.png and /dev/null differ diff --git a/assets/images/help/repository/repository-options-defaultbranch-drop-down.png b/assets/images/help/repository/repository-options-defaultbranch-drop-down.png deleted file mode 100644 index 47c05d57d7..0000000000 Binary files a/assets/images/help/repository/repository-options-defaultbranch-drop-down.png and /dev/null differ diff --git a/assets/images/help/repository/repository-options-defaultbranch-i-understand.png b/assets/images/help/repository/repository-options-defaultbranch-i-understand.png deleted file mode 100644 index ab7719c4d8..0000000000 Binary files a/assets/images/help/repository/repository-options-defaultbranch-i-understand.png and /dev/null differ diff --git a/assets/images/help/repository/repository-options-defaultbranch-update.png b/assets/images/help/repository/repository-options-defaultbranch-update.png deleted file mode 100644 index 340f063814..0000000000 Binary files a/assets/images/help/repository/repository-options-defaultbranch-update.png and /dev/null differ diff --git a/assets/images/help/repository/secret-scanning-validity-check.png b/assets/images/help/repository/secret-scanning-validity-check.png deleted file mode 100644 index ed5b1364b1..0000000000 Binary files a/assets/images/help/repository/secret-scanning-validity-check.png and /dev/null differ diff --git a/assets/images/help/repository/set-limit-branch-tags-single-push.png b/assets/images/help/repository/set-limit-branch-tags-single-push.png deleted file mode 100644 index d75ce475b7..0000000000 Binary files a/assets/images/help/repository/set-limit-branch-tags-single-push.png and /dev/null differ diff --git a/assets/images/help/repository/share-to-profile.png b/assets/images/help/repository/share-to-profile.png deleted file mode 100644 index b5b9a7eccb..0000000000 Binary files a/assets/images/help/repository/share-to-profile.png and /dev/null differ diff --git a/assets/images/help/repository/stl_wireframe.png b/assets/images/help/repository/stl_wireframe.png deleted file mode 100644 index b88343ac13..0000000000 Binary files a/assets/images/help/repository/stl_wireframe.png and /dev/null differ diff --git a/assets/images/help/repository/zenodo_authorize.png b/assets/images/help/repository/zenodo_authorize.png deleted file mode 100644 index 45dec28b24..0000000000 Binary files a/assets/images/help/repository/zenodo_authorize.png and /dev/null differ diff --git a/assets/images/help/repository/zenodo_github_page.png b/assets/images/help/repository/zenodo_github_page.png deleted file mode 100644 index b830b78416..0000000000 Binary files a/assets/images/help/repository/zenodo_github_page.png and /dev/null differ diff --git a/assets/images/help/repository/zenodo_login.png b/assets/images/help/repository/zenodo_login.png deleted file mode 100644 index 59b54a0328..0000000000 Binary files a/assets/images/help/repository/zenodo_login.png and /dev/null differ diff --git a/assets/images/help/repository/zenodo_login_with_github.png b/assets/images/help/repository/zenodo_login_with_github.png deleted file mode 100644 index d6a3f43485..0000000000 Binary files a/assets/images/help/repository/zenodo_login_with_github.png and /dev/null differ diff --git a/assets/images/help/repository/zenodo_toggle_on.png b/assets/images/help/repository/zenodo_toggle_on.png deleted file mode 100644 index dfdf04cb4e..0000000000 Binary files a/assets/images/help/repository/zenodo_toggle_on.png and /dev/null differ diff --git a/assets/images/help/search/repo-search-sort.png b/assets/images/help/search/repo-search-sort.png deleted file mode 100644 index d3a0b8341a..0000000000 Binary files a/assets/images/help/search/repo-search-sort.png and /dev/null differ diff --git a/assets/images/help/settings/enable-feature-button.png b/assets/images/help/settings/enable-feature-button.png deleted file mode 100644 index 657508296b..0000000000 Binary files a/assets/images/help/settings/enable-feature-button.png and /dev/null differ diff --git a/assets/images/help/settings/generate_new_token.png b/assets/images/help/settings/generate_new_token.png deleted file mode 100644 index 08b62c4200..0000000000 Binary files a/assets/images/help/settings/generate_new_token.png and /dev/null differ diff --git a/assets/images/help/settings/github-connect-tab-user-settings.png b/assets/images/help/settings/github-connect-tab-user-settings.png deleted file mode 100644 index 3cd85655ac..0000000000 Binary files a/assets/images/help/settings/github-connect-tab-user-settings.png and /dev/null differ diff --git a/assets/images/help/settings/github.com_end_user_connection.png b/assets/images/help/settings/github.com_end_user_connection.png deleted file mode 100644 index 6132dd9791..0000000000 Binary files a/assets/images/help/settings/github.com_end_user_connection.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-add-button.png b/assets/images/help/settings/scheduled-reminders-add-button.png deleted file mode 100644 index 1010734000..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-add-button.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-authorize-slack.png b/assets/images/help/settings/scheduled-reminders-authorize-slack.png deleted file mode 100644 index fca4080c24..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-authorize-slack.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-days.png b/assets/images/help/settings/scheduled-reminders-days.png deleted file mode 100644 index 02b78e4db1..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-days.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-ignored-labels-field.png b/assets/images/help/settings/scheduled-reminders-ignored-labels-field.png deleted file mode 100644 index 8136d77fb7..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-ignored-labels-field.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-ignored-terms-field.png b/assets/images/help/settings/scheduled-reminders-ignored-terms-field.png deleted file mode 100644 index 7d053749ed..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-ignored-terms-field.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-min-staleness-field.png b/assets/images/help/settings/scheduled-reminders-min-staleness-field.png deleted file mode 100644 index 520fa61112..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-min-staleness-field.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-prs-without-requests.png b/assets/images/help/settings/scheduled-reminders-prs-without-requests.png deleted file mode 100644 index eb5bfb75ab..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-prs-without-requests.png and /dev/null differ diff --git a/assets/images/help/settings/scheduled-reminders-required-labels-field.png b/assets/images/help/settings/scheduled-reminders-required-labels-field.png deleted file mode 100644 index 2776e74ff4..0000000000 Binary files a/assets/images/help/settings/scheduled-reminders-required-labels-field.png and /dev/null differ diff --git a/assets/images/help/sponsors/create-stripe-connect-account.png b/assets/images/help/sponsors/create-stripe-connect-account.png deleted file mode 100644 index 0e3ce3ac35..0000000000 Binary files a/assets/images/help/sponsors/create-stripe-connect-account.png and /dev/null differ diff --git a/assets/images/help/sponsors/edit-bank-info.png b/assets/images/help/sponsors/edit-bank-info.png deleted file mode 100644 index ab12448074..0000000000 Binary files a/assets/images/help/sponsors/edit-bank-info.png and /dev/null differ diff --git a/assets/images/help/sponsors/org-waitlist-payout-options.png b/assets/images/help/sponsors/org-waitlist-payout-options.png deleted file mode 100644 index 56b91f1936..0000000000 Binary files a/assets/images/help/sponsors/org-waitlist-payout-options.png and /dev/null differ diff --git a/assets/images/help/sponsors/overview-tab.png b/assets/images/help/sponsors/overview-tab.png deleted file mode 100644 index bfbf3ff9f7..0000000000 Binary files a/assets/images/help/sponsors/overview-tab.png and /dev/null differ diff --git a/assets/images/help/sponsors/pay-prorated-amount-link.png b/assets/images/help/sponsors/pay-prorated-amount-link.png deleted file mode 100644 index 0d62c93e5c..0000000000 Binary files a/assets/images/help/sponsors/pay-prorated-amount-link.png and /dev/null differ diff --git a/assets/images/help/sponsors/payout-receipts.png b/assets/images/help/sponsors/payout-receipts.png deleted file mode 100644 index 96774d2fb7..0000000000 Binary files a/assets/images/help/sponsors/payout-receipts.png and /dev/null differ diff --git a/assets/images/help/sponsors/profile-tab.png b/assets/images/help/sponsors/profile-tab.png deleted file mode 100644 index 54bfe8d9a7..0000000000 Binary files a/assets/images/help/sponsors/profile-tab.png and /dev/null differ diff --git a/assets/images/help/sponsors/publish-tier-button.png b/assets/images/help/sponsors/publish-tier-button.png deleted file mode 100644 index 6779789885..0000000000 Binary files a/assets/images/help/sponsors/publish-tier-button.png and /dev/null differ diff --git a/assets/images/help/sponsors/save-tier-draft.png b/assets/images/help/sponsors/save-tier-draft.png deleted file mode 100644 index b2edce722e..0000000000 Binary files a/assets/images/help/sponsors/save-tier-draft.png and /dev/null differ diff --git a/assets/images/help/sponsors/settings-tab.png b/assets/images/help/sponsors/settings-tab.png deleted file mode 100644 index ce98544d47..0000000000 Binary files a/assets/images/help/sponsors/settings-tab.png and /dev/null differ diff --git a/assets/images/help/sponsors/tier-price-description.png b/assets/images/help/sponsors/tier-price-description.png deleted file mode 100644 index a99595bad7..0000000000 Binary files a/assets/images/help/sponsors/tier-price-description.png and /dev/null differ diff --git a/assets/images/help/sponsors/webhook-payload-url.png b/assets/images/help/sponsors/webhook-payload-url.png deleted file mode 100644 index e094a26fda..0000000000 Binary files a/assets/images/help/sponsors/webhook-payload-url.png and /dev/null differ diff --git a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md index 0eae242153..4ea5aa0b74 100644 --- a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md +++ b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md @@ -126,7 +126,7 @@ jobs: - name: Git clone the repository uses: {% data reusables.actions.action-checkout %} - name: configure aws credentials - uses: aws-actions/configure-aws-credentials@v2 + uses: aws-actions/configure-aws-credentials@v3 with: role-to-assume: arn:aws:iam::1234567890:role/example-role role-session-name: samplerolesession diff --git a/content/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups.md b/content/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups.md index 3bfab059e3..d989070515 100644 --- a/content/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups.md +++ b/content/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups.md @@ -137,13 +137,18 @@ You can edit the name of your runner groups at the enterprise and organization l ### Moving an organization runner to a group {% endif %} -{% data reusables.actions.runner-groups-org-navigation %} +{% data reusables.organizations.navigate-to-org %} +{% data reusables.organizations.org_settings %} +{% data reusables.organizations.settings-sidebar-actions-runners %} {% data reusables.actions.moving-a-runner-to-a-group %} {% ifversion ghes or ghec or ghae %} ### Moving an enterprise runner to a group -{% data reusables.actions.runner-groups-enterprise-navigation %} +{% data reusables.enterprise-accounts.access-enterprise %} +{% data reusables.enterprise-accounts.policies-tab %} +{% data reusables.enterprise-accounts.actions-tab %} +{% data reusables.enterprise-accounts.actions-runners-tab %} {% data reusables.actions.moving-a-runner-to-a-group %} {% endif %} diff --git a/content/actions/learn-github-actions/usage-limits-billing-and-administration.md b/content/actions/learn-github-actions/usage-limits-billing-and-administration.md index 87b6eee168..a31d8fe2aa 100644 --- a/content/actions/learn-github-actions/usage-limits-billing-and-administration.md +++ b/content/actions/learn-github-actions/usage-limits-billing-and-administration.md @@ -62,7 +62,7 @@ There are some limits on {% data variables.product.prodname_actions %} usage whe | GitHub plan | Total concurrent jobs | Maximum concurrent macOS jobs | |---|---|---| - | All | 500 | Not applicable | + | All | 1000 | Not applicable | {% note %} diff --git a/content/actions/using-github-hosted-runners/about-github-hosted-runners.md b/content/actions/using-github-hosted-runners/about-github-hosted-runners.md index f40b584278..d192bf49c9 100644 --- a/content/actions/using-github-hosted-runners/about-github-hosted-runners.md +++ b/content/actions/using-github-hosted-runners/about-github-hosted-runners.md @@ -206,17 +206,11 @@ Windows virtual machines are configured to run as administrators with User Accou ## IP addresses -{% note %} - -**Note:** If you use an IP address allow list for your {% data variables.product.prodname_dotcom %} organization or enterprise account, you cannot use {% data variables.product.prodname_dotcom %}-hosted runners and must instead use self-hosted runners. For more information, see "[AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners)." - -{% endnote %} - To get a list of IP address ranges that {% data variables.product.prodname_actions %} uses for {% data variables.product.prodname_dotcom %}-hosted runners, you can use the {% data variables.product.prodname_dotcom %} REST API. For more information, see the `actions` key in the response of the "[AUTOTITLE](/rest/meta#get-github-meta-information)" endpoint. Windows and Ubuntu runners are hosted in Azure and subsequently have the same IP address ranges as the Azure datacenters. macOS runners are hosted in {% data variables.product.prodname_dotcom %}'s own macOS cloud. -Since there are so many IP address ranges for {% data variables.product.prodname_dotcom %}-hosted runners, we do not recommend that you use these as allow-lists for your internal resources. +Since there are so many IP address ranges for {% data variables.product.prodname_dotcom %}-hosted runners, we do not recommend that you use these as allowlists for your internal resources. Instead, we recommend you use {% data variables.actions.hosted_runner %}s with a static IP address range, or self-hosted runners. For more information, see "[AUTOTITLE](/actions/using-github-hosted-runners/about-larger-runners)" or "[AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners)." The list of {% data variables.product.prodname_actions %} IP addresses returned by the API is updated once a week. diff --git a/content/actions/using-github-hosted-runners/controlling-access-to-larger-runners.md b/content/actions/using-github-hosted-runners/controlling-access-to-larger-runners.md index 2b8faa96aa..e716d1b68e 100644 --- a/content/actions/using-github-hosted-runners/controlling-access-to-larger-runners.md +++ b/content/actions/using-github-hosted-runners/controlling-access-to-larger-runners.md @@ -133,13 +133,18 @@ You can rename runner groups at the enterprise and organization levels. ### Moving an organization runner to a group {% endif %} -{% data reusables.actions.runner-groups-org-navigation %} +{% data reusables.organizations.navigate-to-org %} +{% data reusables.organizations.org_settings %} +{% data reusables.organizations.settings-sidebar-actions-runners %} {% data reusables.actions.moving-a-runner-to-a-group %} {% ifversion ghec %} ### Moving an enterprise runner to a group -{% data reusables.actions.runner-groups-enterprise-navigation %} +{% data reusables.enterprise-accounts.access-enterprise %} +{% data reusables.enterprise-accounts.policies-tab %} +{% data reusables.enterprise-accounts.actions-tab %} +{% data reusables.enterprise-accounts.actions-runners-tab %} {% data reusables.actions.moving-a-runner-to-a-group %} {% endif %} diff --git a/content/actions/using-github-hosted-runners/managing-larger-runners.md b/content/actions/using-github-hosted-runners/managing-larger-runners.md index e2c51bb12f..161a2d2cb6 100644 --- a/content/actions/using-github-hosted-runners/managing-larger-runners.md +++ b/content/actions/using-github-hosted-runners/managing-larger-runners.md @@ -44,9 +44,7 @@ Repositories are granted access to {% data variables.actions.hosted_runner %}s t Once a repository has access to {% data variables.actions.hosted_runner %}s, the {% data variables.actions.hosted_runner %}s can be added to workflow files. For more information, see "[AUTOTITLE](/actions/using-github-hosted-runners/running-jobs-on-larger-runners)." -{% data reusables.organizations.navigate-to-org %} -{% data reusables.organizations.org_settings %} -{% data reusables.organizations.settings-sidebar-actions-runners %} +{% data reusables.actions.runner-groups-org-navigation %} 1. Select a runner group from either list on the page. Organization-level runner groups are listed at the top of the page, and enterprise-level runner groups are listed under "Shared by the Enterprise." 1. On the runner group page, under "Repository access," select **All repositories** or **Selected repositories**. If you choose to grant access to specific repositories, click {% octicon "gear" aria-label="The Settings gear" %}, then select the repositories you would like to grant access to from the list. diff --git a/content/apps/creating-github-apps/authenticating-with-a-github-app/making-authenticated-api-requests-with-a-github-app-in-a-github-actions-workflow.md b/content/apps/creating-github-apps/authenticating-with-a-github-app/making-authenticated-api-requests-with-a-github-app-in-a-github-actions-workflow.md index e845986c1b..55c1a136b6 100644 --- a/content/apps/creating-github-apps/authenticating-with-a-github-app/making-authenticated-api-requests-with-a-github-app-in-a-github-actions-workflow.md +++ b/content/apps/creating-github-apps/authenticating-with-a-github-app/making-authenticated-api-requests-with-a-github-app-in-a-github-actions-workflow.md @@ -29,17 +29,13 @@ In order to use a {% data variables.product.prodname_github_app %} to make authe 1. Install the {% data variables.product.prodname_github_app %} on your user account or organization and grant it access to any repositories that you want your workflow to access. For more information, see "[AUTOTITLE](/apps/maintaining-github-apps/installing-github-apps#installing-your-private-github-app-on-your-repository)." 1. In your {% data variables.product.prodname_actions %} workflow, create an installation access token, which you can use to make API requests. - To do this, you can use a pre-made action as demonstrated in the following example. If you prefer to not use a third party action, you can fork and modify the `tibdex/github-app-token` action, or you can write a script to make your workflow create an installation token manually. For more information, see "[AUTOTITLE](/apps/creating-github-apps/authenticating-with-a-github-app/authenticating-as-a-github-app-installation)." + To do this, you can use a {% data variables.product.company_short %}-owned action as demonstrated in the following example. If you prefer to not use this action, you can fork and modify the [`actions/create-github-app-token` action](https://github.com/actions/create-github-app-token), or you can write a script to make your workflow create an installation token manually. For more information, see "[AUTOTITLE](/apps/creating-github-apps/authenticating-with-a-github-app/authenticating-as-a-github-app-installation)." - The following example workflow uses the `tibdex/github-app-token` action to generate an installation access token. Then, the workflow uses the token to make an API request via the {% data variables.product.prodname_cli %}. + The following example workflow uses the `actions/create-github-app-token` action to generate an installation access token. Then, the workflow uses the token to make an API request via the {% data variables.product.prodname_cli %}. In the following workflow, replace `APP_ID` with the name of the secret where you stored your app ID. Replace `APP_PRIVATE_KEY` with the name of the secret where you stored your app private key. ```yaml copy -{% data reusables.actions.actions-not-certified-by-github-comment %} - -{% data reusables.actions.actions-use-sha-pinning-comment %} - on: workflow_dispatch: jobs: @@ -48,7 +44,7 @@ jobs: steps: - name: Generate a token id: generate_token - uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 + uses: actions/create-github-app-token@v1 with: app_id: {% raw %}${{ secrets.APP_ID }}{% endraw %} private_key: {% raw %}${{ secrets.APP_PRIVATE_KEY }}{% endraw %} diff --git a/content/apps/publishing-apps-to-github-marketplace/using-the-github-marketplace-api-in-your-app/webhook-events-for-the-github-marketplace-api.md b/content/apps/publishing-apps-to-github-marketplace/using-the-github-marketplace-api-in-your-app/webhook-events-for-the-github-marketplace-api.md index c87ee86b6c..fb4310d786 100644 --- a/content/apps/publishing-apps-to-github-marketplace/using-the-github-marketplace-api-in-your-app/webhook-events-for-the-github-marketplace-api.md +++ b/content/apps/publishing-apps-to-github-marketplace/using-the-github-marketplace-api-in-your-app/webhook-events-for-the-github-marketplace-api.md @@ -19,7 +19,7 @@ shortTitle: Webhook events ## About webhooks and {% data variables.product.prodname_marketplace %} -Webhooks `POST` requests have special headers. See "[AUTOTITLE](/webhooks-and-events/webhooks/webhook-events-and-payloads#delivery-headers)" for more details. GitHub doesn't resend failed delivery attempts. Ensure your app can receive all webhook payloads sent by GitHub. +Webhooks `POST` requests have special headers. See "[AUTOTITLE](/webhooks-and-events/webhooks/webhook-events-and-payloads#delivery-headers)" for more details. GitHub doesn't resend failed delivery attempts. Ensure your app can receive all webhook payloads sent by GitHub. For information about how to create and disable {% data variables.product.prodname_marketplace %} webhooks, see "[AUTOTITLE](/webhooks/using-webhooks/creating-webhooks)" and "[AUTOTITLE](/webhooks/using-webhooks/disabling-webhooks)." Cancellations and downgrades take effect on the first day of the next billing cycle. Events for downgrades and cancellations are sent when the new plan takes effect at the beginning of the next billing cycle. Events for new purchases and upgrades begin immediately. Use the `effective_date` in the webhook payload to determine when a change will begin. diff --git a/content/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository.md b/content/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository.md index fbb39f22f4..a7bc660fba 100644 --- a/content/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository.md +++ b/content/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository.md @@ -92,7 +92,7 @@ If you want to use Git hooks for your codespace, then you should set up hooks us 1. At the top right of the **Codespaces** tab, select {% octicon "kebab-horizontal" aria-label="Codespace repository configuration" %} and click **New with options**. - ![Screenshot of the options dropdown in the "{% data variables.product.prodname_codespaces %}" tab, with the option "New with options" highlighted.](/assets/images/help/codespaces/default-machine-type.png) + ![Screenshot of the options dropdown in the "{% data variables.product.prodname_codespaces %}" tab, with the option "New with options" highlighted.](/assets/images/help/codespaces/default-machine-type.png) 1. On the options page for your codespace, choose your preferred options from the dropdown menus. diff --git a/content/contributing/writing-for-github-docs/style-guide.md b/content/contributing/writing-for-github-docs/style-guide.md index 33cd21207b..a4dcde913f 100644 --- a/content/contributing/writing-for-github-docs/style-guide.md +++ b/content/contributing/writing-for-github-docs/style-guide.md @@ -139,9 +139,9 @@ schedule: - cron: "40 19 * * *" ``` -### File and directory names +### File names and directory names -Use inline codeblocks to refer to file and directory names. If a file type generally follows a specific capitalization convention, such as all caps for README files, use the established convention. +Use backticks to format references to file names and directory names in a monospaced font. If a file type generally follows a specific capitalization convention, such as all caps for README files, use the established convention. - **Use:** In your `README.md` file, add info about your repository. - **Use:** In your `.github/workflows/` directory, create the `example-workflow.yml` file. @@ -262,9 +262,9 @@ Do not use screenshots of command-line interfaces to convey commands and their o When using a screenshot of a command-line interface to show user interface elements, follow standard alt text guidelines for screenshots. -### Filenames +### File names for images -Be descriptive when naming image files: include the name, action, and UI element in the filename. Mirror product language. Use kebab case. Do not use Liquid conditionals in filenames. If replacing an image, use the exact filename. +Be descriptive when naming image files: include the name, action, and UI element in the file name. Mirror product language. Use kebab case. Do not use Liquid conditionals in file names. If replacing an image, use the exact file name. - **Use:** `data-pack-purchase-button.png` - **Avoid:** `purchase_button.png` - **Avoid:** `purchase-button{% ifversion ghes %}-for-admins{% endif %}.png` @@ -575,7 +575,7 @@ This section describes additional conventions that are specific to GitHub produc Code examples that use first-party actions must use the respective reusable for that action. This makes action version updates (e.g. from `v1` to `v2`) easier to manage for products like {% data variables.product.prodname_ghe_server %}, which might not have the same action version available until a future {% data variables.product.prodname_ghe_server %} release. -Actions reusables are located in `/data/reusables/actions/` and have a filename like `action-.md` +Actions reusables are located in `/data/reusables/actions/` and have a file name like `action-.md` For example, to use the `actions/checkout` action in an example, use its reusable: diff --git a/content/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions.md b/content/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions.md index 889242472c..a5c2d01021 100644 --- a/content/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions.md +++ b/content/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions.md @@ -53,8 +53,7 @@ For more information about authenticating in a {% data variables.product.prodnam 1. In the following workflow, replace `YOUR_ORGANIZATION` with the name of your organization. For example, `octo-org`. Replace `YOUR_PROJECT_NUMBER` with your project number. To find the project number, look at the project URL. For example, `https://github.com/orgs/octo-org/projects/5` has a project number of 1. In order for this specific example to work, your project must also have a "Date posted" date field. ```yaml annotate copy -{% data reusables.actions.actions-not-certified-by-github-comment %} -{% data reusables.actions.actions-use-sha-pinning-comment %} +# name: Add PR to project # This workflow runs whenever a pull request in the repository is marked as "ready for review". on: @@ -65,14 +64,14 @@ jobs: track_pr: runs-on: ubuntu-latest steps: - # Uses the [tibdex/github-app-token](https://github.com/tibdex/github-app-token) action to generate an installation access token for your app from the app ID and private key. The installation access token is accessed later in the workflow as `{% raw %}${{ steps.generate_token.outputs.token }}{% endraw %}`. + # Uses the [actions/create-github-app-token](https://github.com/marketplace/actions/create-github-app-token) action to generate an installation access token for your app from the app ID and private key. The installation access token is accessed later in the workflow as `{% raw %}${{ steps.generate_token.outputs.token }}{% endraw %}`. # #Replace `APP_ID` with the name of the secret that contains your app ID. # #Replace `APP_PEM` with the name of the secret that contains your app private key. - name: Generate token id: generate_token - uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 + uses: actions/create-github-app-token@v1 with: app_id: {% raw %}${{ secrets.APP_ID }}{% endraw %} private_key: {% raw %}${{ secrets.APP_PEM }}{% endraw %} diff --git a/content/rest/quickstart.md b/content/rest/quickstart.md index 69fe62fe4b..bef440d73f 100644 --- a/content/rest/quickstart.md +++ b/content/rest/quickstart.md @@ -82,8 +82,6 @@ If you are authenticating with a {% data variables.product.prodname_github_app % 1. Add a step to generate a token, and use that token instead of `GITHUB_TOKEN`. Note that this token will expire after 60 minutes. For example: ```yaml - {% data reusables.actions.actions-not-certified-by-github-comment %} - on: workflow_dispatch: jobs: @@ -92,7 +90,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app % steps: - name: Generate token id: generate_token - uses: tibdex/github-app-token@c2055a00597a80f713b78b1650e8d3418f4d9a65 + uses: actions/create-github-app-token@v1 with: app_id: {% raw %}${{ secrets.APP_ID }}{% endraw %} private_key: {% raw %}${{ secrets.APP_PEM }}{% endraw %} @@ -226,9 +224,6 @@ If you are authenticating with a {% data variables.product.prodname_github_app % 1. Add a step to generate a token, and use that token instead of `GITHUB_TOKEN`. Note that this token will expire after 60 minutes. For example: ```yaml - - {% data reusables.actions.actions-not-certified-by-github-comment %} - on: workflow_dispatch: jobs: @@ -249,7 +244,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app % - name: Generate token id: generate_token - uses: tibdex/github-app-token@c2055a00597a80f713b78b1650e8d3418f4d9a65 + uses: actions/create-github-app-token@v1 with: app_id: {% raw %}${{ secrets.APP_ID }}{% endraw %} private_key: {% raw %}${{ secrets.APP_PEM }}{% endraw %} @@ -355,9 +350,6 @@ If you are authenticating with a {% data variables.product.prodname_github_app % 1. Add a step to generate a token, and use that token instead of `GITHUB_TOKEN`. Note that this token will expire after 60 minutes. For example: ```yaml - - {% data reusables.actions.actions-not-certified-by-github-comment %} - on: workflow_dispatch: jobs: @@ -366,7 +358,7 @@ If you are authenticating with a {% data variables.product.prodname_github_app % steps: - name: Generate token id: generate_token - uses: tibdex/github-app-token@c2055a00597a80f713b78b1650e8d3418f4d9a65 + uses: actions/create-github-app-token@v1 with: app_id: {% raw %}${{ secrets.APP_ID }}{% endraw %} private_key: {% raw %}${{ secrets.APP_PEM }}{% endraw %} diff --git a/content/site-policy/privacy-policies/github-copilot-for-business-privacy-statement.md b/content/site-policy/privacy-policies/github-copilot-for-business-privacy-statement.md index acdd0fca25..e882fc168a 100644 --- a/content/site-policy/privacy-policies/github-copilot-for-business-privacy-statement.md +++ b/content/site-policy/privacy-policies/github-copilot-for-business-privacy-statement.md @@ -7,27 +7,55 @@ topics: - Legal --- -Effective Date: December 7, 2022 +Effective Date: August 31, 2023 Use of GitHub Copilot for Business is also subject to the [GitHub Privacy Statement](/site-policy/privacy-policies/github-privacy-statement), the [Acceptable Use Policies](/site-policy/acceptable-use-policies/github-acceptable-use-policies) and the [GitHub Copilot for Business license terms](https://github.com/customer-terms/github-copilot-product-specific-terms). -## What data does Copilot for Business collect? +## What personal data does Copilot for Business collect? -Copilot for Business relies on file content and additional data to work. It collects data to provide the service, some of which is then saved for further analysis and product improvements. Copilot for Business collects data as described below: +GitHub Copilot for Business collects personal data from three categories of data: User Engagement Data, Prompts and Suggestions. -## User Engagement Data +### User engagement data -When you use Copilot for Business it will collect usage information about events generated when interacting with the IDE or editor. These events include user edit actions like completions accepted and dismissed, and error and general usage data to identify metrics like latency and features engagement. This information may include personal data, such as pseudonymous identifiers. +User engagement data is usage information about events generated when interacting with a code editor. These events include user edit actions (for example completions accepted and dismissed), error messages, and general usage data to identify user metrics such as latency and feature engagement. This information may include personal data, such as pseudonymous identifiers. -## Code Snippets Data +### Prompts -GitHub Copilot transmits snippets of your code from your IDE to GitHub to provide Suggestions to you. Code snippets data is only transmitted in real-time to return Suggestions, and is discarded once a Suggestion is returned. Copilot for Business does not retain any Code Snippets Data. +A prompt is the collection of code and supporting contextual information that the GitHub Copilot extension sends to GitHub to generate suggestions. The extension sends a prompt when a user working on a file pauses typing, or uses a designated keyboard shortcut to request a suggestion. -## How is data in Copilot for Business used and shared? +### Suggestions -User Engagement Data is used by GitHub, and Microsoft to provide the service and to enable improvements. +A suggestion is one or more lines of proposed code and other output returned to the Copilot extension after a prompt is received and processed by the AI models that power Copilot. -Such uses may include: +## How long does GitHub Copilot for Business retain personal data? + +### User engagement data + +User engagement data is retained by GitHub for 24 months. + +### Prompts + +Prompts are discarded once a suggestion is returned. + +### Suggestions + +Suggestions are not retained by GitHub. + +## What processing role does GitHub play with respect to personal data collected by GitHub Copilot for Business? + +For purposes of this section, we use “processor" in the meaning of the EU’s General Data Protection Regulation. + +For enterprises using Copilot for Business, GitHub acts primarily as a processor for personal data. + +GitHub’s data protection commitments to our enterprise customers are laid out in [GitHub’s Data Protection Agreement](https://github.com/customer-terms/github-data-protection-agreement) (“GitHub DPA”). Per the GitHub DPA, GitHub acts primarily as a processor (or subprocessor to enterprise customers who are processors) whenever it processes personal data to provide Copilot. “Providing” Copilot includes processing activities, such as delivering functional capabilities, troubleshooting, and making ongoing improvements. + +GitHub processes personal data as a controller in limited, contractually agreed circumstances including billing and account management, and to produce aggregated reports for capacity planning, product development and regulatory financial reports. + +## How does Copilot for Business use and share personal data? + +Prompts and Suggestions are used only to provide the service and are not retained. + +User Engagement Data is used by GitHub, and Microsoft to provide the service and to enable improvements. Such uses may include: - Evaluating GitHub Copilot, for example, by measuring the positive impact it has on the user - Fine tuning ranking and sorting algorithms and prompt crafting - Detecting potential abuse of GitHub Copilot or violation of [Acceptable Use Policies](/site-policy/acceptable-use-policies/github-acceptable-use-policies). @@ -37,4 +65,4 @@ Such uses may include: User engagement data (which includes pseudonymous identifiers and general usage data), is required for the use of GitHub Copilot and will continue to be collected, processed, and shared with Microsoft when you use GitHub Copilot. -For more information on how GitHub processes and uses personal data, please see the [GitHub Privacy Statement](/site-policy/privacy-policies/github-privacy-statement). +For more information on how GitHub processes and uses personal data, please see the [GitHub Privacy Statement](/site-policy/privacy-policies/github-privacy-statement). \ No newline at end of file diff --git a/content/support/learning-about-github-support/about-github-premium-support.md b/content/support/learning-about-github-support/about-github-premium-support.md index dc4c74a2fc..7b14eeecf8 100644 --- a/content/support/learning-about-github-support/about-github-premium-support.md +++ b/content/support/learning-about-github-support/about-github-premium-support.md @@ -117,9 +117,9 @@ If you use a custom or unsupported plug-in, module, or custom code, {% data vari ## Receiving credits for missed responses to support tickets -If you don't receive an initial response within the guaranteed response time to more than four tickets in a given quarter based on {% data variables.product.company_short %}'s fiscal year, you're eligible for a credit. To honor the SLA, {% data variables.product.company_short %} will refund 20% of the quarterly {% data variables.contact.premium_support %} fee in cash. To receive the refund, you must submit a credit request. +If you don't receive an initial response within the guaranteed response time to more than four tickets in a given quarter based on {% data variables.product.company_short %}'s fiscal year, you're eligible for a credit. To honor the SLA, {% data variables.product.company_short %} will refund 20% of the quarterly {% data variables.contact.premium_support %} fee. To receive the refund, you must submit a credit request. -The credit request must be made within 30 days of the end of the quarter during which {% data variables.contact.premium_support %} did not respond to your tickets within the designated response time. Credit requests will not be honored if the respective deadline has passed. Once the respective deadline passes, you have waived the ability to claim a refund for the qualified credit. +The credit request must be made within 30 days of the end of the quarter during which {% data variables.contact.premium_support %} did not respond to your tickets within the designated response time. Credit requests will not be honored if the respective deadline has passed. Once the respective deadline passes, you have waived the ability to claim a refund for the qualified credit. Credit requests may take the form of a refund or credit to your account, cannot be exchanged into a cash amount, require you to have paid any outstanding invoices, and expire upon termination of your agreement with {% data variables.product.company_short %}. To receive a refund, you must submit a completed credit request to . To be eligible, the credit request must: - Be sent from an email address associated with your account on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.location.product_location %}{% endif %} diff --git a/content/webhooks/testing-and-troubleshooting-webhooks/index.md b/content/webhooks/testing-and-troubleshooting-webhooks/index.md index b38c4b9c43..d5ee2dd334 100644 --- a/content/webhooks/testing-and-troubleshooting-webhooks/index.md +++ b/content/webhooks/testing-and-troubleshooting-webhooks/index.md @@ -10,6 +10,7 @@ topics: - Webhooks children: - /viewing-webhook-deliveries + - /redelivering-webhooks - /testing-webhooks - /receiving-webhooks-with-the-github-cli --- diff --git a/content/webhooks/testing-and-troubleshooting-webhooks/redelivering-webhooks.md b/content/webhooks/testing-and-troubleshooting-webhooks/redelivering-webhooks.md new file mode 100644 index 0000000000..2640822c63 --- /dev/null +++ b/content/webhooks/testing-and-troubleshooting-webhooks/redelivering-webhooks.md @@ -0,0 +1,103 @@ +--- +title: Redelivering webhooks +intro: 'To help recover from failed deliveries, you can redeliver webhook deliveries from the past 30 days.' +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - Webhooks +--- + +## About redelivering webhooks + +You may want to redeliver a webhook to help you test your application or to recover from server downtime. You can redeliver webhook deliveries that occurred in the past 30 days. + +## Redelivering repository webhooks + +Only people with admin access to a repository can redeliver webhooks in that repository. + +You can use the {% data variables.product.company_short %} web interface or the REST API to redeliver webhooks for a repository. For more information about using the REST API to redeliver webhooks, see "[AUTOTITLE](/rest/webhooks/repo-deliveries)." + +{% data reusables.repositories.navigate-to-repo %} +{% data reusables.repositories.sidebar-settings %} +1. In the "Code and automation" section of the sidebar, click **{% octicon "webhook" aria-hidden="true" %} Webhooks**. +{% data reusables.webhooks.webhook_url_list_redeliver %} +{% data reusables.webhooks.webhook_recent_deliveries_tab %} +1. Click the delivery GUID for the delivery that you want to redeliver. +1. Click **Redeliver**. + +## Redelivering organization webhooks + +Only organization owners can redeliver webhooks in that organization. + +You can use the {% data variables.product.company_short %} web interface or the REST API to redeliver webhooks for an organization. For more information about using the REST API to redeliver webhooks, see "[AUTOTITLE](/rest/orgs/webhooks)." + +{% data reusables.organizations.navigate-to-org %} +{% data reusables.organizations.org_settings %} +1. In the "Code and automation" section of the sidebar, click **{% octicon "webhook" aria-hidden="true" %} Webhooks**. +{% data reusables.webhooks.webhook_url_list_redeliver %} +{% data reusables.webhooks.webhook_recent_deliveries_tab %} +1. Click the delivery GUID for the delivery that you want to redeliver. +1. Click **Redeliver**. + +## Redelivering {% data variables.product.prodname_github_app %} webhooks + +The owner of a {% data variables.product.prodname_github_app %} can redeliver webhooks for the app. If an organization has designated any app managers for a {% data variables.product.prodname_github_app %} owned by the organization, the app managers can also redeliver webhooks. + +You can use the {% data variables.product.company_short %} web interface or the REST API to redeliver webhooks for a {% data variables.product.prodname_github_app %}. For more information about using the REST API redeliver, see "[AUTOTITLE](/rest/apps/webhooks)." + +{% data reusables.apps.settings-step %} +{% data reusables.user-settings.developer_settings %} +{% data reusables.user-settings.github_apps %} +1. Next to the {% data variables.product.prodname_github_app %} that you want to redeliver a webhook for, click **Edit**. +1. In the sidebar, click **Advanced**. +{% data reusables.webhooks.webhook_recent_deliveries_redeliver %} +1. Click **Redeliver**. + +{% ifversion fpt or ghec %} + +## Redelivering {% data variables.product.prodname_marketplace %} webhooks + +The owner of a {% data variables.product.prodname_github_app %} can redeliver {% data variables.product.prodname_marketplace %} webhooks for that app. If an organization has designated any app managers for a {% data variables.product.prodname_github_app %} owned by the organization, the app managers can also redeliver webhooks. + +1. Navigate to your [{% data variables.product.prodname_marketplace %} listing page](https://github.com/marketplace/manage). +1. Next to the {% data variables.product.prodname_marketplace %} listing for which you want to redeliver webhooks, click **Manage listing**. +1. In the sidebar, click **Webhook**. +{% data reusables.webhooks.webhook_recent_deliveries_redeliver %} +1. Click **Redeliver**. + +{% endif %} + +{% ifversion fpt or ghec %} + +## Redelivering {% data variables.product.prodname_sponsors %} webhooks + +Only the owner of the sponsored account can redeliver sponsorship webhooks for that account. + +1. In the upper-right corner of any page, click your profile photo, then click **Your sponsors**. +1. Next to the account for which you want to redeliver webhooks, click **Dashboard**. +1. In the sidebar, click **Webhooks**. +{% data reusables.webhooks.webhook_url_list_redeliver %} +{% data reusables.webhooks.webhook_recent_deliveries_redeliver %} +1. Click **Redeliver**. + +{% endif %} + +{% ifversion ghes or ghae or ghec %} + +## Redelivering global webhooks + +Only enterprise owners can redeliver webhooks in that enterprise. + +{% ifversion ghes or ghae %}You can use the {% data variables.product.company_short %} web interface or the REST API to redeliver global webhooks. For more information about using the REST API to redeliver webhooks, see "[AUTOTITLE](/rest/enterprise-admin/global-webhooks)."{% endif %} + +{% data reusables.enterprise-accounts.access-enterprise %} +{% data reusables.enterprise-accounts.settings-tab %} +{% data reusables.enterprise-accounts.hooks-tab %} +{% data reusables.webhooks.webhook_url_list_redeliver %} +{% data reusables.webhooks.webhook_recent_deliveries_redeliver %} +1. Click **Redeliver**. + +{% endif %} diff --git a/content/webhooks/testing-and-troubleshooting-webhooks/viewing-webhook-deliveries.md b/content/webhooks/testing-and-troubleshooting-webhooks/viewing-webhook-deliveries.md index 90a3330038..b9716c792e 100644 --- a/content/webhooks/testing-and-troubleshooting-webhooks/viewing-webhook-deliveries.md +++ b/content/webhooks/testing-and-troubleshooting-webhooks/viewing-webhook-deliveries.md @@ -20,6 +20,8 @@ For each webhook delivery, you can view: - the time at which the request was sent - the response that {% data variables.product.company_short %} received from your server +You can also redeliver recent webhook deliveries. For more information, see "[AUTOTITLE](/webhooks/testing-and-troubleshooting-webhooks/redelivering-webhooks)." + ## Viewing deliveries for repository webhooks Only people with admin access to a repository can view deliveries for webhooks in that repository. @@ -31,6 +33,7 @@ You can use the {% data variables.product.company_short %} web interface or the 1. In the "Code and automation" section of the sidebar, click **{% octicon "webhook" aria-hidden="true" %} Webhooks**. {% data reusables.webhooks.webhook_url_list %} {% data reusables.webhooks.webhook_recent_deliveries_tab %} +1. Click a delivery GUID to view details. ## Viewing deliveries for organization webhooks @@ -43,6 +46,7 @@ You can use the {% data variables.product.company_short %} web interface or the 1. In the "Code and automation" section of the sidebar, click **{% octicon "webhook" aria-hidden="true" %} Webhooks**. {% data reusables.webhooks.webhook_url_list %} {% data reusables.webhooks.webhook_recent_deliveries_tab %} +1. Click a delivery GUID to view details. ## Viewing deliveries for {% data variables.product.prodname_github_app %} webhooks @@ -57,6 +61,8 @@ You can use the {% data variables.product.company_short %} web interface or the 1. In the sidebar, click **Advanced**. {% data reusables.webhooks.webhook_recent_deliveries %} +{% ifversion fpt or ghec %} + ## Viewing deliveries for {% data variables.product.prodname_marketplace %} webhooks The owner of a {% data variables.product.prodname_github_app %} can view recent {% data variables.product.prodname_marketplace %} webhook deliveries for the app. If an organization has designated any app managers for a {% data variables.product.prodname_github_app %} owned by the organization, the app managers can also view recent webhook deliveries. @@ -66,6 +72,9 @@ The owner of a {% data variables.product.prodname_github_app %} can view recent 1. In the sidebar, click **Webhook**. {% data reusables.webhooks.webhook_recent_deliveries %} +{% endif %} + +{% ifversion fpt or ghec %} ## Viewing deliveries for {% data variables.product.prodname_sponsors %} webhooks Only the owner of the sponsored account can view deliveries for sponsorship webhooks for that account. @@ -76,6 +85,8 @@ Only the owner of the sponsored account can view deliveries for sponsorship webh {% data reusables.webhooks.webhook_url_list %} {% data reusables.webhooks.webhook_recent_deliveries %} +{% endif %} + {% ifversion ghes or ghae or ghec %} ## Viewing deliveries for global webhooks diff --git a/content/webhooks/using-webhooks/best-practices-for-using-webhooks.md b/content/webhooks/using-webhooks/best-practices-for-using-webhooks.md index ab6dc1fbf5..b80e252933 100644 --- a/content/webhooks/using-webhooks/best-practices-for-using-webhooks.md +++ b/content/webhooks/using-webhooks/best-practices-for-using-webhooks.md @@ -13,7 +13,7 @@ topics: ## Subscribe to the minimum number of events -You should only subscribe to the webhook events that you need. This will reduce the amount of work your server needs to do. +You should only subscribe to the webhook events that you need. This will reduce the amount of work your server needs to do. For more information, see "[AUTOTITLE](/webhooks/creating-webhooks)." ## Use a webhook secret @@ -49,9 +49,7 @@ There are multiple webhook event types, and many events can have multiple action ## Redeliver missed deliveries -If your server goes down, you should redeliver missed webhooks once your server is back up. - -For more information, see {% ifversion ghes or ghae %}"[AUTOTITLE](/rest/webhooks/repo-deliveries)," "[AUTOTITLE](/rest/orgs/webhooks)," and "[AUTOTITLE](/rest/enterprise-admin/global-webhooks)."{% else %}"[AUTOTITLE](/rest/webhooks/repo-deliveries)" and "[AUTOTITLE](/rest/orgs/webhooks)."{% endif %} +If your server goes down, you should redeliver missed webhooks once your server is back up. For more information, see "[AUTOTITLE](/webhooks/testing-and-troubleshooting-webhooks/redelivering-webhooks)." ## Further reading diff --git a/content/webhooks/using-webhooks/configuring-your-server-to-receive-payloads.md b/content/webhooks/using-webhooks/configuring-your-server-to-receive-payloads.md deleted file mode 100644 index af96c88c95..0000000000 --- a/content/webhooks/using-webhooks/configuring-your-server-to-receive-payloads.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -title: Configuring your server to receive payloads -intro: Learn to set up a server to manage incoming webhook payloads. -redirect_from: - - /webhooks/configuring - - /developers/webhooks-and-events/configuring-your-server-to-receive-payloads - - /developers/webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads - - /webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads - - /webhooks/webhooks/configuring-your-server-to-receive-payloads - - /webhooks/configuring-your-server-to-receive-payloads -versions: - fpt: '*' - ghes: '*' - ghae: '*' - ghec: '*' -topics: - - Webhooks -shortTitle: Configure server for webhooks ---- -Now that our webhook is ready to deliver messages, we'll set up a basic Sinatra server -to handle incoming payloads. - -{% note %} - -**Note:** You can download the complete source code for this project -[from the platform-samples repo][platform samples]. - -{% endnote %} - -## Writing the server - -We want our server to listen to `POST` requests, at `/payload`, -because that's where we told GitHub our webhook URL was. Because we're using `ngrok` to expose -our local environment, we don't need to set up a real server somewhere online, and -can happily test out our code locally. - -Let's set up a little Sinatra app to do something with the information. Our initial -setup might look something like this: - -``` ruby -require 'sinatra' -require 'json' - -post '/payload' do - push = JSON.parse(request.body.read) - puts "I got some JSON: #{push.inspect}" -end -``` - -(If you're unfamiliar with how Sinatra works, we recommend [reading the Sinatra guide][Sinatra].) - -Start this server up. - -Since we set up our webhook to listen to events dealing with `Issues`, go ahead -and create a new issue on the repository you're testing with. Once you create -it, switch back to your terminal. You should see something like this in your output: - -```shell -$ ~/Developer/platform-samples/hooks/ruby/configuring-your-server $ ruby server.rb -> == Sinatra/1.4.4 has taken the stage on 4567 for development with backup from Thin -> >> Thin web server (v1.5.1 codename Straight Razor) -> >> Maximum connections set to 1024 -> >> Listening on localhost:4567, CTRL+C to stop -> I got some JSON: {"action"=>"opened", "issue"=>{"url"=>"... -``` - -Success! You've successfully configured your server to listen to webhooks. Your -server can now process this information any way you see fit. For example, if you -were setting up a "real" web application, you might want to log some of the JSON -output to a database. - -For additional information on working with webhooks for fun and profit, head on -over to the [Testing Webhooks](/webhooks-and-events/webhooks/testing-webhooks) guide. - -[platform samples]: https://github.com/github/platform-samples/tree/master/hooks/ruby/configuring-your-server -[Sinatra]: http://www.sinatrarb.com/ diff --git a/content/webhooks/using-webhooks/creating-webhooks.md b/content/webhooks/using-webhooks/creating-webhooks.md index 2e36ce6ef7..af2858b5f5 100644 --- a/content/webhooks/using-webhooks/creating-webhooks.md +++ b/content/webhooks/using-webhooks/creating-webhooks.md @@ -1,6 +1,6 @@ --- title: Creating webhooks -intro: 'Learn to build a webhook, choosing the events your webhook will listen for on {% data variables.product.prodname_dotcom %} and how to set up a server to receive and manage the webhook payload.' +intro: 'You can create webhooks to subscribe to specific events that occur on {% data variables.product.prodname_dotcom %}.' redirect_from: - /webhooks/creating - /developers/webhooks-and-events/creating-webhooks @@ -16,94 +16,89 @@ versions: topics: - Webhooks --- -Now that we understand [the basics of webhooks][webhooks-overview], let's go through the process of building out our own webhook-powered integration. In this tutorial, we'll create a repository webhook that will be responsible for listing out how popular our repository is, based on the number of issues it receives per day. -Creating a webhook is a two-step process. You'll first need to set up what events your webhook should listen to. After that, you'll set up your server to receive and manage the payload. +## About creating webhooks -{% data reusables.webhooks.webhooks-rest-api-links %} +{% ifversion fpt %}You can create webhooks to subscribe to specific events on {% data variables.product.prodname_dotcom %} that occur in a repository, organization, {% data variables.product.prodname_marketplace %} account, or {% data variables.product.prodname_sponsors %} account. You can also set up a {% data variables.product.prodname_github_app %} to recieve webhooks when specific events occur on {% data variables.product.prodname_dotcom %}.{% endif %} -## Exposing localhost to the internet +{% ifversion ghec %}You can create webhooks to subscribe to specific events on {% data variables.product.prodname_dotcom %} that occur in a repository, organization, {% data variables.product.prodname_enterprise %}, {% data variables.product.prodname_marketplace %} account, or {% data variables.product.prodname_sponsors %} account. You can also set up your {% data variables.product.prodname_github_app %} to recieve webhooks when specific events occur on {% data variables.product.prodname_dotcom %}.{% endif %} -For the purposes of this tutorial, we're going to use a local server to receive webhook events from {% data variables.product.prodname_dotcom %}. +{% ifversion ghes or ghae %}You can create webhooks to subscribe to specific events on {% data variables.product.prodname_dotcom %} that occur in a repository, organization, or {% data variables.product.prodname_enterprise %}. You can also set up your {% data variables.product.prodname_github_app %} to recieve webhooks when specific events occur on {% data variables.product.prodname_dotcom %}.{% endif %} -First of all, we need to expose our local development environment to the internet so {% data variables.product.prodname_dotcom %} can deliver events. We'll use [`ngrok`](https://ngrok.com) to do this. +For more information about the different types of webhooks, see "[AUTOTITLE](/webhooks/about-webhooks)." For a complete list of webhook events, see "[AUTOTITLE](/webhooks/webhook-events-and-payloads)." -{% ifversion cli-webhook-forwarding %} -{% note %} +## Creating a repository webhook -**Note:** Alternatively, you can use webhook forwarding to set up your local environment to receive webhooks. For more information, see "[AUTOTITLE](/webhooks-and-events/webhooks/receiving-webhooks-with-the-github-cli)." +You can create a webhook to subscribe to events that occur in a specific repository. You must be a repository owner or have admin access in the repository to create webhooks in that repository. + +You can use the {% data variables.product.prodname_dotcom %} web interface or the REST API to create a repository webhook. For more information about using the REST API to create a repository webhook, see "[AUTOTITLE](/rest/webhooks/repos#create-a-repository-webhook)." + +{% data reusables.repositories.navigate-to-repo %} +{% data reusables.repositories.sidebar-settings %} +{% data reusables.webhooks.sidebar_webhooks %} +{% data reusables.webhooks.add_webhook_button %} +1. Under "Payload URL", type the URL where you'd like to receive payloads. +{% data reusables.webhooks.content_type_and_secret %} +1. Under "Which events would you like to trigger this webhook?", select the webhook events that you want to receive. You should only subscribe to the webhook events that you need. +1. If you chose **Let me select individual events**, select the events that you want to trigger the webhook. +1. To make the webhook active immediately after adding the configuration, select **Active**. +{% data reusables.webhooks.add_webhook_button %} + +After you create a new webhook, {% data variables.product.prodname_dotcom %} will send you a simple `ping` event to let you know you've set up the webhook correctly. For more information, see "[AUTOTITLE](/webhooks/webhook-events-and-payloads#ping)." + +## Creating an organization webhook + +You can create a webhook to subscribe to events that occur in a specific organization. You must be an organization owner to create webhooks in that organization. + +You can use the {% data variables.product.prodname_dotcom %} web interface or the REST API to create an organization webhook. For more information about using the REST API to create an organization webhook, see "[AUTOTITLE](/rest/orgs/webhooks#create-an-organization-webhook)." + +1. In the upper-right corner of any page on {% data variables.location.product_location %}, click your profile photo. +1. Click **Your organizations**. +1. To the right of the organization, click **Settings**. +{% data reusables.webhooks.sidebar_webhooks %} +{% data reusables.webhooks.add_webhook_button %} +1. Under "Payload URL", type the URL where you'd like to receive payloads. +{% data reusables.webhooks.content_type_and_secret %} +1. Under "Which events would you like to trigger this webhook?", select the types of webhooks you'd like to recieve. You should only subscribe to the webhook events that you need. +1. If you chose **Let me select individual events**, select the events that will trigger the webhook. +1. To make the webhook active immediately after adding the configuration, select **Active**. +1. Click **Add webhook**. + +After you create a new webhook, {% data variables.product.prodname_dotcom %} will send you a simple `ping` event to let you know you've set up the webhook correctly. For more information, see "[AUTOTITLE](/webhooks/webhook-events-and-payloads#ping)." + +{% ifversion ghes or ghae or ghec %} +## Creating a global webhook for a {% data variables.product.prodname_enterprise %} + +Enterprise owners can create a global webhook to subscribe to events that occur within their enterprise. For more information, see "[AUTOTITLE](/admin/monitoring-activity-in-your-enterprise/exploring-user-activity-in-your-enterprise/managing-global-webhooks)." -{% endnote %} {% endif %} -`ngrok` is available, free of charge, for all major operating systems. For more information, see [the `ngrok` download page](https://ngrok.com/download). +{% ifversion fpt or ghec %} -After installing `ngrok`, you can expose your localhost by running `./ngrok http 4567` on the command line. `4567` is the port number on which our server will listen for messages. You should see a line that looks something like this: +## Creating a {% data variables.product.prodname_marketplace %} webhook -```shell -Forwarding http://7e9ea9dc.ngrok.io -> 127.0.0.1:4567 -``` +You can create a webhook to subscribe to events relating to an app that you published in {% data variables.product.prodname_marketplace %}. Only the owner of the app, or an app manager for the organization that owns the app, can create a {% data variables.product.prodname_marketplace %} webhook. For more information, see "[AUTOTITLE](/apps/publishing-apps-to-github-marketplace/using-the-github-marketplace-api-in-your-app/webhook-events-for-the-github-marketplace-api)." -Make a note of the `*.ngrok.io` URL. We'll use it to set up our webhook. +1. Navigate to your [{% data variables.product.prodname_marketplace %} listing page](https://github.com/marketplace/manage). +1. Next to the {% data variables.product.prodname_marketplace %} listing that you want to view webhook deliveries for, click **Manage listing**. +1. In the sidebar, click **Webhook**. +1. Under "Payload URL", type the URL where you'd like to receive payloads. +{% data reusables.webhooks.content_type_and_secret %} +1. To make the webhook active immediately after adding the configuration, select **Active**. +1. Click **Create webhook**. -## Setting up a webhook +After you create a new webhook, {% data variables.product.prodname_dotcom %} will send you a simple `ping` event to let you know you've set up the webhook correctly. For more information, see "[AUTOTITLE](/webhooks/webhook-events-and-payloads#ping)." -You can install webhooks on an organization or on a specific repository. +## Creating a {% data variables.product.prodname_sponsors %} webhook -{% data reusables.organizations.owners-and-admins-can %} manage webhooks for an organization. {% data reusables.organizations.new-org-permissions-more-info %} +You can create a webhook to subscribe to events relating to {% data variables.product.prodname_sponsors %}. Only the owner of the sponsored account can create sponsorship webhooks for that account. For more information, see "[AUTOTITLE](/sponsors/integrating-with-github-sponsors/configuring-webhooks-for-events-in-your-sponsored-account)." -To set up a webhook, go to the settings page of your repository or organization. From there, click **Webhooks**, then **Add webhook**. +{% endif %} -Alternatively, you can choose to build and manage a webhook [through the Webhooks API][webhook-api]. +## Creating webhooks for a {% data variables.product.prodname_github_app %} -Webhooks require a few configuration options before you can make use of them. We'll go through each of these settings below. +You can subscribe your {% data variables.product.prodname_github_app %} to webhook events to receive notifications whenever certain events occur. For more information, see "[AUTOTITLE](/apps/creating-github-apps/registering-a-github-app/registering-a-github-app)" and "[AUTOTITLE](/apps/creating-github-apps/registering-a-github-app/using-webhooks-with-github-apps)." -## Payload URL +## Further reading -{% data reusables.webhooks.webhooks-ipv6 %} - -{% data reusables.webhooks.payload_url %} - -Since we're developing locally for our tutorial, we'll set it to the `*.ngrok.io` URL, followed by `/payload`. For example, `http://7e9ea9dc.ngrok.io/payload`. - -## Content type - -{% data reusables.webhooks.content_type %} For this tutorial, the default content type of `application/json` is fine. - -## Secret - -{% data reusables.webhooks.secret %} - -## SSL verification - -{% data reusables.webhooks.webhooks_ssl %} - -## Active - -By default, webhook deliveries are "Active." You can choose to disable the delivery of webhook payloads by deselecting "Active." - -## Events - -Events are at the core of webhooks. These webhooks fire whenever a certain action is taken on the repository, which your server's payload URL intercepts and acts upon. - -A full list of webhook events, and when they execute, can be found in [the webhooks API][hooks-api] reference. - -Since our webhook is dealing with issues in a repository, we'll click **Let me select individual events** and then **Issues**. Make sure you select **Active** to receive issue events for triggered webhooks. You can also select all events using the default option. - -When you're finished, click **Add webhook**. - -Now that you've created the webhook, it's time to set up our local server to test the webhook. Head on over to [Configuring Your Server](/webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads) to learn how to do that. - -### Wildcard event - -To configure a webhook for all events, use the wildcard (`*`) character to specify the webhook events. When you add the wildcard event, we'll replace any existing events you have configured with the wildcard event and send you payloads for all supported events. You'll also automatically get any new events we might add in the future. - -[webhooks-overview]: /webhooks-and-events/webhooks/about-webhooks -[webhook-api]: /rest/repos#hooks -[hooks-api]: /webhooks-and-events/webhooks/about-webhooks#events - -### Ping event - -{% data reusables.webhooks.ping_short_desc %} - -For more information about the `ping` event webhook payload, see the [`ping`](/webhooks-and-events/webhooks/webhook-events-and-payloads#ping) event. +- "[AUTOTITLE](/webhooks/using-webhooks/handling-webhook-deliveries)" \ No newline at end of file diff --git a/content/webhooks/using-webhooks/disabling-webhooks.md b/content/webhooks/using-webhooks/disabling-webhooks.md new file mode 100644 index 0000000000..4bae562a6a --- /dev/null +++ b/content/webhooks/using-webhooks/disabling-webhooks.md @@ -0,0 +1,75 @@ +--- +title: Disabling webhooks +intro: 'You can disable a webhook to unsubscribe from events that occur on {% data variables.product.prodname_dotcom %}.' +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - Webhooks +--- + +## About disabling webhooks + +{% ifversion fpt %}You can disable a webhook that was previously enabled for a repository, organization, {% data variables.product.prodname_marketplace %} account, {% data variables.product.prodname_sponsors %} account, or {% data variables.product.prodname_github_app %}.{% endif %} + +{% ifversion ghec %}You can disable a webhook that was previously enabled for a repository, organization, {% data variables.product.prodname_enterprise %}, {% data variables.product.prodname_marketplace %} account, {% data variables.product.prodname_sponsors %} account, or {% data variables.product.prodname_github_app %}.{% endif %} + +{% ifversion ghes or ghae %}You can disable a webhook that was previously enabled for a repository, organization, {% data variables.product.prodname_enterprise %}, or {% data variables.product.prodname_github_app %}.{% endif %} + +To disable a webhook, you can choose to deactivate or delete it. When you deactivate a webhook, the webhook deliveries will stop, and you can choose to reactivate the webhook at a later time. When you delete a webhook, it cannot be restored. + +For more information, see "[AUTOTITLE](/webhooks/about-webhooks)" and "[AUTOTITLE](/webhooks/using-webhooks/creating-webhooks)." + +## Disabling a repository webhook + +To disable a repository webhook, you can deactivate or delete it. You must be a repository owner, or have admin access in the repository, to disable webhooks. + +You can use the {% data variables.product.prodname_dotcom %} web interface or the REST API to delete a webhook for a repository. For more information about using the REST API to delete a repository webhook, see "[AUTOTITLE](/rest/webhooks/repos#delete-a-repository-webhook)." + +{% data reusables.repositories.navigate-to-repo %} +{% data reusables.repositories.sidebar-settings %} +{% data reusables.webhooks.sidebar_webhooks %} +{% data reusables.webhooks.disable_webhook %} + +## Disabling an organization webhook + +To disable an organization webhook, you can deactivate or delete it. Only organization owners can disable webhooks in an organization. + +You can use the {% data variables.product.prodname_dotcom %} web interface or the REST API to delete an organization webhook. For more information about using the REST API to delete an organization webhook, see "[AUTOTITLE](/rest/orgs/webhooks#delete-an-organization-webhook)." + +1. In the upper-right corner of any page on {% data variables.location.product_location %}, click your profile photo. +1. Click **Your organizations**. +1. To the right of the organization, click **Settings**. +{% data reusables.webhooks.sidebar_webhooks %} +{% data reusables.webhooks.disable_webhook %} + +{% ifversion ghec or ghes or ghae %} +## Disabling a global webhook for a {% data variables.product.prodname_enterprise %} + +Enterprise owners can disable a global webhook in an {% data variables.product.prodname_enterprise %}. For more information, see "[AUTOTITLE](/admin/monitoring-activity-in-your-enterprise/exploring-user-activity-in-your-enterprise/managing-global-webhooks)." + +{% endif %} + +{% ifversion fpt or ghec %} + +## Disabling a {% data variables.product.prodname_marketplace %} webhook + +You can deactivate a webhook that was previously enabled for events relating to an app that you published on {% data variables.product.prodname_marketplace %}. You cannot delete the webhook. Only the owner of the app can deactivate the {% data variables.product.prodname_marketplace %} webhook for the app. If an organization has designated any app managers for a {% data variables.product.prodname_github_app %} owned by the organization, the app managers can also deactivate the {% data variables.product.prodname_marketplace %} webhook. + +1. Navigate to your [{% data variables.product.prodname_marketplace %} listing page](https://github.com/marketplace/manage). +1. Next to the {% data variables.product.prodname_marketplace %} listing that you want to view webhook deliveries for, click **Manage listing**. +1. In the sidebar, click **Webhook**. +1. Deselect **Active**. +1. Click **Update webhook**. + +## Disabling a {% data variables.product.prodname_sponsors %} webhook + +You can disable webhooks that were previously enabled for events relating to {% data variables.product.prodname_sponsors %}. Only the owner of the sponsored account can disable sponsorship webhooks for that account. For more information, see "[AUTOTITLE](/sponsors/integrating-with-github-sponsors/configuring-webhooks-for-events-in-your-sponsored-account)." + +{% endif %} + +## Disabling webhooks for a {% data variables.product.prodname_github_app %} + +You can disable webhook deliveries to your {% data variables.product.prodname_github_app %}, or change the events it subscribes to. For more information, see "[AUTOTITLE](/apps/maintaining-github-apps/modifying-a-github-app-registration#activating-or-deactivating-the-github-app-webhook)." \ No newline at end of file diff --git a/content/webhooks/using-webhooks/handling-webhook-deliveries.md b/content/webhooks/using-webhooks/handling-webhook-deliveries.md new file mode 100644 index 0000000000..0106e71f03 --- /dev/null +++ b/content/webhooks/using-webhooks/handling-webhook-deliveries.md @@ -0,0 +1,175 @@ +--- +title: Handling webhook deliveries +intro: 'Learn how to build a webhook, choose the events your webhook will listen for on {% data variables.product.prodname_dotcom %}, and set up a server to receive and manage the webhook payload.' +redirect_from: + - /webhooks/configuring + - /developers/webhooks-and-events/configuring-your-server-to-receive-payloads + - /developers/webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads + - /webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads + - /webhooks/webhooks/configuring-your-server-to-receive-payloads + - /webhooks/configuring-your-server-to-receive-payloads + - /webhooks/using-webhooks/configuring-your-server-to-receive-payloads +versions: + fpt: '*' + ghes: '*' + ghae: '*' + ghec: '*' +topics: + - Webhooks +--- + +## Introduction + +Now that we understand [the basics of webhooks][webhooks-overview], let's go through the process of building out our own webhook-powered integration. In this tutorial, we'll create a repository webhook that will be responsible for listing out how popular our repository is, based on the number of issues it receives per day. Then we'll set up a server to manage the incoming webhook payloads. + +## Creating a webhook + +Creating a webhook is a two-step process. You'll first need to set up the events your webhook should listen to. After that, you'll set up your server to receive and manage the payload. + +{% data reusables.webhooks.webhooks-rest-api-links %} + +### Exposing localhost to the internet + +For the purposes of this tutorial, we're going to use a local server to receive webhook events from {% data variables.product.prodname_dotcom %}. + +First of all, we need to expose our local development environment to the internet so {% data variables.product.prodname_dotcom %} can deliver events. We'll use [`ngrok`](https://ngrok.com) to do this. + +{% ifversion cli-webhook-forwarding %} +{% note %} + +**Note:** Alternatively, you can use webhook forwarding to set up your local environment to receive webhooks. For more information, see "[AUTOTITLE](/webhooks-and-events/webhooks/receiving-webhooks-with-the-github-cli)." + +{% endnote %} +{% endif %} + +`ngrok` is available, free of charge, for all major operating systems. For more information, see [the `ngrok` download page](https://ngrok.com/download). + +After installing `ngrok`, you can expose your localhost by running `./ngrok http 4567` on the command line. `4567` is the port number on which our server will listen for messages. You should see a line that looks something like this: + +```shell +Forwarding http://7e9ea9dc.ngrok.io -> 127.0.0.1:4567 +``` + +Make a note of the `*.ngrok.io` URL. We'll use it to set up our webhook. + +### Setting up a webhook + +You can install webhooks on an organization or on a specific repository. + +{% data reusables.organizations.owners-and-admins-can %} manage webhooks for an organization. {% data reusables.organizations.new-org-permissions-more-info %} + +To set up a webhook, go to the settings page of your repository or organization. From there, click **Webhooks**, then **Add webhook**. + +Alternatively, you can choose to build and manage a webhook [through the Webhooks API][webhook-api]. + +Webhooks require a few configuration options before you can make use of them. We'll go through each of these settings below. + +### Payload URL + +{% data reusables.webhooks.webhooks-ipv6 %} + +{% data reusables.webhooks.payload_url %} + +Since we're developing locally for our tutorial, we'll set it to the `*.ngrok.io` URL, followed by `/payload`. For example, `http://7e9ea9dc.ngrok.io/payload`. + +### Content type + +{% data reusables.webhooks.content_type %} For this tutorial, the default content type of `application/json` is fine. + +### Secret + +{% data reusables.webhooks.secret %} + +### SSL verification + +{% data reusables.webhooks.webhooks_ssl %} + +### Active + +By default, webhook deliveries are "Active." You can choose to disable the delivery of webhook payloads by deselecting "Active." + +### Events + +Events are at the core of webhooks. These webhooks fire whenever a certain action is taken on the repository, which your server's payload URL intercepts and acts upon. + +A full list of webhook events, and when they execute, can be found in [the webhooks API][hooks-api] reference. + +Since our webhook is dealing with issues in a repository, we'll click **Let me select individual events** and then **Issues**. Make sure you select **Active** to receive issue events for triggered webhooks. You can also select all events using the default option. + +When you're finished, click **Add webhook**. + +Now that you've created the webhook, it's time to set up our local server to test the webhook. Head on over to [Configuring Your Server](/webhooks-and-events/webhooks/configuring-your-server-to-receive-payloads) to learn how to do that. + +#### Wildcard event + +To configure a webhook for all events, use the wildcard (`*`) character to specify the webhook events. When you add the wildcard event, we'll replace any existing events you have configured with the wildcard event and send you payloads for all supported events. You'll also automatically get any new events we might add in the future. + +[webhooks-overview]: /webhooks-and-events/webhooks/about-webhooks +[webhook-api]: /rest/repos#hooks +[hooks-api]: /webhooks-and-events/webhooks/about-webhooks#events + +#### Ping event + +{% data reusables.webhooks.ping_short_desc %} + +For more information about the `ping` event webhook payload, see the [`ping`](/webhooks-and-events/webhooks/webhook-events-and-payloads#ping) event. + +## Configuring your server to receive payloads + +Now that our webhook is ready to deliver messages, we'll set up a basic Sinatra server +to handle incoming payloads. + +{% note %} + +**Note:** You can download the complete source code for this project +[from the platform-samples repo][platform samples]. + +{% endnote %} + +### Writing the server + +We want our server to listen to `POST` requests, at `/payload`, +because that's where we told GitHub our webhook URL was. Because we're using `ngrok` to expose +our local environment, we don't need to set up a real server somewhere online, and +can happily test out our code locally. + +Let's set up a little Sinatra app to do something with the information. Our initial +setup might look something like this: + +``` ruby +require 'sinatra' +require 'json' + +post '/payload' do + push = JSON.parse(request.body.read) + puts "I got some JSON: #{push.inspect}" +end +``` + +(If you're unfamiliar with how Sinatra works, we recommend [reading the Sinatra guide][Sinatra].) + +Start this server up. + +Since we set up our webhook to listen to events dealing with `Issues`, go ahead +and create a new issue on the repository you're testing with. Once you create +it, switch back to your terminal. You should see something like this in your output: + +```shell +$ ~/Developer/platform-samples/hooks/ruby/configuring-your-server $ ruby server.rb +> == Sinatra/1.4.4 has taken the stage on 4567 for development with backup from Thin +> >> Thin web server (v1.5.1 codename Straight Razor) +> >> Maximum connections set to 1024 +> >> Listening on localhost:4567, CTRL+C to stop +> I got some JSON: {"action"=>"opened", "issue"=>{"url"=>"... +``` + +Success! You've successfully configured your server to listen to webhooks. Your +server can now process this information any way you see fit. For example, if you +were setting up a "real" web application, you might want to log some of the JSON +output to a database. + +For additional information on working with webhooks for fun and profit, head on +over to the [Testing Webhooks](/webhooks-and-events/webhooks/testing-webhooks) guide. + +[platform samples]: https://github.com/github/platform-samples/tree/master/hooks/ruby/configuring-your-server +[Sinatra]: http://www.sinatrarb.com/ diff --git a/content/webhooks/using-webhooks/index.md b/content/webhooks/using-webhooks/index.md index 04b07807e0..42b73fdd11 100644 --- a/content/webhooks/using-webhooks/index.md +++ b/content/webhooks/using-webhooks/index.md @@ -10,8 +10,8 @@ topics: - Webhooks children: - /creating-webhooks - - /configuring-your-server-to-receive-payloads + - /handling-webhook-deliveries - /securing-your-webhooks + - /disabling-webhooks - /best-practices-for-using-webhooks --- - diff --git a/content/webhooks/webhook-events-and-payloads.md b/content/webhooks/webhook-events-and-payloads.md index 7c70f73e33..706e39ade9 100644 --- a/content/webhooks/webhook-events-and-payloads.md +++ b/content/webhooks/webhook-events-and-payloads.md @@ -1,7 +1,6 @@ --- title: Webhook events and payloads intro: Learn about when each webhook event occurs and what the payload contains. -product: '{% data reusables.gated-features.enterprise_account_webhooks %}' redirect_from: - /early-access/integrations/webhooks - /v3/activity/events/types @@ -21,33 +20,19 @@ shortTitle: Webhook events & payloads autogenerated: webhooks --- -{% data reusables.webhooks.webhooks_intro %} +## About webhook events and payloads -You can create webhooks that subscribe to the events listed on this page. Each webhook event includes a description of the webhook properties and an example payload. For more information, see "[AUTOTITLE](/webhooks-and-events/webhooks/creating-webhooks)." +You can create webhooks that subscribe to the events listed on this page. Each webhook event on this page includes a description of the webhook properties for that event. If the event has multiple actions, the properties corresponding to each action are included. For more information, see "[AUTOTITLE](/webhooks/creating-webhooks)." -## Webhook payload object common properties +{% note %} -Each webhook event payload also contains properties unique to the event. You can find the unique properties in the individual event type sections. +**Note:** {% data reusables.webhooks.payload_cap %} -Key | Type | Description -----|------|------------- -`action` | `string` | Most webhook payloads contain an `action` property that contains the specific activity that triggered the event. -{% data reusables.webhooks.sender_desc %} This property is included in every webhook payload. -{% data reusables.webhooks.repo_desc %} Webhook payloads contain the `repository` property when the event occurs from activity in a repository. -{% data reusables.webhooks.org_desc %} -{% data reusables.webhooks.app_desc %} For more information, see "[AUTOTITLE](/apps/creating-github-apps/setting-up-a-github-app)." - -The unique properties for a webhook event are the same properties you'll find in the `payload` property when using the [Events API](/rest/activity#events). One exception is the [`push` event](#push). The unique properties of the `push` event webhook payload and the `payload` property in the Events API differ. The webhook payload contains more detailed information. - -{% tip %} - -**Note:** Payloads are capped at 25 MB. If your event generates a larger payload, a webhook will not be fired. This may happen, for example, on a `create` event if many branches or tags are pushed at once. We suggest monitoring your payload size to ensure delivery. - -{% endtip %} +{% endnote %} ### Delivery headers -HTTP POST payloads that are delivered to your webhook's configured URL endpoint will contain several special headers. +HTTP POST payloads that are delivered to your webhook's configured URL endpoint will contain several special headers: - `X-GitHub-Event`: Name of the event that triggered the delivery. - `X-GitHub-Delivery`: A [GUID](https://en.wikipedia.org/wiki/Globally_unique_identifier) to identify the delivery.{% ifversion ghes or ghae %} @@ -55,10 +40,13 @@ HTTP POST payloads that are delivered to your webhook's configured URL endpoint - `X-GitHub-Enterprise-Host`: The hostname of the {% data variables.product.prodname_ghe_server %} instance that sent the HTTP POST payload.{% endif %}{% ifversion not ghae %} - `X-Hub-Signature`: This header is sent if the webhook is configured with a [`secret`](/rest/repos#create-hook-config-params). This is the HMAC hex digest of the request body, and is generated using the SHA-1 hash function and the `secret` as the HMAC `key`.{% ifversion fpt or ghes or ghec %} `X-Hub-Signature` is provided for compatibility with existing integrations, and we recommend that you use the more secure `X-Hub-Signature-256` instead.{% endif %}{% endif %} - `X-Hub-Signature-256`: This header is sent if the webhook is configured with a [`secret`](/rest/repos#create-hook-config-params). This is the HMAC hex digest of the request body, and is generated using the SHA-256 hash function and the `secret` as the HMAC `key`. +- `User-Agent`: This header will always have the prefix `GitHub-Hookshot/`. -Also, the `User-Agent` for the requests will have the prefix `GitHub-Hookshot/`. +To see what each header might look like in a webhook payload, see "[Example webhook delivery](#example-webhook-delivery)." -### Example delivery +### Example webhook delivery + +You can choose to have payloads delivered in JSON format (`application/json`) or as URL-encoded data (`x-www-form-urlencoded`). Following is an example of a webhook POST request that uses the JSON format. ```shell > POST /payload HTTP/2 diff --git a/data/reusables/enterprise_user_management/manage-global-webhooks-api.md b/data/reusables/enterprise_user_management/manage-global-webhooks-api.md index 8412ddebd4..ec012558e9 100644 --- a/data/reusables/enterprise_user_management/manage-global-webhooks-api.md +++ b/data/reusables/enterprise_user_management/manage-global-webhooks-api.md @@ -1,3 +1,3 @@ {% ifversion ghes or ghae %} -You can also use the {% data variables.product.prodname_enterprise_api %} to manage global webhooks. For a complete list of actions, see "[AUTOTITLE](/rest/enterprise-admin#global-webhooks)." +You can also use the {% data variables.product.prodname_enterprise_api %} to manage global webhooks. For a complete list of actions, see "[AUTOTITLE](/rest/enterprise-admin/global-webhooks)." {% endif %} diff --git a/data/reusables/repositories/security-advisory-edit-details.md b/data/reusables/repositories/security-advisory-edit-details.md index 5a2214b850..4c94ee0e06 100644 --- a/data/reusables/repositories/security-advisory-edit-details.md +++ b/data/reusables/repositories/security-advisory-edit-details.md @@ -1,3 +1,3 @@ 1. Under "Affected products", define the ecosystem, package name, affected/patched versions, and vulnerable functions for the security vulnerability that this security advisory describes. If applicable, you can add multiple affected products to the same advisory by clicking **Add another affected product**. - For information about how to specify information on the form, including affected versions, see "[AUTOTITLE](/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/best-practices-for-writing-repository-security-advisories)." + For information about how to specify information on the form, including affected versions, see "[AUTOTITLE](/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/best-practices-for-writing-repository-security-advisories)." diff --git a/data/reusables/repositories/sidebar-settings.md b/data/reusables/repositories/sidebar-settings.md index 0d418c4fb7..15dd57e734 100644 --- a/data/reusables/repositories/sidebar-settings.md +++ b/data/reusables/repositories/sidebar-settings.md @@ -1,3 +1,2 @@ 1. Under your repository name, click {% octicon "gear" aria-hidden="true" %} **Settings**. If you cannot see the "Settings" tab, select the **{% octicon "kebab-horizontal" aria-label="More" %}** dropdown menu, then click **Settings**. - ![Screenshot of a repository header showing the tabs. The "Settings" tab is highlighted by a dark orange outline.](/assets/images/help/repository/repo-actions-settings.png) diff --git a/data/reusables/webhooks/add_webhook_button.md b/data/reusables/webhooks/add_webhook_button.md new file mode 100644 index 0000000000..d1d41c0599 --- /dev/null +++ b/data/reusables/webhooks/add_webhook_button.md @@ -0,0 +1 @@ +1. Click **Add webhook**. \ No newline at end of file diff --git a/data/reusables/webhooks/app_desc.md b/data/reusables/webhooks/app_desc.md deleted file mode 100644 index e81bab2cf4..0000000000 --- a/data/reusables/webhooks/app_desc.md +++ /dev/null @@ -1 +0,0 @@ -`installation` | `object` | The {% data variables.product.prodname_github_app %} installation. Webhook payloads contain the `installation` property when the event is configured for and sent to a {% data variables.product.prodname_github_app %}. diff --git a/data/reusables/webhooks/content_type_and_secret.md b/data/reusables/webhooks/content_type_and_secret.md new file mode 100644 index 0000000000..3754565330 --- /dev/null +++ b/data/reusables/webhooks/content_type_and_secret.md @@ -0,0 +1,4 @@ +1. Optionally, select the **Content type** drop-down menu, and click a data format to receive the webhook payload in. + - **application/json** will deliver the JSON payload directly as the body of the `POST` request. + - **application/x-www-form-urlencoded** will send the JSON payload as a form parameter called `payload`. +1. Optionally, under "Secret", type a string to use as a `secret` key. You should choose a random string of text with high entropy. You can use the webhook secret to limit incoming requests to only those originating from {% data variables.product.prodname_dotcom %}. For more information, see "[AUTOTITLE](/webhooks/using-webhooks/securing-your-webhooks)." \ No newline at end of file diff --git a/data/reusables/webhooks/disable_webhook.md b/data/reusables/webhooks/disable_webhook.md new file mode 100644 index 0000000000..be3e8f7ad7 --- /dev/null +++ b/data/reusables/webhooks/disable_webhook.md @@ -0,0 +1,7 @@ +1. Under "Webhooks", locate the webhook you'd like to disable. +1. Disable the webhook by either deactivating or deleting it: + 1. To _deactivate_ the webhook: + 1. Click **Edit**. + 1. Deselect **Active**. + 1. Click **Update webhook**. + 1. To _delete_ the webhook, click **Delete**. This action cannot be undone. \ No newline at end of file diff --git a/data/reusables/webhooks/org_desc.md b/data/reusables/webhooks/org_desc.md deleted file mode 100644 index 98655a49a3..0000000000 --- a/data/reusables/webhooks/org_desc.md +++ /dev/null @@ -1 +0,0 @@ -`organization` | `object` | Webhook payloads contain the [`organization`](/rest/orgs#get-an-organization) object when the webhook is configured for an organization or the event occurs from activity in a repository owned by an organization. diff --git a/data/reusables/webhooks/payload_cap.md b/data/reusables/webhooks/payload_cap.md new file mode 100644 index 0000000000..c23628d504 --- /dev/null +++ b/data/reusables/webhooks/payload_cap.md @@ -0,0 +1 @@ +Payloads are capped at 25 MB. If an event generates a larger payload, {% data variables.product.company_short %} will not deliver a payload for that webhook event. This may happen, for example, on a `create` event if many branches or tags are pushed at once. We suggest monitoring your payload size to ensure delivery. \ No newline at end of file diff --git a/data/reusables/webhooks/repo_desc.md b/data/reusables/webhooks/repo_desc.md deleted file mode 100644 index 9987979a6b..0000000000 --- a/data/reusables/webhooks/repo_desc.md +++ /dev/null @@ -1 +0,0 @@ -`repository` | `object` | The [`repository`](/rest/repos#get-a-repository) where the event occurred. diff --git a/data/reusables/webhooks/sender_desc.md b/data/reusables/webhooks/sender_desc.md deleted file mode 100644 index 218063f9e0..0000000000 --- a/data/reusables/webhooks/sender_desc.md +++ /dev/null @@ -1 +0,0 @@ -`sender` | `object` | The user that triggered the event. diff --git a/data/reusables/webhooks/sidebar_webhooks.md b/data/reusables/webhooks/sidebar_webhooks.md new file mode 100644 index 0000000000..325ea1a16b --- /dev/null +++ b/data/reusables/webhooks/sidebar_webhooks.md @@ -0,0 +1 @@ +1. In the left sidebar, click **{% octicon "webhook" aria-hidden="true" %} Webhooks**. \ No newline at end of file diff --git a/data/reusables/webhooks/webhook_recent_deliveries_redeliver.md b/data/reusables/webhooks/webhook_recent_deliveries_redeliver.md new file mode 100644 index 0000000000..e5f93844ad --- /dev/null +++ b/data/reusables/webhooks/webhook_recent_deliveries_redeliver.md @@ -0,0 +1,5 @@ +1. Under "Recent deliveries", all deliveries from the past 30 days will be listed. If this webhook has not been delivered within the past 30 days, no deliveries will be listed. If webhooks are not active, the "Recent Deliveries" section will not be present. + + Click the delivery GUID for the delivery that you want to redeliver. + + ![Screenshot of the "Recent deliveries" list for a webhook. A delivery GUID in the list of deliveries is highlighted with an orange outline.](/assets/images/enterprise/site-admin-settings/global-webhooks-recent-deliveries.png) diff --git a/data/reusables/webhooks/webhook_recent_deliveries_tab.md b/data/reusables/webhooks/webhook_recent_deliveries_tab.md index d601888fb6..bd24013ab3 100644 --- a/data/reusables/webhooks/webhook_recent_deliveries_tab.md +++ b/data/reusables/webhooks/webhook_recent_deliveries_tab.md @@ -1,2 +1 @@ 1. Click **Recent deliveries**. All deliveries from the past 30 days will be listed. If this webhook has not been delivered within the past 30 days, no deliveries will be listed. -1. Click a delivery GUID to view details. diff --git a/data/reusables/webhooks/webhook_url_list_redeliver.md b/data/reusables/webhooks/webhook_url_list_redeliver.md new file mode 100644 index 0000000000..d0d6b8c373 --- /dev/null +++ b/data/reusables/webhooks/webhook_url_list_redeliver.md @@ -0,0 +1,3 @@ +1. In the list of webhooks, click the URL of the webhook you'd like to redeliver. If you do not have a webhook configured, no webhooks will be listed. + + ![Screenshot of a list of webhooks. The URL link to view a webhook is highlighted with an orange outline.](/assets/images/enterprise/site-admin-settings/click-global-webhook.png) \ No newline at end of file diff --git a/script/bookmarklets/pr-link-source.js b/script/bookmarklets/pr-link-source.js deleted file mode 100644 index cd67aed727..0000000000 --- a/script/bookmarklets/pr-link-source.js +++ /dev/null @@ -1,92 +0,0 @@ -!(async function () { - const regexp = /https:\/\/github.com\/github\/([^\/]*)\/pull\/\d*\/files/; - - if (!window.location.href.match(regexp)) { - window.alert("You're not on a PR 'Files changed' page. 🙃"); - return - } - - let conversation_url = window.location.href.replace(/files.*/g, ""); - - // get the preview deployment URL by loading the 'Conversation' page, and searching for the 'View deployment' link - let deployment_url = await fetch(conversation_url) - .then(function (response) { - return response.text(); - }) - .then(function (html) { - // Convert the HTML string into a document object - var parser = new DOMParser(); - var doc = parser.parseFromString(html, "text/html"); - - var elements = doc.getElementsByClassName("TimelineItem"); - // Find the element that is a link that contains the text "View deployment" - for (var i = 0; i < elements.length; i++) { - var element = elements[i]; - var links = element.getElementsByTagName("a"); - for (var j = 0; j < links.length; j++) { - var link = links[j]; - if (link.innerText.match(/View deployment/)) { - // Get the href of the link - var deployment_url = link.getAttribute("href"); - } - } - } - // This should return the last link that contains the text "View deployment" (there might be multiple ones if there are multiple deployments) - return deployment_url; - }); - if (deployment_url == null) { - window.alert("No preview deployment found! 😭"); - return; - } - // strip any trailing slash from deployment_url - deployment_url = deployment_url.replace(/\/$/, ""); - - var url_fpt = deployment_url + "/en"; - var url_ghec = deployment_url + "/en/enterprise-cloud@latest"; - var url_ghes = deployment_url + "/en/enterprise-server@latest"; - var url_ae = deployment_url + "/en/github-ae@latest"; - var fpt = "FPT"; - var ghes = "GHES"; - var ghec = "GHEC"; - var ae = "AE"; - - const file_info = document.querySelectorAll("div.file-info"); - for (var i = 0; i < file_info.length; i++) { - var link = file_info[i].querySelector("a").title; - if (link.search("data/") === 0) { - continue; - } else { - var regex = /\.md$/; - var markdownfile = link.search(regex) >= 0; - if (markdownfile) { - console.log("link: " + link); - link = link.replace(regex, ""); - link = link.replace(/^content/, ""); - link = link.replace(/\/index/, ""); - var span = document.createElement("SPAN"); - span.style.fontFamily = - "-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif"; - span.innerHTML = "  View: "; - - span = addLink(span, fpt, url_fpt + link); - span.innerHTML += " / "; - span = addLink(span, ghec, url_ghec + link); - span.innerHTML += " / "; - span = addLink(span, ghes, url_ghes + link); - span.innerHTML += " / "; - span = addLink(span, ae, url_ae + link); - - file_info[i].appendChild(span); - } - } - } - - function addLink(span, link_name, link_href) { - var anchor = document.createElement("A"); - anchor.innerHTML = link_name; - anchor.href = link_href; - anchor.target = "_blank"; - span.appendChild(anchor); - return span; - } -})(); diff --git a/src/assets/README.md b/src/assets/README.md index feae000ae5..910b3b2445 100644 --- a/src/assets/README.md +++ b/src/assets/README.md @@ -1,19 +1,3 @@ -# ASSETS +# Assets -TBD what is ASSETS - -## What ASSETS does - -TBD why is ASSETS on the docs - -## How ASSETS works - -TBD step-by-step instructions to work on ASSETS - -## How to work on ASSETS - -TBD step-by-step instructions on how to work on ASSETS - -## How to get help for ASSETS - -TBD reference material +Assets are files such as images and CSV data that we serve statically to run the docs.github.com application. diff --git a/src/audit-logs/README.md b/src/audit-logs/README.md new file mode 100644 index 0000000000..7240106919 --- /dev/null +++ b/src/audit-logs/README.md @@ -0,0 +1,3 @@ +# Audit logs + +Audit logs are pages for GitHub Enterprise Server (GHES) that allow administrators to view actions users on the appliance have taken. diff --git a/src/audit-logs/data/fpt/organization.json b/src/audit-logs/data/fpt/organization.json index fa80a38543..e612b2763f 100644 --- a/src/audit-logs/data/fpt/organization.json +++ b/src/audit-logs/data/fpt/organization.json @@ -6,8 +6,8 @@ }, { "action": "account.plan_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The account's plan changed.", + "docs_reference_links": "/billing/managing-the-plan-for-your-github-account/about-billing-for-plans" }, { "action": "actions_cache.delete", @@ -16,48 +16,48 @@ }, { "action": "advisory_credit.accept", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Credit was accepted for a security advisory.", + "docs_reference_links": "/code-security/security-advisories/working-with-repository-security-advisories/editing-a-repository-security-advisory" }, { "action": "advisory_credit.create", - "description": "N/A", + "description": "Someone was added to the credit section of a security advisory.", "docs_reference_links": "N/A" }, { "action": "advisory_credit.decline", - "description": "N/A", + "description": "Credit was declined for a security advisory.", "docs_reference_links": "N/A" }, { "action": "advisory_credit.destroy", - "description": "N/A", + "description": "Someone was removed from the credit section of a security advisory.", "docs_reference_links": "N/A" }, { "action": "artifact.destroy", - "description": "N/A", + "description": "A workflow run artifact was manually deleted.", "docs_reference_links": "N/A" }, { "action": "auto_approve_personal_access_token_requests.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when the organization must approve fine-grained personal access tokens before the tokens can access organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/setting-a-personal-access-token-policy-for-your-organization" }, { "action": "auto_approve_personal_access_token_requests.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when fine-grained personal access tokens can access organization resources without prior approval.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/setting-a-personal-access-token-policy-for-your-organization" }, { "action": "billing.change_billing_type", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The way the account pays for GitHub was changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method" }, { "action": "billing.change_email", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The billing email address changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/setting-your-billing-email" }, { "action": "billing.lock", @@ -71,27 +71,27 @@ }, { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.delete_logs", - "description": "N/A", + "description": "Logs in a check suite were deleted.", "docs_reference_links": "N/A" }, { "action": "codespaces.allow_permissions", - "description": "N/A", + "description": "A codespace using custom permissions from its devcontainer.json file was launched.", "docs_reference_links": "N/A" }, { "action": "codespaces.attempted_to_create_from_prebuild", - "description": "N/A", + "description": "An attempt to create a codespace from a prebuild was made.", "docs_reference_links": "N/A" }, { @@ -101,18 +101,18 @@ }, { "action": "codespaces.connect", - "description": "N/A", + "description": "A codespace was started.", "docs_reference_links": "N/A" }, { "action": "codespaces.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A codespace was created", + "docs_reference_links": "/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository" }, { "action": "codespaces.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user deleted a codespace.", + "docs_reference_links": "/codespaces/developing-in-codespaces/deleting-a-codespace" }, { "action": "codespaces.export_environment", @@ -146,16 +146,51 @@ }, { "action": "codespaces.trusted_repositories_access_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you change your personal account's access and security setting for Codespaces.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "commit_comment.destroy", - "description": "N/A", + "description": "A commit comment was deleted.", "docs_reference_links": "N/A" }, { "action": "commit_comment.update", + "description": "A commit comment was updated.", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_org_settings_changed", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_created", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_refreshed", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_reused", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_unassigned", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_cancelled_by_staff", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_management_changed", "description": "N/A", "docs_reference_links": "N/A" }, @@ -176,67 +211,67 @@ }, { "action": "dependabot_alerts.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_alerts_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_repository_access.repositories_updated", - "description": "N/A", + "description": "The repositories that Dependabot can access were updated.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot security updates were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": " Dependabot security updates were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates_new_repos.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all new repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph_new_repos.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all new repositories.", "docs_reference_links": "N/A" }, { @@ -256,38 +291,38 @@ }, { "action": "discussion_post.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "discussion_post_reply.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post_reply.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "enterprise_installation.create", - "description": "N/A", + "description": "The GitHub App associated with an GitHub Connect enterprise connection was created.", "docs_reference_links": "N/A" }, { "action": "enterprise_installation.destroy", - "description": "N/A", + "description": "The GitHub App associated with an GitHub Connect enterprise connection was deleted.", "docs_reference_links": "N/A" }, { "action": "environment.add_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was created via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.create", @@ -296,8 +331,8 @@ }, { "action": "environment.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.create_actions_variable", @@ -306,13 +341,13 @@ }, { "action": "environment.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An environment was deleted.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deleting-an-environment" }, { "action": "environment.remove_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.remove_actions_variable", @@ -321,13 +356,13 @@ }, { "action": "environment.remove_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was deleted via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.update_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.update_actions_variable", @@ -336,22 +371,22 @@ }, { "action": "environment.update_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was updated via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "git.clone", - "description": "N/A", + "description": "A repository was cloned.", "docs_reference_links": "N/A" }, { "action": "git.fetch", - "description": "N/A", + "description": "Changes were fetched from a repository.", "docs_reference_links": "N/A" }, { "action": "git.push", - "description": "N/A", + "description": "Changes were pushed to a repository.", "docs_reference_links": "N/A" }, { @@ -371,37 +406,37 @@ }, { "action": "hook.active_changed", - "description": "N/A", + "description": "A hook's active status was updated.", "docs_reference_links": "N/A" }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { @@ -411,253 +446,253 @@ }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.remove_client_secret", - "description": "N/A", + "description": "A client secret for an integration was removed.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_all_tokens", - "description": "N/A", + "description": "All user tokens for an integration were requested to be revoked.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_tokens", - "description": "N/A", + "description": "Token(s) for an integration were revoked.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.suspend", - "description": "N/A", + "description": "An integration was suspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.unsuspend", - "description": "N/A", + "description": "An integration was unsuspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "integration_installation_request.close", - "description": "N/A", + "description": "A request to install an integration was either approved or denied by an owner, or canceled by the member who opened the request.", "docs_reference_links": "N/A" }, { "action": "integration_installation_request.create", - "description": "N/A", + "description": "An member requested that an owner install an integration.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable", - "description": "N/A", + "description": "An IP allow list was disabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was disabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable", - "description": "N/A", + "description": "An IP allow list was enabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was enabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.create", - "description": "N/A", + "description": "An IP address was added to an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.destroy", - "description": "N/A", + "description": "An IP address was deleted from an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.update", - "description": "N/A", + "description": "An IP address or its description was changed.", "docs_reference_links": "N/A" }, { "action": "issue.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was deleted from the repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/deleting-an-issue" }, { "action": "issue.pinned", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was pinned to a repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository" }, { "action": "issue.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was transferred to another repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository" }, { "action": "issue.unpinned", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was unpinned from a repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository" }, { "action": "issues.deletes_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete issues was disabled Members cannot delete issues in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues" }, { "action": "issues.deletes_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete issues was enabled Members can delete issues in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues" }, { "action": "issues.deletes_policy_cleared", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the policy setting for allowing members to delete issues in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues" }, { "action": "issue_comment.destroy", - "description": "N/A", + "description": "A comment on an issue was deleted from the repository.", "docs_reference_links": "N/A" }, { "action": "issue_comment.update", - "description": "N/A", + "description": "A comment on an issue (other than the initial one) changed.", "docs_reference_links": "N/A" }, { "action": "marketplace_agreement_signature.create", - "description": "N/A", + "description": "The GitHub Marketplace Developer Agreement was signed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.approve", - "description": "N/A", + "description": "A listing was approved for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.change_category", - "description": "N/A", + "description": "A category for a listing for an app in GitHub Marketplace was changed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.create", - "description": "N/A", + "description": "A listing for an app in GitHub Marketplace was created.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.delist", - "description": "N/A", + "description": "A listing was removed from GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.redraft", - "description": "N/A", + "description": "A listing was sent back to draft state.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.reject", - "description": "N/A", + "description": "A listing was not accepted for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "members_can_create_pages.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish GitHub Pages sites was disabled.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_pages.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish GitHub Pages sites was enabled.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_private_pages.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish private GitHub Pages was disabled Members cannot publish private GitHub Pages in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_private_pages.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish private GitHub Pages was enabled Members can publish private GitHub Pages in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_public_pages.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish public GitHub Pages was disabled Members cannot publish public GitHub Pages in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_public_pages.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish public GitHub Pages was enabled Members can publish public GitHub Pages in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_delete_repos.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the policy setting for deleting or transferring repositories in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer" }, { "action": "members_can_delete_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete repositories was disabled Members cannot delete or transfer repositories in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer" }, { "action": "members_can_delete_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete repositories was enabled Members can delete or transfer repositories in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer" }, { "action": "members_can_view_dependency_insights.clear", - "description": "N/A", + "description": "An enterprise owner cleared the policy setting for viewing dependency insights in any organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "members_can_view_dependency_insights.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to view dependency insights was disabled. Members cannot view dependency insights in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise" }, { "action": "members_can_view_dependency_insights.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to view dependency insights was enabled. Members can view dependency insights in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise" }, { "action": "merge_queue.pull_request_dequeued", @@ -696,72 +731,72 @@ }, { "action": "migration.create", - "description": "N/A", + "description": "A migration file was created for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance.", "docs_reference_links": "N/A" }, { "action": "migration.destroy_file", - "description": "N/A", + "description": "A migration file for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance was deleted.", "docs_reference_links": "N/A" }, { "action": "migration.download", - "description": "N/A", + "description": "A migration file for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance was downloaded.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.generate_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was generated.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.remove_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_all_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "All user tokens for an OAuth application were requested to be revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "org.accept_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation sent to an organization to join an enterprise was accepted.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.add_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was added to an organization.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { @@ -776,33 +811,33 @@ }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_policy_selected_member_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner prevented GitHub Advanced Security features from being enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.advanced_security_policy_selected_member_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner allowed GitHub Advanced Security features to be enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.allow_third_party_access_requests_from_outside_collaborators_disabled", @@ -821,8 +856,8 @@ }, { "action": "org.audit_log_export", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An export of the organization audit log was created. If the export included a query, the log will list the query used and the number of audit log entries matching that query.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#exporting-the-audit-log" }, { "action": "org.audit_log_git_event_export", @@ -836,17 +871,17 @@ }, { "action": "org.block_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner blocked a user from accessing the organization's repositories.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization" }, { "action": "org.cancel_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was revoked", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.cancel_invitation", - "description": "N/A", + "description": "An invitation sent to a user to join an organization was revoked.", "docs_reference_links": "N/A" }, { @@ -856,12 +891,12 @@ }, { "action": "org.codeql_disabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization disables code scanning for repositories that use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.codeql_enabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization enables code scanning for repositories that are eligible to use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { @@ -876,13 +911,13 @@ }, { "action": "org.codespaces_trusted_repo_access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Codespaces was granted trusted repository access to all other repositories in an organization.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "org.codespaces_trusted_repo_access_revoked", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Codespaces trusted repository access to all other repositories in an organization was revoked.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "org.codespaces_user_access_allowed", @@ -896,33 +931,33 @@ }, { "action": "org.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.configure_self_hosted_jit_runner", @@ -931,8 +966,8 @@ }, { "action": "org.confirm_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was confirmed.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.connect_usage_metrics_export", @@ -941,13 +976,13 @@ }, { "action": "org.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization was created.", + "docs_reference_links": "/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch" }, { "action": "org.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions secret was created for an organization.", + "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization" }, { "action": "org.create_actions_variable", @@ -956,113 +991,113 @@ }, { "action": "org.create_integration_secret", - "description": "N/A", + "description": "An integration secret was created for an organization.", "docs_reference_links": "N/A" }, { "action": "org.disable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation was limited to owners.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.disable_oauth_app_restrictions", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Third-party application access restrictions for an organization were disabled.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization" }, { "action": "org.disable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner limited discussion creation to users with at least triage permission in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.disable_saml", - "description": "N/A", + "description": "SAML single sign-on was disabled for an organization.", "docs_reference_links": "N/A" }, { "action": "org.disable_source_ip_disclosure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when an organization owner disables the display of IP addresses in the audit log for the organization.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/displaying-ip-addresses-in-the-audit-log-for-your-organization" }, { "action": "org.disable_two_factor_requirement", - "description": "N/A", + "description": "A two-factor authentication requirement was disabled for the organization.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_disabled", - "description": "N/A", + "description": "An organization owner disabled the display of a commenter's full name in an organization. Members cannot see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_enabled", - "description": "N/A", + "description": "An organization owner enabled the display of a commenter's full name in an organization. Members can see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.enable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation by members was allowed.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.enable_oauth_app_restrictions", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Third-party application access restrictions for an organization were enabled.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization" }, { "action": "org.enable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner allowed users with read access to create discussions in an organization", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.enable_saml", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "SAML single sign-on was enabled for the organization.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization" }, { "action": "org.enable_source_ip_disclosure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when an organization owner enables the display of IP addresses in the audit log for the organization.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/displaying-ip-addresses-in-the-audit-log-for-your-organization" }, { "action": "org.enable_two_factor_requirement", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication is now required for the organization.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.integration_manager_added", - "description": "N/A", + "description": "An organization owner granted a member access to manage all GitHub Apps owned by an organization.", "docs_reference_links": "N/A" }, { "action": "org.integration_manager_removed", - "description": "N/A", + "description": "An organization owner removed access to manage all GitHub Apps owned by an organization from an organization member.", "docs_reference_links": "N/A" }, { "action": "org.invite_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new user was invited to join an organization.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization" }, { "action": "org.invite_to_business", - "description": "N/A", + "description": "An organization was invited to join an enterprise.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.disable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was disabled. Only enterprise owners can update protected branches.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.enable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was enabled. Members of an organization can update protected branches.", "docs_reference_links": "N/A" }, { "action": "org.oauth_app_access_approved", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Access to an organization was granted for an OAuth App.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/approving-oauth-apps-for-your-organization" }, { "action": "org.oauth_app_access_blocked", @@ -1071,12 +1106,12 @@ }, { "action": "org.oauth_app_access_denied", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Access was disabled for an OAuth App that was previously approved.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization" }, { "action": "org.oauth_app_access_requested", - "description": "N/A", + "description": "An organization member requested that an owner grant an OAuth App access to an organization.", "docs_reference_links": "N/A" }, { @@ -1091,12 +1126,12 @@ }, { "action": "org.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization" }, { "action": "org.remove_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was removed.", "docs_reference_links": "N/A" }, { @@ -1106,22 +1141,22 @@ }, { "action": "org.remove_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was removed from an organization, either manually or due to a two-factor authentication requirement.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization, /organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.remove_integration_secret", - "description": "N/A", + "description": "An integration secret was removed from an organization.", "docs_reference_links": "N/A" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { "action": "org.remove_outside_collaborator", - "description": "N/A", + "description": "An outside collaborator was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { @@ -1131,117 +1166,117 @@ }, { "action": "org.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization" }, { "action": "org.rename", - "description": "N/A", + "description": "An organization was renamed.", "docs_reference_links": "N/A" }, { "action": "org.required_workflow_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a required workflow is created.", + "docs_reference_links": "/actions/using-workflows/required-workflows" }, { "action": "org.required_workflow_delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a required workflow is deleted.", + "docs_reference_links": "/actions/using-workflows/required-workflows" }, { "action": "org.required_workflow_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a required workflow is updated.", + "docs_reference_links": "/actions/using-workflows/required-workflows" }, { "action": "org.restore_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was restored.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization" }, { "action": "org.revoke_external_identity", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member's linked identity was revoked.", + "docs_reference_links": "/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity" }, { "action": "org.revoke_sso_session", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member's SAML session was revoked.", + "docs_reference_links": "/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity" }, { "action": "org.runner_group_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was created.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization" }, { "action": "org.runner_group_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group" }, { "action": "org.runner_group_renamed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was renamed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "org.runner_group_runners_added", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was added to a group.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group" }, { "action": "org.runner_group_runners_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A runner group's list of members was updated.", + "docs_reference_links": "/rest/actions#set-self-hosted-runners-in-a-group-for-an-organization" }, { "action": "org.runner_group_runner_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The REST API was used to remove a self-hosted runner from a group.", + "docs_reference_links": "/rest/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization" }, { "action": "org.runner_group_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The configuration of a self-hosted runner group was changed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "org.runner_group_visiblity_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a self-hosted runner group was updated via the REST API.", + "docs_reference_links": "/rest/actions#update-a-self-hosted-runner-group-for-an-organization" }, { "action": "org.secret_scanning_custom_pattern_push_protection_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_custom_pattern_push_protection_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was updated for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "org.secret_scanning_push_protection_enable", - "description": "N/A", + "description": "Push protection for secret scanning was enabled.", "docs_reference_links": "N/A" }, { @@ -1256,13 +1291,13 @@ }, { "action": "org.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "org.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#requiring-approval-for-workflows-from-public-forks" }, { "action": "org.set_actions_private_fork_pr_approvals_policy", @@ -1271,8 +1306,8 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.set_custom_invitation_rate_limit", @@ -1286,8 +1321,8 @@ }, { "action": "org.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy for workflows on private repository forks was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#enabling-workflows-for-private-repository-forks" }, { "action": "org.set_workflow_permission_can_approve_pr", @@ -1296,8 +1331,8 @@ }, { "action": "org.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization was transferred between enterprise accounts.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#transferring-an-organization-between-enterprise-accounts" }, { "action": "org.transfer_outgoing", @@ -1311,12 +1346,12 @@ }, { "action": "org.unblock_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was unblocked from an organization.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization" }, { "action": "org.update_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was updated.", "docs_reference_links": "N/A" }, { @@ -1331,33 +1366,33 @@ }, { "action": "org.update_default_repository_permission", - "description": "N/A", + "description": "The default repository permission level for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_integration_secret", - "description": "N/A", + "description": "An integration secret was updated for an organization.", "docs_reference_links": "N/A" }, { "action": "org.update_member", - "description": "N/A", + "description": "A person's role was changed from owner to member or member to owner.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "org.update_new_repository_default_branch_setting", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The name of the default branch was changed for new repositories in the organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization" }, { "action": "org.update_repo_self_hosted_runners_policy", @@ -1366,48 +1401,48 @@ }, { "action": "org.update_saml_provider_settings", - "description": "N/A", + "description": "An organization's SAML provider settings were updated.", "docs_reference_links": "N/A" }, { "action": "org.update_terms_of_service", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization changed between the Standard Terms of Service and the GitHub Customer Agreement.", + "docs_reference_links": "/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement" }, { "action": "organization_default_label.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A default label was created for repositories in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#creating-a-default-label" }, { "action": "organization_default_label.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A default label was deleted for repositories in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#deleting-a-default-label" }, { "action": "organization_default_label.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A default label was edited for repositories in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#editing-a-default-label" }, { "action": "organization_domain.approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was approved for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#approving-a-domain-for-your-organization" }, { "action": "organization_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was added to an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" }, { "action": "organization_domain.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was removed from an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#removing-an-approved-or-verified-domain" }, { "action": "organization_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was verified for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" }, { "action": "organization_moderators.add_team", @@ -1431,18 +1466,18 @@ }, { "action": "organization_projects_change.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the policy setting for organization-wide project boards in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards" }, { "action": "organization_projects_change.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Organization projects were disabled for all organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards" }, { "action": "organization_projects_change.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Organization projects were enabled for all organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards" }, { "action": "organization_role.create", @@ -1456,128 +1491,138 @@ }, { "action": "org_credential_authorization.grant", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member authorized credentials for use with SAML single sign-on.", + "docs_reference_links": "/authentication/authenticating-with-saml-single-sign-on" }, { "action": "org_credential_authorization.revoke", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An owner revoked authorized credentials.", + "docs_reference_links": "/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" }, { "action": "org_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "org_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "packages.package_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An entire package was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_published", - "description": "N/A", + "description": "A package was published or republished to an organization.", "docs_reference_links": "N/A" }, { "action": "packages.package_version_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A specific package version was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_version_published", - "description": "N/A", + "description": "A specific package version was published or republished to a package.", "docs_reference_links": "N/A" }, { "action": "pages_protected_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was created for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was deleted from an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages domain was verified for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "payment_method.create", - "description": "N/A", + "description": "A new payment method was added, such as a new credit card or PayPal account.", "docs_reference_links": "N/A" }, { "action": "payment_method.remove", - "description": "N/A", + "description": "A payment method was removed.", "docs_reference_links": "N/A" }, { "action": "payment_method.update", - "description": "N/A", + "description": "An existing payment method was updated.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was granted access to resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.access_revoked", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was revoked. The token can still read public organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/reviewing-and-revoking-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.request_cancelled", - "description": "N/A", + "description": "A pending request for a fine-grained personal access token to access organization resources was canceled.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.request_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a fine-grained personal access token was created to access organization resources and the organization requires approval before the token can access organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.request_denied", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A request for a fine-grained personal access token to access organization resources was denied.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "prebuild_configuration.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Codespaces prebuild configuration for a repository was created.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "prebuild_configuration.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Codespaces prebuild configuration for a repository was deleted.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "prebuild_configuration.run_triggered", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user initiated a run of a GitHub Codespaces prebuild configuration for a repository branch.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "prebuild_configuration.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Codespaces prebuild configuration for a repository was edited.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "premium_runner.create", @@ -1596,17 +1641,17 @@ }, { "action": "private_repository_forking.clear", - "description": "N/A", + "description": "An enterprise owner cleared the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise.", "docs_reference_links": "N/A" }, { "action": "private_repository_forking.disable", - "description": "N/A", + "description": "An enterprise owner disabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are never allowed to be forked.", "docs_reference_links": "N/A" }, { "action": "private_repository_forking.enable", - "description": "N/A", + "description": "An enterprise owner enabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are always allowed to be forked.", "docs_reference_links": "N/A" }, { @@ -1631,132 +1676,137 @@ }, { "action": "profile_picture.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A profile picture was updated.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile" }, { "action": "project.access", - "description": "N/A", + "description": "A project board visibility was changed.", "docs_reference_links": "N/A" }, { "action": "project.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was closed.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/closing-a-project-board" }, { "action": "project.create", - "description": "N/A", + "description": "A project board was created.", "docs_reference_links": "N/A" }, { "action": "project.delete", - "description": "N/A", + "description": "A project board was deleted.", "docs_reference_links": "N/A" }, { "action": "project.link", - "description": "N/A", + "description": "A repository was linked to a project board.", "docs_reference_links": "N/A" }, { "action": "project.open", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was reopened.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/reopening-a-closed-project-board" }, { "action": "project.rename", - "description": "N/A", + "description": "A project board was renamed.", "docs_reference_links": "N/A" }, { "action": "project.unlink", - "description": "N/A", + "description": "A repository was unlinked from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_org_permission", - "description": "N/A", + "description": "The project's base-level permission for all organization members was changed or removed.", "docs_reference_links": "N/A" }, { "action": "project.update_team_permission", - "description": "N/A", + "description": "A team's project board permission level was changed or when a team was added or removed from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_user_permission", - "description": "N/A", + "description": "A user was added to or removed from a project board or had their permission level changed.", "docs_reference_links": "N/A" }, { "action": "project_field.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields" }, { "action": "project_field.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields/deleting-custom-fields" }, { "action": "project_view.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "project_view.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "protected_branch.authorized_users_teams", "description": "N/A", "docs_reference_links": "N/A" }, + { + "action": "protected_branch.branch_allowances", + "description": "A protected branch allowance was given to a specific user, team or integration.", + "docs_reference_links": "N/A" + }, { "action": "protected_branch.create", - "description": "N/A", + "description": "Branch protection was enabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.destroy", - "description": "N/A", + "description": "Branch protection was disabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismissal_restricted_users_teams", - "description": "N/A", + "description": "Enforcement of restricting users and/or teams who can dismiss reviews was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismiss_stale_reviews", - "description": "N/A", + "description": "Enforcement of dismissing stale pull requests was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.policy_override", - "description": "N/A", + "description": "A branch protection requirement was overridden by a repository administrator.", "docs_reference_links": "N/A" }, { "action": "protected_branch.rejected_ref_update", - "description": "N/A", + "description": "A branch update attempt was rejected.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_admin_enforced", - "description": "N/A", + "description": "Branch protection was enforced for repository administrators.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_allow_deletions_enforcement_level", - "description": "N/A", + "description": "Branch deletion was enabled or disabled for a protected branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_allow_force_pushes_enforcement_level", - "description": "N/A", + "description": "Force pushes were enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -1766,7 +1816,7 @@ }, { "action": "protected_branch.update_linear_history_requirement_enforcement_level", - "description": "N/A", + "description": "Required linear commit history was enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -1786,27 +1836,27 @@ }, { "action": "protected_branch.update_name", - "description": "N/A", + "description": "A branch name pattern was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_pull_request_reviews_enforcement_level", - "description": "N/A", + "description": "Enforcement of required pull request reviews was updated for a branch. Can be 0 (deactivated), 1 (non-admins), or 2 (everyone).", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_approving_review_count", - "description": "N/A", + "description": "Enforcement of the required number of approvals before merging was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_status_checks_enforcement_level", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_require_code_owner_review", - "description": "N/A", + "description": "Enforcement of required code owner review was updated for a branch.", "docs_reference_links": "N/A" }, { @@ -1816,88 +1866,88 @@ }, { "action": "protected_branch.update_signature_requirement_enforcement_level", - "description": "N/A", + "description": "Enforcement of required commit signing was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_strict_required_status_checks_policy", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "pull_request.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was closed without being merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request" }, { "action": "pull_request.converted_to_draft", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was converted to a draft.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft" }, { "action": "pull_request.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was created.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request" }, { "action": "pull_request.create_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review was requested on a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.indirect_merge", - "description": "N/A", + "description": "A pull request was considered merged because the pull request's commits were merged into the target branch.", "docs_reference_links": "N/A" }, { "action": "pull_request.in_progress", - "description": "N/A", + "description": "A pull request was marked as in progress.", "docs_reference_links": "N/A" }, { "action": "pull_request.merge", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request" }, { "action": "pull_request.ready_for_review", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was marked as ready for review.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review" }, { "action": "pull_request.rebase", @@ -1906,82 +1956,82 @@ }, { "action": "pull_request.remove_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review request was removed from a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.reopen", - "description": "N/A", + "description": "A pull request was reopened after previously being closed.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.delete", - "description": "N/A", + "description": "A review on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.dismiss", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was dismissed.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review" }, { "action": "pull_request_review.submit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was submitted.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review" }, { "action": "pull_request_review_comment.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review comment was added to a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request_review_comment.delete", - "description": "N/A", + "description": "A review comment on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review_comment.update", - "description": "N/A", + "description": "A review comment on a pull request was changed.", "docs_reference_links": "N/A" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.actions_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Actions was enabled for a repository. Can be viewed using the UI, This event is not included when you access the audit log using the REST API.", + "docs_reference_links": "organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#using-the-audit-log-api" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { @@ -2006,43 +2056,43 @@ }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -2051,13 +2101,13 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions secret was created for a repository.", + "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository" }, { "action": "repo.create_actions_variable", @@ -2066,67 +2116,67 @@ }, { "action": "repo.create_integration_secret", - "description": "N/A", + "description": "An integration secret was created for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.download_zip", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A source code archive of a repository was downloaded as a ZIP file.", + "docs_reference_links": "/repositories/working-with-files/using-files/downloading-source-code-archives" }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was deleted for a repository.", "docs_reference_links": "N/A" }, { @@ -2136,28 +2186,28 @@ }, { "action": "repo.remove_integration_secret", - "description": "N/A", + "description": "An integration secret was deleted for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.rename_branch", @@ -2171,13 +2221,13 @@ }, { "action": "repo.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "repo.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-required-approval-for-workflows-from-public-forks" }, { "action": "repo.set_actions_private_fork_pr_approvals_policy", @@ -2186,8 +2236,8 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.set_default_workflow_permissions", @@ -2196,8 +2246,8 @@ }, { "action": "repo.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when the policy for workflows on private repository forks is changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#enabling-workflows-for-private-repository-forks" }, { "action": "repo.set_workflow_permission_can_approve_pr", @@ -2206,42 +2256,42 @@ }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was updated.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { @@ -2251,57 +2301,57 @@ }, { "action": "repo.update_default_branch", - "description": "N/A", + "description": "The default branch for a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_integration_secret", - "description": "N/A", + "description": "An integration secret was updated for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Someone closed a security advisory.", + "docs_reference_links": "/code-security/security-advisories/working-with-repository-security-advisories/about-repository-security-advisories" }, { "action": "repository_advisory.cve_request", - "description": "N/A", + "description": "Someone requested a CVE (Common Vulnerabilities and Exposures) number from GitHub for a draft security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.github_broadcast", - "description": "N/A", + "description": "GitHub made a security advisory public in the GitHub Advisory Database.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.github_withdraw", - "description": "N/A", + "description": "GitHub withdrew a security advisory that was published in error.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.open", - "description": "N/A", + "description": "Someone opened a draft security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.publish", - "description": "N/A", + "description": "Someone published a security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.reopen", - "description": "N/A", + "description": "Someone reopened as draft security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.update", - "description": "N/A", + "description": "Someone edited a draft or published security advisory.", "docs_reference_links": "N/A" }, { @@ -2316,67 +2366,67 @@ }, { "action": "repository_content_analysis.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Data use settings were disabled for a private repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#enabling-or-disabling-security-and-analysis-features-for-private-repositories" }, { "action": "repository_content_analysis.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Data use settings were enabled for a private repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#enabling-or-disabling-security-and-analysis-features-for-private-repositories" }, { "action": "repository_dependency_graph.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for a private repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-fea tures-for-your-repository/managing-security-and-analysis-settings-for-your-repository#enabling-or-disabling-security-and-analysis-features-for-private-repositories" }, { "action": "repository_dependency_graph.enable", - "description": "N/A", + "description": "The dependency graph was enabled for a private repository.", "docs_reference_links": "N/A" }, { "action": "repository_image.create", - "description": "N/A", + "description": "An image to represent a repository was uploaded.", "docs_reference_links": "N/A" }, { "action": "repository_image.destroy", - "description": "N/A", + "description": "An image to represent a repository was deleted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { "action": "repository_projects_change.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The repository projects policy was removed for an organization, or all organizations in the enterprise Organization owners can now control their repository projects settings.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise" }, { "action": "repository_projects_change.disable", - "description": "N/A", + "description": "Repository projects were disabled for a repository, all repositories in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "repository_projects_change.enable", - "description": "N/A", + "description": "Repository projects were enabled for a repository, all repositories in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { @@ -2396,87 +2446,97 @@ }, { "action": "repository_secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "repository_secret_scanning.enable", - "description": "N/A", + "description": "Secret scanning was enabled for a repository.", "docs_reference_links": "N/A" }, + { + "action": "repository_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, + { + "action": "repository_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, { "action": "repository_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_push_protection.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "repository_secret_scanning_push_protection.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was enabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "repository_visibility_change.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The repository visibility change setting was cleared for an organization or enterprise.", + "docs_reference_links": "/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-changes-to-repository-visibility" }, { "action": "repository_visibility_change.disable", - "description": "N/A", + "description": "The ability for enterprise members to update a repository's visibility was disabled. Members are unable to change repository visibilities in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "repository_visibility_change.enable", - "description": "N/A", + "description": "The ability for enterprise members to update a repository's visibility was enabled. Members are able to change repository visibilities in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "repository_vulnerability_alert.auto_dismiss", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a Dependabot alert is automatically dismissed due to its metadata matching an enabled Dependabot alert rule.", + "docs_reference_links": "/code-security/dependabot/dependabot-alerts/using-alert-rules-to-prioritize-dependabot-alerts" }, { "action": "repository_vulnerability_alert.auto_reopen", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a previously auto-dismissed Dependabot alert is reopened because its metadata no longer matches an enabled Dependabot alert rule.", + "docs_reference_links": "/code-security/dependabot/dependabot-alerts/using-alert-rules-to-prioritize-dependabot-alerts" }, { "action": "repository_vulnerability_alert.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub created a Dependabot alert for a repository that uses an insecure dependency.", + "docs_reference_links": "/code-security/dependabot/dependabot-alerts/about-dependabot-alerts" }, { "action": "repository_vulnerability_alert.dismiss", - "description": "N/A", + "description": "A Dependabot alert about a vulnerable dependency was dismissed.", "docs_reference_links": "N/A" }, { @@ -2491,22 +2551,22 @@ }, { "action": "repository_vulnerability_alert.resolve", - "description": "N/A", + "description": "Changes were pushed to update and resolve a Dependabot alert in a project dependency.", "docs_reference_links": "N/A" }, { "action": "repository_vulnerability_alerts.authorized_users_teams", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The list of people or teams authorized to receive Dependabot alerts for the repository was updated.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts" }, { "action": "repository_vulnerability_alerts.disable", - "description": "N/A", + "description": "Dependabot alerts was disabled.", "docs_reference_links": "N/A" }, { "action": "repository_vulnerability_alerts.enable", - "description": "N/A", + "description": "Dependabot alerts was enabled.", "docs_reference_links": "N/A" }, { @@ -2521,62 +2581,62 @@ }, { "action": "required_status_check.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A status check was marked as required for a protected branch.", + "docs_reference_links": "/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-status-checks-before-merging" }, { "action": "required_status_check.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A status check was no longer marked as required for a protected branch.", + "docs_reference_links": "/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-status-checks-before-merging" }, { "action": "restrict_notification_delivery.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were disabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "restrict_notification_delivery.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were enabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "role.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new custom repository role was created.", + "docs_reference_links": "/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization" }, { "action": "role.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom repository role was deleted.", + "docs_reference_links": "/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization" }, { "action": "role.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom repository role was edited.", + "docs_reference_links": "/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization" }, { "action": "secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_alert.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub detected a secret and created a secret scanning alert.", + "docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning" }, { "action": "secret_scanning_alert.reopen", - "description": "N/A", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A" }, { "action": "secret_scanning_alert.resolve", - "description": "N/A", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A" }, { @@ -2586,32 +2646,32 @@ }, { "action": "secret_scanning_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_push_protection.bypass", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a user bypasses the push protection on a secret detected by secret scanning.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#bypassing-push-protection-for-a-secret" }, { "action": "sponsors.agreement_sign", - "description": "N/A", + "description": "A GitHub Sponsors agreement was signed on behalf of an organization.", "docs_reference_links": "N/A" }, { "action": "sponsors.custom_amount_settings_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Custom amounts for GitHub Sponsors were enabled or disabled, or the suggested custom amount was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.fiscal_host_change", - "description": "N/A", + "description": "The fiscal host for a GitHub Sponsors listing was updated.", "docs_reference_links": "N/A" }, { @@ -2621,103 +2681,103 @@ }, { "action": "sponsors.repo_funding_links_file_action", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The FUNDING file in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository" }, { "action": "sponsors.sponsored_developer_approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was approved.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was created.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_disable", - "description": "N/A", + "description": "A GitHub Sponsors account was disabled.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_profile_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The profile for GitHub Sponsors account was edited.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/editing-your-profile-details-for-github-sponsors" }, { "action": "sponsors.sponsored_developer_redraft", - "description": "N/A", + "description": "A GitHub Sponsors account was returned to draft state from approved state.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_request_approval", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An application for GitHub Sponsors was submitted for approval.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_tier_description_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The description for a sponsorship tier was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.sponsor_sponsorship_cancel", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was canceled.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was created, by sponsoring an account.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_payment_complete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "After you sponsor an account and a payment has been processed, the sponsorship payment was marked as complete.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_preference_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The option to receive email updates from a sponsored account was changed.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_tier_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was upgraded or downgraded.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/upgrading-a-sponsorship, /billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.update_tier_repository", - "description": "N/A", + "description": "A GitHub Sponsors tier changed access for a repository.", "docs_reference_links": "N/A" }, { "action": "sponsors.update_tier_welcome_message", - "description": "N/A", + "description": "The welcome message for a GitHub Sponsors tier for an organization was updated.", "docs_reference_links": "N/A" }, { "action": "sponsors.withdraw_agreement_signature", - "description": "N/A", + "description": "A signature was withdrawn from a GitHub Sponsors agreement that applies to an organization.", "docs_reference_links": "N/A" }, { "action": "ssh_certificate_authority.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was created.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_authority.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was deleted.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was disabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was enabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "staff.dependabot_debug_credentials_generated", @@ -2726,92 +2786,92 @@ }, { "action": "staff.set_domain_token_expiration", - "description": "N/A", + "description": "The verification code expiry time for an organization or enterprise domain was set.", "docs_reference_links": "N/A" }, { "action": "staff.unverify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was unverified.", "docs_reference_links": "N/A" }, { "action": "staff.verify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was verified.", "docs_reference_links": "N/A" }, { "action": "team.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member of an organization was added to a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/adding-organization-members-to-a-team" }, { "action": "team.add_repository", - "description": "N/A", + "description": "A team was given access and permissions to a repository.", "docs_reference_links": "N/A" }, { "action": "team.change_parent_team", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A child team was created or a child team's parent was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy" }, { "action": "team.change_privacy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A team's privacy level was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/changing-team-visibility" }, { "action": "team.create", - "description": "N/A", + "description": "A new team is created.", "docs_reference_links": "N/A" }, { "action": "team.demote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was demoted from a team maintainer to a team member.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member" }, { "action": "team.destroy", - "description": "N/A", + "description": "A team was deleted.", "docs_reference_links": "N/A" }, { "action": "team.promote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was promoted from a team member to a team maintainer.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member#promoting-an-organization-member-to-team-maintainer" }, { "action": "team.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was removed from a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/removing-organization-members-from-a-team" }, { "action": "team.remove_repository", - "description": "N/A", + "description": "A repository was removed from a team's control.", "docs_reference_links": "N/A" }, { "action": "team.rename", - "description": "N/A", + "description": "A team's name was changed.", "docs_reference_links": "N/A" }, { "action": "team.update_repository_permission", - "description": "N/A", + "description": "A team's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "team_discussions.clear", - "description": "N/A", + "description": "An organization owner cleared the setting to allow team discussions for an organization or enterprise.", "docs_reference_links": "N/A" }, { "action": "team_discussions.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team discussions were disabled for an organization.", + "docs_reference_links": "/organizations/organizing-members-into-teams/disabling-team-discussions-for-your-organization" }, { "action": "team_discussions.enable", - "description": "N/A", + "description": "Team discussions were enabled for an organization.", "docs_reference_links": "N/A" }, { @@ -2831,17 +2891,17 @@ }, { "action": "team_sync_tenant.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was disabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "team_sync_tenant.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was enabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "team_sync_tenant.update_okta_credentials", - "description": "N/A", + "description": "The Okta credentials for team synchronization with a tenant were changed.", "docs_reference_links": "N/A" }, { @@ -2871,8 +2931,8 @@ }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -2881,8 +2941,8 @@ }, { "action": "workflows.cancel_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was cancelled.", + "docs_reference_links": "/actions/managing-workflow-runs/canceling-a-workflow" }, { "action": "workflows.comment_workflow_job", @@ -2891,27 +2951,27 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.rerun_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was re-run.", + "docs_reference_links": "/actions/managing-workflow-runs/re-running-workflows-and-jobs" } ] \ No newline at end of file diff --git a/src/audit-logs/data/fpt/user.json b/src/audit-logs/data/fpt/user.json index f4bb80a963..ab3895dd22 100644 --- a/src/audit-logs/data/fpt/user.json +++ b/src/audit-logs/data/fpt/user.json @@ -6,8 +6,8 @@ }, { "action": "account.plan_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The account's plan changed.", + "docs_reference_links": "/billing/managing-the-plan-for-your-github-account/about-billing-for-plans" }, { "action": "account_recovery_token.confirm", @@ -31,18 +31,18 @@ }, { "action": "artifact.destroy", - "description": "N/A", + "description": "A workflow run artifact was manually deleted.", "docs_reference_links": "N/A" }, { "action": "billing.change_billing_type", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The way the account pays for GitHub was changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method" }, { "action": "billing.change_email", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The billing email address changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/setting-your-billing-email" }, { "action": "billing.lock", @@ -61,8 +61,8 @@ }, { "action": "business.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise" }, { "action": "business.set_actions_private_fork_pr_approvals_policy", @@ -71,8 +71,8 @@ }, { "action": "business.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs was changed for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise" }, { "action": "business.set_default_workflow_permissions", @@ -81,8 +81,8 @@ }, { "action": "business.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy for fork pull requests is changed.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise" }, { "action": "business.set_public_fork_pr_workflows_policy", @@ -96,38 +96,38 @@ }, { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.delete_logs", - "description": "N/A", + "description": "Logs in a check suite were deleted.", "docs_reference_links": "N/A" }, { "action": "codespaces.allow_permissions", - "description": "N/A", + "description": "A codespace using custom permissions from its devcontainer.json file was launched.", "docs_reference_links": "N/A" }, { "action": "codespaces.connect", - "description": "N/A", + "description": "A codespace was started.", "docs_reference_links": "N/A" }, { "action": "codespaces.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A codespace was created", + "docs_reference_links": "/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository" }, { "action": "codespaces.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user deleted a codespace.", + "docs_reference_links": "/codespaces/developing-in-codespaces/deleting-a-codespace" }, { "action": "codespaces.export_environment", @@ -146,6 +146,31 @@ }, { "action": "codespaces.trusted_repositories_access_update", + "description": "Triggered when you change your personal account's access and security setting for Codespaces.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" + }, + { + "action": "copilot.cfb_seat_assignment_created", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_refreshed", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_reused", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_unassigned", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_cancelled_by_staff", "description": "N/A", "docs_reference_links": "N/A" }, @@ -166,73 +191,73 @@ }, { "action": "dependabot_alerts.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_alerts_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_repository_access.repositories_updated", - "description": "N/A", + "description": "The repositories that Dependabot can access were updated.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot security updates were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": " Dependabot security updates were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates_new_repos.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all new repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph_new_repos.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all new repositories.", "docs_reference_links": "N/A" }, { "action": "environment.add_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was created via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.create", @@ -241,8 +266,8 @@ }, { "action": "environment.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.create_actions_variable", @@ -251,13 +276,13 @@ }, { "action": "environment.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An environment was deleted.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deleting-an-environment" }, { "action": "environment.remove_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.remove_actions_variable", @@ -266,13 +291,13 @@ }, { "action": "environment.remove_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was deleted via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.update_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.update_actions_variable", @@ -281,8 +306,8 @@ }, { "action": "environment.update_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was updated via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "github_hosted_runner.create", @@ -321,37 +346,37 @@ }, { "action": "hook.active_changed", - "description": "N/A", + "description": "A hook's active status was updated.", "docs_reference_links": "N/A" }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { @@ -361,102 +386,102 @@ }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.remove_client_secret", - "description": "N/A", + "description": "A client secret for an integration was removed.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_all_tokens", - "description": "N/A", + "description": "All user tokens for an integration were requested to be revoked.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_tokens", - "description": "N/A", + "description": "Token(s) for an integration were revoked.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.suspend", - "description": "N/A", + "description": "An integration was suspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.unsuspend", - "description": "N/A", + "description": "An integration was unsuspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "marketplace_agreement_signature.create", - "description": "N/A", + "description": "The GitHub Marketplace Developer Agreement was signed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.approve", - "description": "N/A", + "description": "A listing was approved for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.change_category", - "description": "N/A", + "description": "A category for a listing for an app in GitHub Marketplace was changed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.create", - "description": "N/A", + "description": "A listing for an app in GitHub Marketplace was created.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.delist", - "description": "N/A", + "description": "A listing was removed from GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.redraft", - "description": "N/A", + "description": "A listing was sent back to draft state.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.reject", - "description": "N/A", + "description": "A listing was not accepted for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { @@ -516,82 +541,82 @@ }, { "action": "migration.create", - "description": "N/A", + "description": "A migration file was created for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance.", "docs_reference_links": "N/A" }, { "action": "oauth_access.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth access token was generated.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps, /authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token" }, { "action": "oauth_access.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth access token was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps" }, { "action": "oauth_access.regenerate", - "description": "N/A", + "description": "An OAuth access token was regenerated.", "docs_reference_links": "N/A" }, { "action": "oauth_access.update", - "description": "N/A", + "description": "An OAuth access token was updated.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.generate_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was generated.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.remove_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_all_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "All user tokens for an OAuth application were requested to be revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_authorization.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An authorization for an OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps" }, { "action": "oauth_authorization.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An authorization for an OAuth application was deleted.", + "docs_reference_links": "/apps/using-github-apps/reviewing-your-authorized-integrations" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { @@ -601,33 +626,33 @@ }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { "action": "org.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#requiring-approval-for-workflows-from-public-forks" }, { "action": "org.set_actions_private_fork_pr_approvals_policy", @@ -636,8 +661,8 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.set_default_workflow_permissions", @@ -646,8 +671,8 @@ }, { "action": "org.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy for workflows on private repository forks was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#enabling-workflows-for-private-repository-forks" }, { "action": "org.set_workflow_permission_can_approve_pr", @@ -656,77 +681,77 @@ }, { "action": "org.update_member", - "description": "N/A", + "description": "A person's role was changed from owner to member or member to owner.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "pages_protected_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was created for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was deleted from an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages domain was verified for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "passkey.register", - "description": "N/A", + "description": "A new passkey was added.", "docs_reference_links": "N/A" }, { "action": "passkey.remove", - "description": "N/A", + "description": "A new passkey was removed.", "docs_reference_links": "N/A" }, { "action": "payment_method.create", - "description": "N/A", + "description": "A new payment method was added, such as a new credit card or PayPal account.", "docs_reference_links": "N/A" }, { "action": "payment_method.remove", - "description": "N/A", + "description": "A payment method was removed.", "docs_reference_links": "N/A" }, { "action": "payment_method.update", - "description": "N/A", + "description": "An existing payment method was updated.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was granted access to resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.access_revoked", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was revoked. The token can still read public organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/reviewing-and-revoking-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.create", - "description": "N/A", + "description": "Triggered when you create a fine-grained personal access token.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.credential_regenerated", - "description": "N/A", + "description": "Triggered when you regenerate a fine-grained personal access token.", "docs_reference_links": "N/A" }, { @@ -736,23 +761,23 @@ }, { "action": "personal_access_token.destroy", - "description": "N/A", + "description": "Triggered when you delete a fine-grained personal access token.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.request_cancelled", - "description": "N/A", + "description": "A pending request for a fine-grained personal access token to access organization resources was canceled.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.request_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a fine-grained personal access token was created to access organization resources and the organization requires approval before the token can access organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.request_denied", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A request for a fine-grained personal access token to access organization resources was denied.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.update", @@ -796,83 +821,83 @@ }, { "action": "profile_picture.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A profile picture was updated.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile" }, { "action": "project.access", - "description": "N/A", + "description": "A project board visibility was changed.", "docs_reference_links": "N/A" }, { "action": "project.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was closed.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/closing-a-project-board" }, { "action": "project.create", - "description": "N/A", + "description": "A project board was created.", "docs_reference_links": "N/A" }, { "action": "project.delete", - "description": "N/A", + "description": "A project board was deleted.", "docs_reference_links": "N/A" }, { "action": "project.link", - "description": "N/A", + "description": "A repository was linked to a project board.", "docs_reference_links": "N/A" }, { "action": "project.open", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was reopened.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/reopening-a-closed-project-board" }, { "action": "project.rename", - "description": "N/A", + "description": "A project board was renamed.", "docs_reference_links": "N/A" }, { "action": "project.unlink", - "description": "N/A", + "description": "A repository was unlinked from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_org_permission", - "description": "N/A", + "description": "The project's base-level permission for all organization members was changed or removed.", "docs_reference_links": "N/A" }, { "action": "project.update_team_permission", - "description": "N/A", + "description": "A team's project board permission level was changed or when a team was added or removed from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_user_permission", - "description": "N/A", + "description": "A user was added to or removed from a project board or had their permission level changed.", "docs_reference_links": "N/A" }, { "action": "project_field.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields" }, { "action": "project_field.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields/deleting-custom-fields" }, { "action": "project_view.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "project_view.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "protected_branch.update_merge_queue_enforcement_level", @@ -881,118 +906,118 @@ }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.actions_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Actions was enabled for a repository. Can be viewed using the UI, This event is not included when you access the audit log using the REST API.", + "docs_reference_links": "organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#using-the-audit-log-api" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -1001,13 +1026,13 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions secret was created for a repository.", + "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository" }, { "action": "repo.create_actions_variable", @@ -1016,62 +1041,62 @@ }, { "action": "repo.create_integration_secret", - "description": "N/A", + "description": "An integration secret was created for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was deleted for a repository.", "docs_reference_links": "N/A" }, { @@ -1081,28 +1106,28 @@ }, { "action": "repo.remove_integration_secret", - "description": "N/A", + "description": "An integration secret was deleted for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.restore", @@ -1111,8 +1136,8 @@ }, { "action": "repo.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-required-approval-for-workflows-from-public-forks" }, { "action": "repo.set_actions_private_fork_pr_approvals_policy", @@ -1121,8 +1146,8 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.set_default_workflow_permissions", @@ -1131,8 +1156,8 @@ }, { "action": "repo.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when the policy for workflows on private repository forks is changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#enabling-workflows-for-private-repository-forks" }, { "action": "repo.set_workflow_permission_can_approve_pr", @@ -1141,47 +1166,47 @@ }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.temporary_access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Temporary access was enabled for a repository.", + "docs_reference_links": "/admin/user-management/managing-repositories-in-your-enterprise/accessing-user-owned-repositories-in-your-enterprise" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was updated.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { @@ -1191,47 +1216,47 @@ }, { "action": "repo.update_default_branch", - "description": "N/A", + "description": "The default branch for a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_integration_secret", - "description": "N/A", + "description": "An integration secret was updated for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repository_image.create", - "description": "N/A", + "description": "An image to represent a repository was uploaded.", "docs_reference_links": "N/A" }, { "action": "repository_image.destroy", - "description": "N/A", + "description": "An image to represent a repository was deleted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { @@ -1251,138 +1276,138 @@ }, { "action": "security_key.register", - "description": "N/A", + "description": "A security key was registered for an account.", "docs_reference_links": "N/A" }, { "action": "security_key.remove", - "description": "N/A", + "description": "A security key was removed from an account.", "docs_reference_links": "N/A" }, { "action": "sponsors.agreement_sign", - "description": "N/A", + "description": "A GitHub Sponsors agreement was signed on behalf of an organization.", "docs_reference_links": "N/A" }, { "action": "sponsors.custom_amount_settings_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Custom amounts for GitHub Sponsors were enabled or disabled, or the suggested custom amount was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.fiscal_host_change", - "description": "N/A", + "description": "The fiscal host for a GitHub Sponsors listing was updated.", "docs_reference_links": "N/A" }, { "action": "sponsors.repo_funding_links_file_action", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The FUNDING file in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository" }, { "action": "sponsors.sponsored_developer_approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was approved.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was created.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_disable", - "description": "N/A", + "description": "A GitHub Sponsors account was disabled.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_profile_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The profile for GitHub Sponsors account was edited.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/editing-your-profile-details-for-github-sponsors" }, { "action": "sponsors.sponsored_developer_redraft", - "description": "N/A", + "description": "A GitHub Sponsors account was returned to draft state from approved state.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_request_approval", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An application for GitHub Sponsors was submitted for approval.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_tier_description_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The description for a sponsorship tier was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.sponsored_developer_update_newsletter_send", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you send an email update to your sponsors (see \"Contacting your sponsors\")", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/contacting-your-sponsors" }, { "action": "sponsors.sponsor_sponsorship_cancel", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was canceled.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was created, by sponsoring an account.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_payment_complete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "After you sponsor an account and a payment has been processed, the sponsorship payment was marked as complete.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_preference_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The option to receive email updates from a sponsored account was changed.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_tier_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was upgraded or downgraded.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/upgrading-a-sponsorship, /billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.update_tier_repository", - "description": "N/A", + "description": "A GitHub Sponsors tier changed access for a repository.", "docs_reference_links": "N/A" }, { "action": "sponsors.update_tier_welcome_message", - "description": "N/A", + "description": "The welcome message for a GitHub Sponsors tier for an organization was updated.", "docs_reference_links": "N/A" }, { "action": "sponsors.waitlist_join", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "You join the waitlist to join GitHub Sponsors.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.withdraw_agreement_signature", - "description": "N/A", + "description": "A signature was withdrawn from a GitHub Sponsors agreement that applies to an organization.", "docs_reference_links": "N/A" }, { "action": "successor_invitation.accept", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you accept a succession invitation (see \"Maintaining ownership continuity of your personal account's repositories\")", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-personal-accounts-repositories" }, { "action": "successor_invitation.cancel", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you cancel a succession invitation (see \"Maintaining ownership continuity of your personal account's repositories\")", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-personal-accounts-repositories" }, { "action": "successor_invitation.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you create a succession invitation (see \"Maintaining ownership continuity of your personal account's repositories\")", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-personal-accounts-repositories" }, { "action": "successor_invitation.decline", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you decline a succession invitation (see \"Maintaining ownership continuity of your personal account's repositories\")", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-personal-accounts-repositories" }, { "action": "successor_invitation.destroy", @@ -1391,8 +1416,8 @@ }, { "action": "successor_invitation.revoke", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you revoke a succession invitation (see \"Maintaining ownership continuity of your personal account's repositories\")", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-personal-accounts-repositories" }, { "action": "trusted_device.register", @@ -1446,22 +1471,22 @@ }, { "action": "two_factor_authentication.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication was disabled for a user account.", + "docs_reference_links": "https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/disabling-two-factor-authentication-for-your-personal-account" }, { "action": "two_factor_authentication.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication was enabled for a user account.", + "docs_reference_links": "https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication" }, { "action": "two_factor_authentication.password_reset_fallback_sms", - "description": "N/A", + "description": "A one-time password code was sent to a user account fallback phone number.", "docs_reference_links": "N/A" }, { "action": "two_factor_authentication.recovery_codes_regenerated", - "description": "N/A", + "description": "Two factor recovery codes were regenerated for a user account.", "docs_reference_links": "N/A" }, { @@ -1471,52 +1496,52 @@ }, { "action": "two_factor_authentication.sign_in_fallback_sms", - "description": "N/A", + "description": "A one-time password code was sent to a user account fallback phone number.", "docs_reference_links": "N/A" }, { "action": "two_factor_authentication.update_fallback", - "description": "N/A", + "description": "The two-factor authentication fallback for a user account was changed.", "docs_reference_links": "N/A" }, { "action": "user.add_email", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An email address was added to a user account.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/adding-an-email-address-to-your-github-account" }, { "action": "user.async_delete", - "description": "N/A", + "description": "An asynchronous job was started to destroy a user account, eventually triggering a user.delete event.", "docs_reference_links": "N/A" }, { "action": "user.audit_log_export", - "description": "N/A", + "description": "Audit log entries were exported.", "docs_reference_links": "N/A" }, { "action": "user.block_user", - "description": "N/A", + "description": "A user was blocked by another user.", "docs_reference_links": "N/A" }, { "action": "user.change_password", - "description": "N/A", + "description": "A user changed their password.", "docs_reference_links": "N/A" }, { "action": "user.codespaces_trusted_repo_access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you allow the codespaces you create for a repository to access other repositories owned by your personal account.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "user.codespaces_trusted_repo_access_revoked", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you disallow the codespaces you create for a repository to access other repositories owned by your personal account.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "user.create", - "description": "N/A", + "description": "A new user account was created.", "docs_reference_links": "N/A" }, { @@ -1526,22 +1551,22 @@ }, { "action": "user.creation_rate_limit_exceeded", - "description": "N/A", + "description": "The rate of creation of user accounts, applications, issues, pull requests or other resources exceeded the configured rate limits, or too many users were followed too quickly.", "docs_reference_links": "N/A" }, { "action": "user.delete", - "description": "N/A", + "description": "A user account was destroyed by an asynchronous job.", "docs_reference_links": "N/A" }, { "action": "user.demote", - "description": "N/A", + "description": "A site administrator was demoted to an ordinary user account.", "docs_reference_links": "N/A" }, { "action": "user.destroy", - "description": "N/A", + "description": "A user deleted his or her account, triggering user.async_delete.", "docs_reference_links": "N/A" }, { @@ -1591,13 +1616,13 @@ }, { "action": "user.failed_login", - "description": "N/A", + "description": "A user tried to sign in with an incorrect username, password, or two-factor authentication code.", "docs_reference_links": "N/A" }, { "action": "user.forgot_password", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user requested a password reset.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials" }, { "action": "user.grant_github_developer", @@ -1606,12 +1631,12 @@ }, { "action": "user.hide_private_contributions_count", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now hidden.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-settings-on-your-profile/showing-your-private-contributions-and-achievements-on-your-profile" }, { "action": "user.login", - "description": "N/A", + "description": "A user signed in.", "docs_reference_links": "N/A" }, { @@ -1626,17 +1651,17 @@ }, { "action": "user.promote", - "description": "N/A", + "description": "An ordinary user account was promoted to a site administrator.", "docs_reference_links": "N/A" }, { "action": "user.recreate", - "description": "N/A", + "description": "A user's account was restored.", "docs_reference_links": "N/A" }, { "action": "user.remove_email", - "description": "N/A", + "description": "An email address was removed from a user account.", "docs_reference_links": "N/A" }, { @@ -1646,32 +1671,32 @@ }, { "action": "user.rename", - "description": "N/A", + "description": "A username was changed.", "docs_reference_links": "N/A" }, { "action": "user.reset_password", - "description": "N/A", + "description": "A user reset their account password.", "docs_reference_links": "N/A" }, { "action": "user.show_private_contributions_count", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now shown.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-settings-on-your-profile/showing-your-private-contributions-and-achievements-on-your-profile" }, { "action": "user.sign_in_from_unrecognized_device", - "description": "N/A", + "description": "A user signed in from an unrecognized device.", "docs_reference_links": "N/A" }, { "action": "user.sign_in_from_unrecognized_device_and_location", - "description": "N/A", + "description": "A user signed in from an unrecognized device and location.", "docs_reference_links": "N/A" }, { "action": "user.suspend", - "description": "N/A", + "description": "A user account was suspended.", "docs_reference_links": "N/A" }, { @@ -1681,47 +1706,47 @@ }, { "action": "user.two_factor_challenge_failure", - "description": "N/A", + "description": "A 2FA challenge issued for a user account failed.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_challenge_success", - "description": "N/A", + "description": "A 2FA challenge issued for a user account succeeded.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recover", - "description": "N/A", + "description": "A user used their 2FA recovery codes.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_downloaded", - "description": "N/A", + "description": "A user downloaded 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_printed", - "description": "N/A", + "description": "A user printed 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_viewed", - "description": "N/A", + "description": "A user viewed 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_requested", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was prompted for a two-factor authentication code.", + "docs_reference_links": "/authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication" }, { "action": "user.unblock_user", - "description": "N/A", + "description": "A user was unblocked by another user.", "docs_reference_links": "N/A" }, { "action": "user.unsuspend", - "description": "N/A", + "description": "A user account was unsuspended.", "docs_reference_links": "N/A" }, { @@ -1741,18 +1766,18 @@ }, { "action": "user_status.destroy", - "description": "N/A", + "description": "Triggered when you clear the status on your profile.", "docs_reference_links": "N/A" }, { "action": "user_status.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you set or change the status on your profile.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile#setting-a-status" }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -1766,22 +1791,22 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" } ] \ No newline at end of file diff --git a/src/audit-logs/data/ghec/enterprise.json b/src/audit-logs/data/ghec/enterprise.json index cb834479ea..a17e6e48bc 100644 --- a/src/audit-logs/data/ghec/enterprise.json +++ b/src/audit-logs/data/ghec/enterprise.json @@ -1,18 +1,18 @@ [ { "action": "business.add_admin", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner was added to an enterprise.", + "docs_reference_links": "/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise" }, { "action": "business.add_organization", - "description": "N/A", + "description": "An organization was added to an enterprise.", "docs_reference_links": "N/A" }, { "action": "business.advanced_security_policy_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner created, updated, or removed a policy for GitHub Advanced Security.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-code-security-and-analysis-for-your-enterprise" }, { "action": "business.advanced_security_repo_admin_enablement_policy_update", @@ -21,22 +21,22 @@ }, { "action": "business.clear_actions_settings", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner or site administrator cleared GitHub Actions policy settings for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise" }, { "action": "business.clear_default_repository_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the base repository permission policy setting for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions" }, { "action": "business.clear_members_can_create_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared a restriction on repository creation in organizations in the enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#setting-a-policy-for-repository-creation" }, { "action": "business.create", - "description": "N/A", + "description": "An enterprise was created.", "docs_reference_links": "N/A" }, { @@ -51,7 +51,7 @@ }, { "action": "business.disable_two_factor_requirement", - "description": "N/A", + "description": "The requirement for members to have two-factor authentication enabled to access an enterprise was disabled.", "docs_reference_links": "N/A" }, { @@ -61,37 +61,37 @@ }, { "action": "business.enable_two_factor_requirement", - "description": "N/A", + "description": "The requirement for members to have two-factor authentication enabled to access an enterprise was enabled.", "docs_reference_links": "N/A" }, { "action": "business.members_can_update_protected_branches.clear", - "description": "N/A", + "description": "An enterprise owner unset a policy for whether members of an enterprise can update protected branches on repositories for individual organizations. Organization owners can choose whether to allow updating protected branches settings.", "docs_reference_links": "N/A" }, { "action": "business.members_can_update_protected_branches.disable", - "description": "N/A", + "description": "The ability for enterprise members to update branch protection rules was disabled. Only enterprise owners can update protected branches.", "docs_reference_links": "N/A" }, { "action": "business.members_can_update_protected_branches.enable", - "description": "N/A", + "description": "The ability for enterprise members to update branch protection rules was enabled. Enterprise owners and members can update protected branches.", "docs_reference_links": "N/A" }, { "action": "business.remove_admin", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner was removed from an enterprise.", + "docs_reference_links": "/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise" }, { "action": "business.remove_organization", - "description": "N/A", + "description": "An organization was removed from an enterprise.", "docs_reference_links": "N/A" }, { "action": "business.rename_slug", - "description": "N/A", + "description": "The slug for the enterprise URL was renamed.", "docs_reference_links": "N/A" }, { @@ -106,48 +106,48 @@ }, { "action": "business.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs was changed for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise" }, { "action": "business.update_actions_settings", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner or site administrator updated GitHub Actions policy settings for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise" }, { "action": "business.update_default_repository_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The base repository permission setting was updated for all organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions" }, { "action": "business.update_member_repository_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The repository creation setting was updated for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-creation" }, { "action": "business.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy setting for enterprise members inviting outside collaborators to repositories was updated.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories" }, { "action": "business_advanced_security.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_advanced_security.disabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_advanced_security.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_advanced_security.enabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_dependabot_alerts_new_repos.disable", @@ -161,98 +161,103 @@ }, { "action": "business_secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning.disabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning.enabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" + }, + { + "action": "business_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the business level", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise#managing-advanced-security-features" }, { "action": "business_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise-level custom pattern was created for secret scanning.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account" }, { "action": "business_secret_scanning_custom_pattern.delete", - "description": "N/A", + "description": "An enterprise-level custom pattern was removed from secret scanning.", "docs_reference_links": "N/A" }, { "action": "business_secret_scanning_custom_pattern.publish", - "description": "N/A", + "description": "An enterprise-level custom pattern was published for secret scanning.", "docs_reference_links": "N/A" }, { "action": "business_secret_scanning_custom_pattern.update", - "description": "N/A", + "description": "Changes to an enterprise-level custom pattern were saved and a dry run was executed for secret scanning.", "docs_reference_links": "N/A" }, { "action": "business_secret_scanning_custom_pattern_push_protection.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for your enterprise.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account" }, { "action": "business_secret_scanning_custom_pattern_push_protection.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for your enterprise.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account" }, { "action": "business_secret_scanning_push_protection.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection.disabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection.enabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was enabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection_custom_message.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection_custom_message.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection_custom_message.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was updated for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "custom_hosted_runner.create", @@ -271,68 +276,68 @@ }, { "action": "discussion_post.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "discussion_post_reply.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post_reply.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "enterprise.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new GitHub Actions self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "enterprise.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "enterprise.runner_group_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner group was created.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "enterprise.runner_group_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner group was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group" }, { "action": "enterprise.runner_group_runners_added", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner was added to a group.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group" }, { "action": "enterprise.runner_group_runners_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions runner group's list of members was updated.", + "docs_reference_links": "/rest/actions#set-self-hosted-runners-in-a-group-for-an-organization" }, { "action": "enterprise.runner_group_runner_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The REST API was used to remove a GitHub Actions self-hosted runner from a group.", + "docs_reference_links": "/rest/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization" }, { "action": "enterprise.runner_group_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The configuration of a GitHub Actions self-hosted runner group was changed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "enterprise.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The GitHub Actions runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "enterprise_announcement.create", @@ -351,37 +356,37 @@ }, { "action": "enterprise_domain.approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was approved for an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#approving-a-domain-for-your-enterprise-account" }, { "action": "enterprise_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was added to an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account" }, { "action": "enterprise_domain.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was removed from an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#removing-an-approved-or-verified-domain" }, { "action": "enterprise_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was verified for an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account" }, { "action": "git.clone", - "description": "N/A", + "description": "A repository was cloned.", "docs_reference_links": "N/A" }, { "action": "git.fetch", - "description": "N/A", + "description": "Changes were fetched from a repository.", "docs_reference_links": "N/A" }, { "action": "git.push", - "description": "N/A", + "description": "Changes were pushed to a repository.", "docs_reference_links": "N/A" }, { @@ -401,82 +406,82 @@ }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable", - "description": "N/A", + "description": "An IP allow list was disabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was disabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { @@ -486,12 +491,12 @@ }, { "action": "ip_allow_list.enable", - "description": "N/A", + "description": "An IP allow list was enabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was enabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { @@ -501,57 +506,57 @@ }, { "action": "ip_allow_list_entry.create", - "description": "N/A", + "description": "An IP address was added to an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.destroy", - "description": "N/A", + "description": "An IP address was deleted from an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.update", - "description": "N/A", + "description": "An IP address or its description was changed.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "org.accept_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation sent to an organization to join an enterprise was accepted.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.add_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was added to an organization.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { @@ -561,38 +566,38 @@ }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_policy_selected_member_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner prevented GitHub Advanced Security features from being enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.advanced_security_policy_selected_member_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner allowed GitHub Advanced Security features to be enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.audit_log_export", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An export of the organization audit log was created. If the export included a query, the log will list the query used and the number of audit log entries matching that query.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#exporting-the-audit-log" }, { "action": "org.billing_signup_error", @@ -601,17 +606,17 @@ }, { "action": "org.block_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner blocked a user from accessing the organization's repositories.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization" }, { "action": "org.cancel_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was revoked", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.cancel_invitation", - "description": "N/A", + "description": "An invitation sent to a user to join an organization was revoked.", "docs_reference_links": "N/A" }, { @@ -621,43 +626,43 @@ }, { "action": "org.codeql_disabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization disables code scanning for repositories that use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.codeql_enabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization enables code scanning for repositories that are eligible to use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.configure_self_hosted_jit_runner", @@ -666,92 +671,92 @@ }, { "action": "org.confirm_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was confirmed.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization was created.", + "docs_reference_links": "/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch" }, { "action": "org.disable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation was limited to owners.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.disable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner limited discussion creation to users with at least triage permission in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.disable_saml", - "description": "N/A", + "description": "SAML single sign-on was disabled for an organization.", "docs_reference_links": "N/A" }, { "action": "org.disable_two_factor_requirement", - "description": "N/A", + "description": "A two-factor authentication requirement was disabled for the organization.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_disabled", - "description": "N/A", + "description": "An organization owner disabled the display of a commenter's full name in an organization. Members cannot see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_enabled", - "description": "N/A", + "description": "An organization owner enabled the display of a commenter's full name in an organization. Members can see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.enable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation by members was allowed.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.enable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner allowed users with read access to create discussions in an organization", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.enable_saml", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "SAML single sign-on was enabled for the organization.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization" }, { "action": "org.enable_two_factor_requirement", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication is now required for the organization.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.integration_manager_added", - "description": "N/A", + "description": "An organization owner granted a member access to manage all GitHub Apps owned by an organization.", "docs_reference_links": "N/A" }, { "action": "org.integration_manager_removed", - "description": "N/A", + "description": "An organization owner removed access to manage all GitHub Apps owned by an organization from an organization member.", "docs_reference_links": "N/A" }, { "action": "org.invite_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new user was invited to join an organization.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization" }, { "action": "org.invite_to_business", - "description": "N/A", + "description": "An organization was invited to join an enterprise.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.disable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was disabled. Only enterprise owners can update protected branches.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.enable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was enabled. Members of an organization can update protected branches.", "docs_reference_links": "N/A" }, { @@ -761,22 +766,22 @@ }, { "action": "org.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization" }, { "action": "org.remove_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was removed from an organization, either manually or due to a two-factor authentication requirement.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization, /organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { "action": "org.remove_outside_collaborator", - "description": "N/A", + "description": "An outside collaborator was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { @@ -786,82 +791,82 @@ }, { "action": "org.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization" }, { "action": "org.rename", - "description": "N/A", + "description": "An organization was renamed.", "docs_reference_links": "N/A" }, { "action": "org.restore_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was restored.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization" }, { "action": "org.runner_group_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was created.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization" }, { "action": "org.runner_group_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group" }, { "action": "org.runner_group_runners_added", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was added to a group.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group" }, { "action": "org.runner_group_runners_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A runner group's list of members was updated.", + "docs_reference_links": "/rest/actions#set-self-hosted-runners-in-a-group-for-an-organization" }, { "action": "org.runner_group_runner_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The REST API was used to remove a self-hosted runner from a group.", + "docs_reference_links": "/rest/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization" }, { "action": "org.runner_group_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The configuration of a self-hosted runner group was changed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "org.secret_scanning_custom_pattern_push_protection_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_custom_pattern_push_protection_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was updated for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "org.secret_scanning_push_protection_enable", - "description": "N/A", + "description": "Push protection for secret scanning was enabled.", "docs_reference_links": "N/A" }, { @@ -876,8 +881,8 @@ }, { "action": "org.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "org.set_actions_private_fork_pr_approvals_policy", @@ -886,8 +891,8 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.set_custom_invitation_rate_limit", @@ -896,8 +901,8 @@ }, { "action": "org.unblock_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was unblocked from an organization.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization" }, { "action": "org.update_actions_settings", @@ -906,87 +911,97 @@ }, { "action": "org.update_default_repository_permission", - "description": "N/A", + "description": "The default repository permission level for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "org.update_saml_provider_settings", - "description": "N/A", + "description": "An organization's SAML provider settings were updated.", "docs_reference_links": "N/A" }, { "action": "org.update_terms_of_service", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization changed between the Standard Terms of Service and the GitHub Customer Agreement.", + "docs_reference_links": "/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement" }, { "action": "organization_domain.approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was approved for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#approving-a-domain-for-your-organization" }, { "action": "organization_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was added to an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" }, { "action": "organization_domain.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was removed from an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#removing-an-approved-or-verified-domain" }, { "action": "organization_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was verified for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" }, { "action": "org_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "org_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "packages.package_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An entire package was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_published", - "description": "N/A", + "description": "A package was published or republished to an organization.", "docs_reference_links": "N/A" }, { "action": "packages.package_version_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A specific package version was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_version_published", - "description": "N/A", + "description": "A specific package version was published or republished to a package.", "docs_reference_links": "N/A" }, { @@ -1009,39 +1024,49 @@ "description": "N/A", "docs_reference_links": "N/A" }, + { + "action": "protected_branch.branch_allowances", + "description": "A protected branch allowance was given to a specific user, team or integration.", + "docs_reference_links": "N/A" + }, { "action": "protected_branch.create", - "description": "N/A", + "description": "Branch protection was enabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.destroy", - "description": "N/A", + "description": "Branch protection was disabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismissal_restricted_users_teams", - "description": "N/A", + "description": "Enforcement of restricting users and/or teams who can dismiss reviews was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismiss_stale_reviews", - "description": "N/A", + "description": "Enforcement of dismissing stale pull requests was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.policy_override", - "description": "N/A", + "description": "A branch protection requirement was overridden by a repository administrator.", "docs_reference_links": "N/A" }, { "action": "protected_branch.rejected_ref_update", - "description": "N/A", + "description": "A branch update attempt was rejected.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_admin_enforced", - "description": "N/A", + "description": "Branch protection was enforced for repository administrators.", + "docs_reference_links": "N/A" + }, + { + "action": "protected_branch.update_allow_force_pushes_enforcement_level", + "description": "Force pushes were enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -1061,27 +1086,27 @@ }, { "action": "protected_branch.update_name", - "description": "N/A", + "description": "A branch name pattern was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_pull_request_reviews_enforcement_level", - "description": "N/A", + "description": "Enforcement of required pull request reviews was updated for a branch. Can be 0 (deactivated), 1 (non-admins), or 2 (everyone).", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_approving_review_count", - "description": "N/A", + "description": "Enforcement of the required number of approvals before merging was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_status_checks_enforcement_level", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_require_code_owner_review", - "description": "N/A", + "description": "Enforcement of required code owner review was updated for a branch.", "docs_reference_links": "N/A" }, { @@ -1091,88 +1116,88 @@ }, { "action": "protected_branch.update_signature_requirement_enforcement_level", - "description": "N/A", + "description": "Enforcement of required commit signing was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_strict_required_status_checks_policy", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "pull_request.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was closed without being merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request" }, { "action": "pull_request.converted_to_draft", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was converted to a draft.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft" }, { "action": "pull_request.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was created.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request" }, { "action": "pull_request.create_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review was requested on a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.indirect_merge", - "description": "N/A", + "description": "A pull request was considered merged because the pull request's commits were merged into the target branch.", "docs_reference_links": "N/A" }, { "action": "pull_request.in_progress", - "description": "N/A", + "description": "A pull request was marked as in progress.", "docs_reference_links": "N/A" }, { "action": "pull_request.merge", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request" }, { "action": "pull_request.ready_for_review", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was marked as ready for review.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review" }, { "action": "pull_request.rebase", @@ -1181,77 +1206,77 @@ }, { "action": "pull_request.remove_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review request was removed from a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.reopen", - "description": "N/A", + "description": "A pull request was reopened after previously being closed.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.delete", - "description": "N/A", + "description": "A review on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.dismiss", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was dismissed.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review" }, { "action": "pull_request_review.submit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was submitted.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review" }, { "action": "pull_request_review_comment.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review comment was added to a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request_review_comment.delete", - "description": "N/A", + "description": "A review comment on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review_comment.update", - "description": "N/A", + "description": "A review comment on a pull request was changed.", "docs_reference_links": "N/A" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { @@ -1266,43 +1291,43 @@ }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -1311,83 +1336,83 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.download_zip", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A source code archive of a repository was downloaded as a ZIP file.", + "docs_reference_links": "/repositories/working-with-files/using-files/downloading-source-code-archives" }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.restore", @@ -1396,8 +1421,8 @@ }, { "action": "repo.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "repo.set_actions_private_fork_pr_approvals_policy", @@ -1406,47 +1431,47 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { @@ -1461,22 +1486,22 @@ }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { @@ -1496,87 +1521,97 @@ }, { "action": "repository_secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "repository_secret_scanning.enable", - "description": "N/A", + "description": "Secret scanning was enabled for a repository.", "docs_reference_links": "N/A" }, + { + "action": "repository_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, + { + "action": "repository_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, { "action": "repository_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_push_protection.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "repository_secret_scanning_push_protection.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was enabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "restrict_notification_delivery.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were disabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "restrict_notification_delivery.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were enabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_alert.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub detected a secret and created a secret scanning alert.", + "docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning" }, { "action": "secret_scanning_alert.reopen", - "description": "N/A", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A" }, { "action": "secret_scanning_alert.resolve", - "description": "N/A", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A" }, { @@ -1586,143 +1621,143 @@ }, { "action": "secret_scanning_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_push_protection.bypass", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a user bypasses the push protection on a secret detected by secret scanning.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#bypassing-push-protection-for-a-secret" }, { "action": "ssh_certificate_authority.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was created.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_authority.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was deleted.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was disabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was enabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "staff.set_domain_token_expiration", - "description": "N/A", + "description": "The verification code expiry time for an organization or enterprise domain was set.", "docs_reference_links": "N/A" }, { "action": "staff.unverify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was unverified.", "docs_reference_links": "N/A" }, { "action": "staff.verify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was verified.", "docs_reference_links": "N/A" }, { "action": "team.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member of an organization was added to a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/adding-organization-members-to-a-team" }, { "action": "team.add_repository", - "description": "N/A", + "description": "A team was given access and permissions to a repository.", "docs_reference_links": "N/A" }, { "action": "team.change_parent_team", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A child team was created or a child team's parent was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy" }, { "action": "team.change_privacy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A team's privacy level was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/changing-team-visibility" }, { "action": "team.create", - "description": "N/A", + "description": "A new team is created.", "docs_reference_links": "N/A" }, { "action": "team.demote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was demoted from a team maintainer to a team member.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member" }, { "action": "team.destroy", - "description": "N/A", + "description": "A team was deleted.", "docs_reference_links": "N/A" }, { "action": "team.promote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was promoted from a team member to a team maintainer.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member#promoting-an-organization-member-to-team-maintainer" }, { "action": "team.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was removed from a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/removing-organization-members-from-a-team" }, { "action": "team.remove_repository", - "description": "N/A", + "description": "A repository was removed from a team's control.", "docs_reference_links": "N/A" }, { "action": "team.rename", - "description": "N/A", + "description": "A team's name was changed.", "docs_reference_links": "N/A" }, { "action": "team.update_repository_permission", - "description": "N/A", + "description": "A team's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "team_discussions.clear", - "description": "N/A", + "description": "An organization owner cleared the setting to allow team discussions for an organization or enterprise.", "docs_reference_links": "N/A" }, { "action": "team_discussions.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team discussions were disabled for an organization.", + "docs_reference_links": "/organizations/organizing-members-into-teams/disabling-team-discussions-for-your-organization" }, { "action": "team_discussions.enable", - "description": "N/A", + "description": "Team discussions were enabled for an organization.", "docs_reference_links": "N/A" }, { "action": "team_sync_tenant.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was disabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "team_sync_tenant.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was enabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -1731,8 +1766,8 @@ }, { "action": "workflows.cancel_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was cancelled.", + "docs_reference_links": "/actions/managing-workflow-runs/canceling-a-workflow" }, { "action": "workflows.comment_workflow_job", @@ -1741,27 +1776,27 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.rerun_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was re-run.", + "docs_reference_links": "/actions/managing-workflow-runs/re-running-workflows-and-jobs" } ] \ No newline at end of file diff --git a/src/audit-logs/data/ghec/organization.json b/src/audit-logs/data/ghec/organization.json index 775b6c33ce..b697212edb 100644 --- a/src/audit-logs/data/ghec/organization.json +++ b/src/audit-logs/data/ghec/organization.json @@ -6,8 +6,8 @@ }, { "action": "account.plan_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The account's plan changed.", + "docs_reference_links": "/billing/managing-the-plan-for-your-github-account/about-billing-for-plans" }, { "action": "actions_cache.delete", @@ -16,48 +16,48 @@ }, { "action": "advisory_credit.accept", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Credit was accepted for a security advisory.", + "docs_reference_links": "/code-security/security-advisories/working-with-repository-security-advisories/editing-a-repository-security-advisory" }, { "action": "advisory_credit.create", - "description": "N/A", + "description": "Someone was added to the credit section of a security advisory.", "docs_reference_links": "N/A" }, { "action": "advisory_credit.decline", - "description": "N/A", + "description": "Credit was declined for a security advisory.", "docs_reference_links": "N/A" }, { "action": "advisory_credit.destroy", - "description": "N/A", + "description": "Someone was removed from the credit section of a security advisory.", "docs_reference_links": "N/A" }, { "action": "artifact.destroy", - "description": "N/A", + "description": "A workflow run artifact was manually deleted.", "docs_reference_links": "N/A" }, { "action": "auto_approve_personal_access_token_requests.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when the organization must approve fine-grained personal access tokens before the tokens can access organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/setting-a-personal-access-token-policy-for-your-organization" }, { "action": "auto_approve_personal_access_token_requests.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when fine-grained personal access tokens can access organization resources without prior approval.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/setting-a-personal-access-token-policy-for-your-organization" }, { "action": "billing.change_billing_type", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The way the account pays for GitHub was changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method" }, { "action": "billing.change_email", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The billing email address changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/setting-your-billing-email" }, { "action": "billing.lock", @@ -71,27 +71,27 @@ }, { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.delete_logs", - "description": "N/A", + "description": "Logs in a check suite were deleted.", "docs_reference_links": "N/A" }, { "action": "codespaces.allow_permissions", - "description": "N/A", + "description": "A codespace using custom permissions from its devcontainer.json file was launched.", "docs_reference_links": "N/A" }, { "action": "codespaces.attempted_to_create_from_prebuild", - "description": "N/A", + "description": "An attempt to create a codespace from a prebuild was made.", "docs_reference_links": "N/A" }, { @@ -101,18 +101,18 @@ }, { "action": "codespaces.connect", - "description": "N/A", + "description": "A codespace was started.", "docs_reference_links": "N/A" }, { "action": "codespaces.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A codespace was created", + "docs_reference_links": "/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository" }, { "action": "codespaces.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user deleted a codespace.", + "docs_reference_links": "/codespaces/developing-in-codespaces/deleting-a-codespace" }, { "action": "codespaces.export_environment", @@ -146,16 +146,51 @@ }, { "action": "codespaces.trusted_repositories_access_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you change your personal account's access and security setting for Codespaces.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "commit_comment.destroy", - "description": "N/A", + "description": "A commit comment was deleted.", "docs_reference_links": "N/A" }, { "action": "commit_comment.update", + "description": "A commit comment was updated.", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_org_settings_changed", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_created", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_refreshed", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_reused", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_unassigned", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_cancelled_by_staff", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_management_changed", "description": "N/A", "docs_reference_links": "N/A" }, @@ -176,67 +211,67 @@ }, { "action": "dependabot_alerts.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_alerts_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_repository_access.repositories_updated", - "description": "N/A", + "description": "The repositories that Dependabot can access were updated.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot security updates were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": " Dependabot security updates were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates_new_repos.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all new repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph_new_repos.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all new repositories.", "docs_reference_links": "N/A" }, { @@ -256,38 +291,38 @@ }, { "action": "discussion_post.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "discussion_post_reply.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post_reply.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "enterprise_installation.create", - "description": "N/A", + "description": "The GitHub App associated with an GitHub Connect enterprise connection was created.", "docs_reference_links": "N/A" }, { "action": "enterprise_installation.destroy", - "description": "N/A", + "description": "The GitHub App associated with an GitHub Connect enterprise connection was deleted.", "docs_reference_links": "N/A" }, { "action": "environment.add_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was created via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.create", @@ -296,8 +331,8 @@ }, { "action": "environment.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.create_actions_variable", @@ -306,13 +341,13 @@ }, { "action": "environment.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An environment was deleted.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deleting-an-environment" }, { "action": "environment.remove_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.remove_actions_variable", @@ -321,13 +356,13 @@ }, { "action": "environment.remove_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was deleted via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.update_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.update_actions_variable", @@ -336,22 +371,22 @@ }, { "action": "environment.update_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was updated via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "git.clone", - "description": "N/A", + "description": "A repository was cloned.", "docs_reference_links": "N/A" }, { "action": "git.fetch", - "description": "N/A", + "description": "Changes were fetched from a repository.", "docs_reference_links": "N/A" }, { "action": "git.push", - "description": "N/A", + "description": "Changes were pushed to a repository.", "docs_reference_links": "N/A" }, { @@ -371,37 +406,37 @@ }, { "action": "hook.active_changed", - "description": "N/A", + "description": "A hook's active status was updated.", "docs_reference_links": "N/A" }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { @@ -411,243 +446,243 @@ }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.remove_client_secret", - "description": "N/A", + "description": "A client secret for an integration was removed.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_all_tokens", - "description": "N/A", + "description": "All user tokens for an integration were requested to be revoked.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_tokens", - "description": "N/A", + "description": "Token(s) for an integration were revoked.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.suspend", - "description": "N/A", + "description": "An integration was suspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.unsuspend", - "description": "N/A", + "description": "An integration was unsuspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "integration_installation_request.close", - "description": "N/A", + "description": "A request to install an integration was either approved or denied by an owner, or canceled by the member who opened the request.", "docs_reference_links": "N/A" }, { "action": "integration_installation_request.create", - "description": "N/A", + "description": "An member requested that an owner install an integration.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable", - "description": "N/A", + "description": "An IP allow list was disabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was disabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable", - "description": "N/A", + "description": "An IP allow list was enabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was enabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.create", - "description": "N/A", + "description": "An IP address was added to an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.destroy", - "description": "N/A", + "description": "An IP address was deleted from an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.update", - "description": "N/A", + "description": "An IP address or its description was changed.", "docs_reference_links": "N/A" }, { "action": "issue.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was deleted from the repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/deleting-an-issue" }, { "action": "issue.pinned", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was pinned to a repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository" }, { "action": "issue.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was transferred to another repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository" }, { "action": "issue.unpinned", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An issue was unpinned from a repository.", + "docs_reference_links": "/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository" }, { "action": "issues.deletes_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete issues was disabled Members cannot delete issues in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues" }, { "action": "issues.deletes_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete issues was enabled Members can delete issues in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues" }, { "action": "issues.deletes_policy_cleared", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the policy setting for allowing members to delete issues in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues" }, { "action": "issue_comment.destroy", - "description": "N/A", + "description": "A comment on an issue was deleted from the repository.", "docs_reference_links": "N/A" }, { "action": "issue_comment.update", - "description": "N/A", + "description": "A comment on an issue (other than the initial one) changed.", "docs_reference_links": "N/A" }, { "action": "marketplace_agreement_signature.create", - "description": "N/A", + "description": "The GitHub Marketplace Developer Agreement was signed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.approve", - "description": "N/A", + "description": "A listing was approved for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.change_category", - "description": "N/A", + "description": "A category for a listing for an app in GitHub Marketplace was changed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.create", - "description": "N/A", + "description": "A listing for an app in GitHub Marketplace was created.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.delist", - "description": "N/A", + "description": "A listing was removed from GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.redraft", - "description": "N/A", + "description": "A listing was sent back to draft state.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.reject", - "description": "N/A", + "description": "A listing was not accepted for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "members_can_create_pages.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish GitHub Pages sites was disabled.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_pages.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish GitHub Pages sites was enabled.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_public_pages.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish public GitHub Pages was disabled Members cannot publish public GitHub Pages in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_create_public_pages.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for members to publish public GitHub Pages was enabled Members can publish public GitHub Pages in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization" }, { "action": "members_can_delete_repos.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the policy setting for deleting or transferring repositories in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer" }, { "action": "members_can_delete_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete repositories was disabled Members cannot delete or transfer repositories in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer" }, { "action": "members_can_delete_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to delete repositories was enabled Members can delete or transfer repositories in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer" }, { "action": "members_can_view_dependency_insights.clear", - "description": "N/A", + "description": "An enterprise owner cleared the policy setting for viewing dependency insights in any organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "members_can_view_dependency_insights.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to view dependency insights was disabled. Members cannot view dependency insights in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise" }, { "action": "members_can_view_dependency_insights.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The ability for enterprise members to view dependency insights was enabled. Members can view dependency insights in any organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise" }, { "action": "merge_queue.pull_request_dequeued", @@ -686,72 +721,72 @@ }, { "action": "migration.create", - "description": "N/A", + "description": "A migration file was created for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance.", "docs_reference_links": "N/A" }, { "action": "migration.destroy_file", - "description": "N/A", + "description": "A migration file for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance was deleted.", "docs_reference_links": "N/A" }, { "action": "migration.download", - "description": "N/A", + "description": "A migration file for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance was downloaded.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.generate_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was generated.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.remove_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_all_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "All user tokens for an OAuth application were requested to be revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "org.accept_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation sent to an organization to join an enterprise was accepted.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.add_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was added to an organization.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { @@ -766,38 +801,38 @@ }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_policy_selected_member_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner prevented GitHub Advanced Security features from being enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.advanced_security_policy_selected_member_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner allowed GitHub Advanced Security features to be enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.audit_log_export", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An export of the organization audit log was created. If the export included a query, the log will list the query used and the number of audit log entries matching that query.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#exporting-the-audit-log" }, { "action": "org.audit_log_git_event_export", @@ -811,17 +846,17 @@ }, { "action": "org.block_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner blocked a user from accessing the organization's repositories.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization" }, { "action": "org.cancel_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was revoked", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.cancel_invitation", - "description": "N/A", + "description": "An invitation sent to a user to join an organization was revoked.", "docs_reference_links": "N/A" }, { @@ -831,12 +866,12 @@ }, { "action": "org.codeql_disabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization disables code scanning for repositories that use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.codeql_enabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization enables code scanning for repositories that are eligible to use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { @@ -851,13 +886,13 @@ }, { "action": "org.codespaces_trusted_repo_access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Codespaces was granted trusted repository access to all other repositories in an organization.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "org.codespaces_trusted_repo_access_revoked", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Codespaces trusted repository access to all other repositories in an organization was revoked.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" }, { "action": "org.codespaces_user_access_allowed", @@ -871,33 +906,33 @@ }, { "action": "org.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.configure_self_hosted_jit_runner", @@ -906,18 +941,18 @@ }, { "action": "org.confirm_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was confirmed.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization was created.", + "docs_reference_links": "/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch" }, { "action": "org.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions secret was created for an organization.", + "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization" }, { "action": "org.create_actions_variable", @@ -926,103 +961,103 @@ }, { "action": "org.create_integration_secret", - "description": "N/A", + "description": "An integration secret was created for an organization.", "docs_reference_links": "N/A" }, { "action": "org.disable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation was limited to owners.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.disable_oauth_app_restrictions", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Third-party application access restrictions for an organization were disabled.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization" }, { "action": "org.disable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner limited discussion creation to users with at least triage permission in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.disable_saml", - "description": "N/A", + "description": "SAML single sign-on was disabled for an organization.", "docs_reference_links": "N/A" }, { "action": "org.disable_two_factor_requirement", - "description": "N/A", + "description": "A two-factor authentication requirement was disabled for the organization.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_disabled", - "description": "N/A", + "description": "An organization owner disabled the display of a commenter's full name in an organization. Members cannot see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_enabled", - "description": "N/A", + "description": "An organization owner enabled the display of a commenter's full name in an organization. Members can see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.enable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation by members was allowed.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.enable_oauth_app_restrictions", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Third-party application access restrictions for an organization were enabled.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization" }, { "action": "org.enable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner allowed users with read access to create discussions in an organization", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.enable_saml", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "SAML single sign-on was enabled for the organization.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization" }, { "action": "org.enable_two_factor_requirement", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication is now required for the organization.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.integration_manager_added", - "description": "N/A", + "description": "An organization owner granted a member access to manage all GitHub Apps owned by an organization.", "docs_reference_links": "N/A" }, { "action": "org.integration_manager_removed", - "description": "N/A", + "description": "An organization owner removed access to manage all GitHub Apps owned by an organization from an organization member.", "docs_reference_links": "N/A" }, { "action": "org.invite_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new user was invited to join an organization.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization" }, { "action": "org.invite_to_business", - "description": "N/A", + "description": "An organization was invited to join an enterprise.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.disable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was disabled. Only enterprise owners can update protected branches.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.enable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was enabled. Members of an organization can update protected branches.", "docs_reference_links": "N/A" }, { "action": "org.oauth_app_access_approved", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Access to an organization was granted for an OAuth App.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/approving-oauth-apps-for-your-organization" }, { "action": "org.oauth_app_access_blocked", @@ -1031,12 +1066,12 @@ }, { "action": "org.oauth_app_access_denied", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Access was disabled for an OAuth App that was previously approved.", + "docs_reference_links": "/organizations/managing-oauth-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization" }, { "action": "org.oauth_app_access_requested", - "description": "N/A", + "description": "An organization member requested that an owner grant an OAuth App access to an organization.", "docs_reference_links": "N/A" }, { @@ -1051,12 +1086,12 @@ }, { "action": "org.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization" }, { "action": "org.remove_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was removed.", "docs_reference_links": "N/A" }, { @@ -1066,22 +1101,22 @@ }, { "action": "org.remove_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was removed from an organization, either manually or due to a two-factor authentication requirement.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization, /organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.remove_integration_secret", - "description": "N/A", + "description": "An integration secret was removed from an organization.", "docs_reference_links": "N/A" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { "action": "org.remove_outside_collaborator", - "description": "N/A", + "description": "An outside collaborator was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { @@ -1091,107 +1126,107 @@ }, { "action": "org.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization" }, { "action": "org.rename", - "description": "N/A", + "description": "An organization was renamed.", "docs_reference_links": "N/A" }, { "action": "org.required_workflow_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a required workflow is created.", + "docs_reference_links": "/actions/using-workflows/required-workflows" }, { "action": "org.required_workflow_delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a required workflow is deleted.", + "docs_reference_links": "/actions/using-workflows/required-workflows" }, { "action": "org.required_workflow_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a required workflow is updated.", + "docs_reference_links": "/actions/using-workflows/required-workflows" }, { "action": "org.restore_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was restored.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization" }, { "action": "org.runner_group_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was created.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization" }, { "action": "org.runner_group_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group" }, { "action": "org.runner_group_renamed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was renamed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "org.runner_group_runners_added", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was added to a group.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group" }, { "action": "org.runner_group_runners_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A runner group's list of members was updated.", + "docs_reference_links": "/rest/actions#set-self-hosted-runners-in-a-group-for-an-organization" }, { "action": "org.runner_group_runner_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The REST API was used to remove a self-hosted runner from a group.", + "docs_reference_links": "/rest/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization" }, { "action": "org.runner_group_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The configuration of a self-hosted runner group was changed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "org.runner_group_visiblity_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a self-hosted runner group was updated via the REST API.", + "docs_reference_links": "/rest/actions#update-a-self-hosted-runner-group-for-an-organization" }, { "action": "org.secret_scanning_custom_pattern_push_protection_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_custom_pattern_push_protection_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was updated for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "org.secret_scanning_push_protection_enable", - "description": "N/A", + "description": "Push protection for secret scanning was enabled.", "docs_reference_links": "N/A" }, { @@ -1206,13 +1241,13 @@ }, { "action": "org.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "org.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#requiring-approval-for-workflows-from-public-forks" }, { "action": "org.set_actions_private_fork_pr_approvals_policy", @@ -1221,8 +1256,8 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.set_custom_invitation_rate_limit", @@ -1236,8 +1271,8 @@ }, { "action": "org.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy for workflows on private repository forks was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#enabling-workflows-for-private-repository-forks" }, { "action": "org.set_workflow_permission_can_approve_pr", @@ -1246,8 +1281,8 @@ }, { "action": "org.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization was transferred between enterprise accounts.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#transferring-an-organization-between-enterprise-accounts" }, { "action": "org.transfer_outgoing", @@ -1256,12 +1291,12 @@ }, { "action": "org.unblock_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was unblocked from an organization.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization" }, { "action": "org.update_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was updated.", "docs_reference_links": "N/A" }, { @@ -1276,78 +1311,78 @@ }, { "action": "org.update_default_repository_permission", - "description": "N/A", + "description": "The default repository permission level for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_integration_secret", - "description": "N/A", + "description": "An integration secret was updated for an organization.", "docs_reference_links": "N/A" }, { "action": "org.update_member", - "description": "N/A", + "description": "A person's role was changed from owner to member or member to owner.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "org.update_new_repository_default_branch_setting", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The name of the default branch was changed for new repositories in the organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization" }, { "action": "org.update_saml_provider_settings", - "description": "N/A", + "description": "An organization's SAML provider settings were updated.", "docs_reference_links": "N/A" }, { "action": "org.update_terms_of_service", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization changed between the Standard Terms of Service and the GitHub Customer Agreement.", + "docs_reference_links": "/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement" }, { "action": "organization_default_label.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A default label was created for repositories in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#creating-a-default-label" }, { "action": "organization_default_label.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A default label was deleted for repositories in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#deleting-a-default-label" }, { "action": "organization_default_label.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A default label was edited for repositories in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#editing-a-default-label" }, { "action": "organization_domain.approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was approved for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#approving-a-domain-for-your-organization" }, { "action": "organization_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was added to an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" }, { "action": "organization_domain.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was removed from an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#removing-an-approved-or-verified-domain" }, { "action": "organization_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was verified for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" }, { "action": "organization_moderators.add_team", @@ -1371,18 +1406,18 @@ }, { "action": "organization_projects_change.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the policy setting for organization-wide project boards in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards" }, { "action": "organization_projects_change.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Organization projects were disabled for all organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards" }, { "action": "organization_projects_change.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Organization projects were enabled for all organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards" }, { "action": "organization_role.create", @@ -1396,128 +1431,138 @@ }, { "action": "org_credential_authorization.grant", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member authorized credentials for use with SAML single sign-on.", + "docs_reference_links": "/authentication/authenticating-with-saml-single-sign-on" }, { "action": "org_credential_authorization.revoke", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An owner revoked authorized credentials.", + "docs_reference_links": "/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" }, { "action": "org_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "org_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "packages.package_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An entire package was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_published", - "description": "N/A", + "description": "A package was published or republished to an organization.", "docs_reference_links": "N/A" }, { "action": "packages.package_version_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A specific package version was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_version_published", - "description": "N/A", + "description": "A specific package version was published or republished to a package.", "docs_reference_links": "N/A" }, { "action": "pages_protected_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was created for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was deleted from an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages domain was verified for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "payment_method.create", - "description": "N/A", + "description": "A new payment method was added, such as a new credit card or PayPal account.", "docs_reference_links": "N/A" }, { "action": "payment_method.remove", - "description": "N/A", + "description": "A payment method was removed.", "docs_reference_links": "N/A" }, { "action": "payment_method.update", - "description": "N/A", + "description": "An existing payment method was updated.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was granted access to resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.access_revoked", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was revoked. The token can still read public organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/reviewing-and-revoking-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.request_cancelled", - "description": "N/A", + "description": "A pending request for a fine-grained personal access token to access organization resources was canceled.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.request_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a fine-grained personal access token was created to access organization resources and the organization requires approval before the token can access organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.request_denied", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A request for a fine-grained personal access token to access organization resources was denied.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "prebuild_configuration.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Codespaces prebuild configuration for a repository was created.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "prebuild_configuration.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Codespaces prebuild configuration for a repository was deleted.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "prebuild_configuration.run_triggered", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user initiated a run of a GitHub Codespaces prebuild configuration for a repository branch.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "prebuild_configuration.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Codespaces prebuild configuration for a repository was edited.", + "docs_reference_links": "/codespaces/prebuilding-your-codespaces/about-github-codespaces-prebuilds" }, { "action": "premium_runner.create", @@ -1536,17 +1581,17 @@ }, { "action": "private_repository_forking.clear", - "description": "N/A", + "description": "An enterprise owner cleared the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise.", "docs_reference_links": "N/A" }, { "action": "private_repository_forking.disable", - "description": "N/A", + "description": "An enterprise owner disabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are never allowed to be forked.", "docs_reference_links": "N/A" }, { "action": "private_repository_forking.enable", - "description": "N/A", + "description": "An enterprise owner enabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are always allowed to be forked.", "docs_reference_links": "N/A" }, { @@ -1571,122 +1616,132 @@ }, { "action": "profile_picture.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A profile picture was updated.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile" }, { "action": "project.access", - "description": "N/A", + "description": "A project board visibility was changed.", "docs_reference_links": "N/A" }, { "action": "project.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was closed.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/closing-a-project-board" }, { "action": "project.create", - "description": "N/A", + "description": "A project board was created.", "docs_reference_links": "N/A" }, { "action": "project.delete", - "description": "N/A", + "description": "A project board was deleted.", "docs_reference_links": "N/A" }, { "action": "project.link", - "description": "N/A", + "description": "A repository was linked to a project board.", "docs_reference_links": "N/A" }, { "action": "project.open", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was reopened.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/reopening-a-closed-project-board" }, { "action": "project.rename", - "description": "N/A", + "description": "A project board was renamed.", "docs_reference_links": "N/A" }, { "action": "project.unlink", - "description": "N/A", + "description": "A repository was unlinked from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_org_permission", - "description": "N/A", + "description": "The project's base-level permission for all organization members was changed or removed.", "docs_reference_links": "N/A" }, { "action": "project.update_team_permission", - "description": "N/A", + "description": "A team's project board permission level was changed or when a team was added or removed from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_user_permission", - "description": "N/A", + "description": "A user was added to or removed from a project board or had their permission level changed.", "docs_reference_links": "N/A" }, { "action": "project_field.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields" }, { "action": "project_field.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields/deleting-custom-fields" }, { "action": "project_view.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "project_view.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "protected_branch.authorized_users_teams", "description": "N/A", "docs_reference_links": "N/A" }, + { + "action": "protected_branch.branch_allowances", + "description": "A protected branch allowance was given to a specific user, team or integration.", + "docs_reference_links": "N/A" + }, { "action": "protected_branch.create", - "description": "N/A", + "description": "Branch protection was enabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.destroy", - "description": "N/A", + "description": "Branch protection was disabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismissal_restricted_users_teams", - "description": "N/A", + "description": "Enforcement of restricting users and/or teams who can dismiss reviews was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismiss_stale_reviews", - "description": "N/A", + "description": "Enforcement of dismissing stale pull requests was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.policy_override", - "description": "N/A", + "description": "A branch protection requirement was overridden by a repository administrator.", "docs_reference_links": "N/A" }, { "action": "protected_branch.rejected_ref_update", - "description": "N/A", + "description": "A branch update attempt was rejected.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_admin_enforced", - "description": "N/A", + "description": "Branch protection was enforced for repository administrators.", + "docs_reference_links": "N/A" + }, + { + "action": "protected_branch.update_allow_force_pushes_enforcement_level", + "description": "Force pushes were enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -1711,27 +1766,27 @@ }, { "action": "protected_branch.update_name", - "description": "N/A", + "description": "A branch name pattern was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_pull_request_reviews_enforcement_level", - "description": "N/A", + "description": "Enforcement of required pull request reviews was updated for a branch. Can be 0 (deactivated), 1 (non-admins), or 2 (everyone).", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_approving_review_count", - "description": "N/A", + "description": "Enforcement of the required number of approvals before merging was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_status_checks_enforcement_level", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_require_code_owner_review", - "description": "N/A", + "description": "Enforcement of required code owner review was updated for a branch.", "docs_reference_links": "N/A" }, { @@ -1741,88 +1796,88 @@ }, { "action": "protected_branch.update_signature_requirement_enforcement_level", - "description": "N/A", + "description": "Enforcement of required commit signing was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_strict_required_status_checks_policy", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "pull_request.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was closed without being merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request" }, { "action": "pull_request.converted_to_draft", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was converted to a draft.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft" }, { "action": "pull_request.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was created.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request" }, { "action": "pull_request.create_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review was requested on a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.indirect_merge", - "description": "N/A", + "description": "A pull request was considered merged because the pull request's commits were merged into the target branch.", "docs_reference_links": "N/A" }, { "action": "pull_request.in_progress", - "description": "N/A", + "description": "A pull request was marked as in progress.", "docs_reference_links": "N/A" }, { "action": "pull_request.merge", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request" }, { "action": "pull_request.ready_for_review", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was marked as ready for review.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review" }, { "action": "pull_request.rebase", @@ -1831,82 +1886,82 @@ }, { "action": "pull_request.remove_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review request was removed from a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.reopen", - "description": "N/A", + "description": "A pull request was reopened after previously being closed.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.delete", - "description": "N/A", + "description": "A review on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.dismiss", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was dismissed.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review" }, { "action": "pull_request_review.submit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was submitted.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review" }, { "action": "pull_request_review_comment.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review comment was added to a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request_review_comment.delete", - "description": "N/A", + "description": "A review comment on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review_comment.update", - "description": "N/A", + "description": "A review comment on a pull request was changed.", "docs_reference_links": "N/A" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.actions_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Actions was enabled for a repository. Can be viewed using the UI, This event is not included when you access the audit log using the REST API.", + "docs_reference_links": "organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#using-the-audit-log-api" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { @@ -1931,43 +1986,43 @@ }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -1976,13 +2031,13 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions secret was created for a repository.", + "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository" }, { "action": "repo.create_actions_variable", @@ -1991,67 +2046,67 @@ }, { "action": "repo.create_integration_secret", - "description": "N/A", + "description": "An integration secret was created for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.download_zip", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A source code archive of a repository was downloaded as a ZIP file.", + "docs_reference_links": "/repositories/working-with-files/using-files/downloading-source-code-archives" }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was deleted for a repository.", "docs_reference_links": "N/A" }, { @@ -2061,28 +2116,28 @@ }, { "action": "repo.remove_integration_secret", - "description": "N/A", + "description": "An integration secret was deleted for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.rename_branch", @@ -2096,13 +2151,13 @@ }, { "action": "repo.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "repo.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-required-approval-for-workflows-from-public-forks" }, { "action": "repo.set_actions_private_fork_pr_approvals_policy", @@ -2111,8 +2166,8 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.set_default_workflow_permissions", @@ -2121,8 +2176,8 @@ }, { "action": "repo.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when the policy for workflows on private repository forks is changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#enabling-workflows-for-private-repository-forks" }, { "action": "repo.set_workflow_permission_can_approve_pr", @@ -2131,42 +2186,42 @@ }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was updated.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { @@ -2176,57 +2231,57 @@ }, { "action": "repo.update_default_branch", - "description": "N/A", + "description": "The default branch for a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_integration_secret", - "description": "N/A", + "description": "An integration secret was updated for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Someone closed a security advisory.", + "docs_reference_links": "/code-security/security-advisories/working-with-repository-security-advisories/about-repository-security-advisories" }, { "action": "repository_advisory.cve_request", - "description": "N/A", + "description": "Someone requested a CVE (Common Vulnerabilities and Exposures) number from GitHub for a draft security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.github_broadcast", - "description": "N/A", + "description": "GitHub made a security advisory public in the GitHub Advisory Database.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.github_withdraw", - "description": "N/A", + "description": "GitHub withdrew a security advisory that was published in error.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.open", - "description": "N/A", + "description": "Someone opened a draft security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.publish", - "description": "N/A", + "description": "Someone published a security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.reopen", - "description": "N/A", + "description": "Someone reopened as draft security advisory.", "docs_reference_links": "N/A" }, { "action": "repository_advisory.update", - "description": "N/A", + "description": "Someone edited a draft or published security advisory.", "docs_reference_links": "N/A" }, { @@ -2241,67 +2296,67 @@ }, { "action": "repository_content_analysis.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Data use settings were disabled for a private repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#enabling-or-disabling-security-and-analysis-features-for-private-repositories" }, { "action": "repository_content_analysis.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Data use settings were enabled for a private repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#enabling-or-disabling-security-and-analysis-features-for-private-repositories" }, { "action": "repository_dependency_graph.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for a private repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-fea tures-for-your-repository/managing-security-and-analysis-settings-for-your-repository#enabling-or-disabling-security-and-analysis-features-for-private-repositories" }, { "action": "repository_dependency_graph.enable", - "description": "N/A", + "description": "The dependency graph was enabled for a private repository.", "docs_reference_links": "N/A" }, { "action": "repository_image.create", - "description": "N/A", + "description": "An image to represent a repository was uploaded.", "docs_reference_links": "N/A" }, { "action": "repository_image.destroy", - "description": "N/A", + "description": "An image to represent a repository was deleted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { "action": "repository_projects_change.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The repository projects policy was removed for an organization, or all organizations in the enterprise Organization owners can now control their repository projects settings.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-projects-in-your-enterprise" }, { "action": "repository_projects_change.disable", - "description": "N/A", + "description": "Repository projects were disabled for a repository, all repositories in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "repository_projects_change.enable", - "description": "N/A", + "description": "Repository projects were enabled for a repository, all repositories in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { @@ -2321,87 +2376,97 @@ }, { "action": "repository_secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "repository_secret_scanning.enable", - "description": "N/A", + "description": "Secret scanning was enabled for a repository.", "docs_reference_links": "N/A" }, + { + "action": "repository_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, + { + "action": "repository_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, { "action": "repository_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_push_protection.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "repository_secret_scanning_push_protection.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was enabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "repository_visibility_change.clear", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The repository visibility change setting was cleared for an organization or enterprise.", + "docs_reference_links": "/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-changes-to-repository-visibility" }, { "action": "repository_visibility_change.disable", - "description": "N/A", + "description": "The ability for enterprise members to update a repository's visibility was disabled. Members are unable to change repository visibilities in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "repository_visibility_change.enable", - "description": "N/A", + "description": "The ability for enterprise members to update a repository's visibility was enabled. Members are able to change repository visibilities in an organization, or all organizations in an enterprise.", "docs_reference_links": "N/A" }, { "action": "repository_vulnerability_alert.auto_dismiss", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a Dependabot alert is automatically dismissed due to its metadata matching an enabled Dependabot alert rule.", + "docs_reference_links": "/code-security/dependabot/dependabot-alerts/using-alert-rules-to-prioritize-dependabot-alerts" }, { "action": "repository_vulnerability_alert.auto_reopen", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a previously auto-dismissed Dependabot alert is reopened because its metadata no longer matches an enabled Dependabot alert rule.", + "docs_reference_links": "/code-security/dependabot/dependabot-alerts/using-alert-rules-to-prioritize-dependabot-alerts" }, { "action": "repository_vulnerability_alert.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub created a Dependabot alert for a repository that uses an insecure dependency.", + "docs_reference_links": "/code-security/dependabot/dependabot-alerts/about-dependabot-alerts" }, { "action": "repository_vulnerability_alert.dismiss", - "description": "N/A", + "description": "A Dependabot alert about a vulnerable dependency was dismissed.", "docs_reference_links": "N/A" }, { @@ -2416,22 +2481,22 @@ }, { "action": "repository_vulnerability_alert.resolve", - "description": "N/A", + "description": "Changes were pushed to update and resolve a Dependabot alert in a project dependency.", "docs_reference_links": "N/A" }, { "action": "repository_vulnerability_alerts.authorized_users_teams", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The list of people or teams authorized to receive Dependabot alerts for the repository was updated.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts" }, { "action": "repository_vulnerability_alerts.disable", - "description": "N/A", + "description": "Dependabot alerts was disabled.", "docs_reference_links": "N/A" }, { "action": "repository_vulnerability_alerts.enable", - "description": "N/A", + "description": "Dependabot alerts was enabled.", "docs_reference_links": "N/A" }, { @@ -2446,62 +2511,62 @@ }, { "action": "required_status_check.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A status check was marked as required for a protected branch.", + "docs_reference_links": "/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-status-checks-before-merging" }, { "action": "required_status_check.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A status check was no longer marked as required for a protected branch.", + "docs_reference_links": "/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-status-checks-before-merging" }, { "action": "restrict_notification_delivery.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were disabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "restrict_notification_delivery.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were enabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "role.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new custom repository role was created.", + "docs_reference_links": "/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization" }, { "action": "role.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom repository role was deleted.", + "docs_reference_links": "/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization" }, { "action": "role.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom repository role was edited.", + "docs_reference_links": "/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization" }, { "action": "secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_alert.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub detected a secret and created a secret scanning alert.", + "docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning" }, { "action": "secret_scanning_alert.reopen", - "description": "N/A", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A" }, { "action": "secret_scanning_alert.resolve", - "description": "N/A", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A" }, { @@ -2511,237 +2576,237 @@ }, { "action": "secret_scanning_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_push_protection.bypass", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a user bypasses the push protection on a secret detected by secret scanning.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#bypassing-push-protection-for-a-secret" }, { "action": "sponsors.agreement_sign", - "description": "N/A", + "description": "A GitHub Sponsors agreement was signed on behalf of an organization.", "docs_reference_links": "N/A" }, { "action": "sponsors.custom_amount_settings_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Custom amounts for GitHub Sponsors were enabled or disabled, or the suggested custom amount was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.fiscal_host_change", - "description": "N/A", + "description": "The fiscal host for a GitHub Sponsors listing was updated.", "docs_reference_links": "N/A" }, { "action": "sponsors.repo_funding_links_file_action", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The FUNDING file in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository" }, { "action": "sponsors.sponsored_developer_approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was approved.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was created.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_disable", - "description": "N/A", + "description": "A GitHub Sponsors account was disabled.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_profile_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The profile for GitHub Sponsors account was edited.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/editing-your-profile-details-for-github-sponsors" }, { "action": "sponsors.sponsored_developer_redraft", - "description": "N/A", + "description": "A GitHub Sponsors account was returned to draft state from approved state.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_request_approval", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An application for GitHub Sponsors was submitted for approval.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_tier_description_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The description for a sponsorship tier was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.sponsor_sponsorship_cancel", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was canceled.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was created, by sponsoring an account.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_payment_complete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "After you sponsor an account and a payment has been processed, the sponsorship payment was marked as complete.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_preference_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The option to receive email updates from a sponsored account was changed.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_tier_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was upgraded or downgraded.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/upgrading-a-sponsorship, /billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.update_tier_repository", - "description": "N/A", + "description": "A GitHub Sponsors tier changed access for a repository.", "docs_reference_links": "N/A" }, { "action": "sponsors.update_tier_welcome_message", - "description": "N/A", + "description": "The welcome message for a GitHub Sponsors tier for an organization was updated.", "docs_reference_links": "N/A" }, { "action": "sponsors.withdraw_agreement_signature", - "description": "N/A", + "description": "A signature was withdrawn from a GitHub Sponsors agreement that applies to an organization.", "docs_reference_links": "N/A" }, { "action": "ssh_certificate_authority.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was created.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_authority.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was deleted.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was disabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was enabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "staff.set_domain_token_expiration", - "description": "N/A", + "description": "The verification code expiry time for an organization or enterprise domain was set.", "docs_reference_links": "N/A" }, { "action": "staff.unverify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was unverified.", "docs_reference_links": "N/A" }, { "action": "staff.verify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was verified.", "docs_reference_links": "N/A" }, { "action": "team.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member of an organization was added to a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/adding-organization-members-to-a-team" }, { "action": "team.add_repository", - "description": "N/A", + "description": "A team was given access and permissions to a repository.", "docs_reference_links": "N/A" }, { "action": "team.change_parent_team", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A child team was created or a child team's parent was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy" }, { "action": "team.change_privacy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A team's privacy level was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/changing-team-visibility" }, { "action": "team.create", - "description": "N/A", + "description": "A new team is created.", "docs_reference_links": "N/A" }, { "action": "team.demote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was demoted from a team maintainer to a team member.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member" }, { "action": "team.destroy", - "description": "N/A", + "description": "A team was deleted.", "docs_reference_links": "N/A" }, { "action": "team.promote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was promoted from a team member to a team maintainer.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member#promoting-an-organization-member-to-team-maintainer" }, { "action": "team.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was removed from a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/removing-organization-members-from-a-team" }, { "action": "team.remove_repository", - "description": "N/A", + "description": "A repository was removed from a team's control.", "docs_reference_links": "N/A" }, { "action": "team.rename", - "description": "N/A", + "description": "A team's name was changed.", "docs_reference_links": "N/A" }, { "action": "team.update_repository_permission", - "description": "N/A", + "description": "A team's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "team_discussions.clear", - "description": "N/A", + "description": "An organization owner cleared the setting to allow team discussions for an organization or enterprise.", "docs_reference_links": "N/A" }, { "action": "team_discussions.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team discussions were disabled for an organization.", + "docs_reference_links": "/organizations/organizing-members-into-teams/disabling-team-discussions-for-your-organization" }, { "action": "team_discussions.enable", - "description": "N/A", + "description": "Team discussions were enabled for an organization.", "docs_reference_links": "N/A" }, { "action": "team_sync_tenant.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was disabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "team_sync_tenant.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was enabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "team_sync_tenant.update_okta_credentials", - "description": "N/A", + "description": "The Okta credentials for team synchronization with a tenant were changed.", "docs_reference_links": "N/A" }, { @@ -2771,8 +2836,8 @@ }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -2781,8 +2846,8 @@ }, { "action": "workflows.cancel_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was cancelled.", + "docs_reference_links": "/actions/managing-workflow-runs/canceling-a-workflow" }, { "action": "workflows.comment_workflow_job", @@ -2791,27 +2856,27 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.rerun_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was re-run.", + "docs_reference_links": "/actions/managing-workflow-runs/re-running-workflows-and-jobs" } ] \ No newline at end of file diff --git a/src/audit-logs/data/ghec/user.json b/src/audit-logs/data/ghec/user.json index 6a35f06df1..c6407ebae9 100644 --- a/src/audit-logs/data/ghec/user.json +++ b/src/audit-logs/data/ghec/user.json @@ -6,8 +6,8 @@ }, { "action": "account.plan_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The account's plan changed.", + "docs_reference_links": "/billing/managing-the-plan-for-your-github-account/about-billing-for-plans" }, { "action": "actions_cache.delete", @@ -16,18 +16,18 @@ }, { "action": "artifact.destroy", - "description": "N/A", + "description": "A workflow run artifact was manually deleted.", "docs_reference_links": "N/A" }, { "action": "billing.change_billing_type", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The way the account pays for GitHub was changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method" }, { "action": "billing.change_email", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The billing email address changed.", + "docs_reference_links": "/billing/managing-your-github-billing-settings/setting-your-billing-email" }, { "action": "billing.lock", @@ -46,8 +46,8 @@ }, { "action": "business.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise" }, { "action": "business.set_actions_private_fork_pr_approvals_policy", @@ -56,8 +56,8 @@ }, { "action": "business.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs was changed for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise" }, { "action": "business.set_default_workflow_permissions", @@ -66,8 +66,8 @@ }, { "action": "business.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy for fork pull requests is changed.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise" }, { "action": "business.set_public_fork_pr_workflows_policy", @@ -81,38 +81,38 @@ }, { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.delete_logs", - "description": "N/A", + "description": "Logs in a check suite were deleted.", "docs_reference_links": "N/A" }, { "action": "codespaces.allow_permissions", - "description": "N/A", + "description": "A codespace using custom permissions from its devcontainer.json file was launched.", "docs_reference_links": "N/A" }, { "action": "codespaces.connect", - "description": "N/A", + "description": "A codespace was started.", "docs_reference_links": "N/A" }, { "action": "codespaces.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A codespace was created", + "docs_reference_links": "/codespaces/developing-in-codespaces/creating-a-codespace-for-a-repository" }, { "action": "codespaces.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user deleted a codespace.", + "docs_reference_links": "/codespaces/developing-in-codespaces/deleting-a-codespace" }, { "action": "codespaces.export_environment", @@ -131,6 +131,31 @@ }, { "action": "codespaces.trusted_repositories_access_update", + "description": "Triggered when you change your personal account's access and security setting for Codespaces.", + "docs_reference_links": "/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces" + }, + { + "action": "copilot.cfb_seat_assignment_created", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_refreshed", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_reused", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_assignment_unassigned", + "description": "N/A", + "docs_reference_links": "N/A" + }, + { + "action": "copilot.cfb_seat_cancelled_by_staff", "description": "N/A", "docs_reference_links": "N/A" }, @@ -151,73 +176,73 @@ }, { "action": "dependabot_alerts.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-for-all-existing-repositories" }, { "action": "dependabot_alerts_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_alerts_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot alerts were enabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#enabling-or-disabling-a-feature-automatically-when-new-repositories-are-added" }, { "action": "dependabot_repository_access.repositories_updated", - "description": "N/A", + "description": "The repositories that Dependabot can access were updated.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Dependabot security updates were disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependabot_security_updates_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": " Dependabot security updates were disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependabot_security_updates_new_repos.enable", - "description": "N/A", + "description": "Dependabot security updates were enabled for all new repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all existing repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all existing repositories.", "docs_reference_links": "N/A" }, { "action": "dependency_graph_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The dependency graph was disabled for all new repositories.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization" }, { "action": "dependency_graph_new_repos.enable", - "description": "N/A", + "description": "The dependency graph was enabled for all new repositories.", "docs_reference_links": "N/A" }, { "action": "environment.add_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was created via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.create", @@ -226,8 +251,8 @@ }, { "action": "environment.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.create_actions_variable", @@ -236,13 +261,13 @@ }, { "action": "environment.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An environment was deleted.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deleting-an-environment" }, { "action": "environment.remove_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.remove_actions_variable", @@ -251,13 +276,13 @@ }, { "action": "environment.remove_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was deleted via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "environment.update_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A secret was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets" }, { "action": "environment.update_actions_variable", @@ -266,8 +291,8 @@ }, { "action": "environment.update_protection_rule", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions deployment protection rule was updated via the API.", + "docs_reference_links": "/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules" }, { "action": "github_hosted_runner.create", @@ -286,37 +311,37 @@ }, { "action": "hook.active_changed", - "description": "N/A", + "description": "A hook's active status was updated.", "docs_reference_links": "N/A" }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { @@ -326,102 +351,102 @@ }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.remove_client_secret", - "description": "N/A", + "description": "A client secret for an integration was removed.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_all_tokens", - "description": "N/A", + "description": "All user tokens for an integration were requested to be revoked.", "docs_reference_links": "N/A" }, { "action": "integration.revoke_tokens", - "description": "N/A", + "description": "Token(s) for an integration were revoked.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.suspend", - "description": "N/A", + "description": "An integration was suspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.unsuspend", - "description": "N/A", + "description": "An integration was unsuspended.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "marketplace_agreement_signature.create", - "description": "N/A", + "description": "The GitHub Marketplace Developer Agreement was signed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.approve", - "description": "N/A", + "description": "A listing was approved for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.change_category", - "description": "N/A", + "description": "A category for a listing for an app in GitHub Marketplace was changed.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.create", - "description": "N/A", + "description": "A listing for an app in GitHub Marketplace was created.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.delist", - "description": "N/A", + "description": "A listing was removed from GitHub Marketplace.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.redraft", - "description": "N/A", + "description": "A listing was sent back to draft state.", "docs_reference_links": "N/A" }, { "action": "marketplace_listing.reject", - "description": "N/A", + "description": "A listing was not accepted for inclusion in GitHub Marketplace.", "docs_reference_links": "N/A" }, { @@ -461,52 +486,52 @@ }, { "action": "migration.create", - "description": "N/A", + "description": "A migration file was created for transferring data from a source location (such as a GitHub.com organization or a GitHub Enterprise Server instance) to a target GitHub Enterprise Server instance.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.generate_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was generated.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.remove_client_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application's secret key was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_all_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "All user tokens for an OAuth application were requested to be revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { @@ -516,33 +541,33 @@ }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { "action": "org.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#requiring-approval-for-workflows-from-public-forks" }, { "action": "org.set_actions_private_fork_pr_approvals_policy", @@ -551,8 +576,8 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.set_default_workflow_permissions", @@ -561,8 +586,8 @@ }, { "action": "org.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy for workflows on private repository forks was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#enabling-workflows-for-private-repository-forks" }, { "action": "org.set_workflow_permission_can_approve_pr", @@ -571,73 +596,73 @@ }, { "action": "org.update_member", - "description": "N/A", + "description": "A person's role was changed from owner to member or member to owner.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "pages_protected_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was created for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages verified domain was deleted from an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "pages_protected_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Pages domain was verified for an organization or enterprise.", + "docs_reference_links": "/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages" }, { "action": "payment_method.create", - "description": "N/A", + "description": "A new payment method was added, such as a new credit card or PayPal account.", "docs_reference_links": "N/A" }, { "action": "payment_method.remove", - "description": "N/A", + "description": "A payment method was removed.", "docs_reference_links": "N/A" }, { "action": "payment_method.update", - "description": "N/A", + "description": "An existing payment method was updated.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was granted access to resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.access_revoked", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A fine-grained personal access token was revoked. The token can still read public organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/reviewing-and-revoking-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.request_cancelled", - "description": "N/A", + "description": "A pending request for a fine-grained personal access token to access organization resources was canceled.", "docs_reference_links": "N/A" }, { "action": "personal_access_token.request_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a fine-grained personal access token was created to access organization resources and the organization requires approval before the token can access organization resources.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "personal_access_token.request_denied", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A request for a fine-grained personal access token to access organization resources was denied.", + "docs_reference_links": "/organizations/managing-programmatic-access-to-your-organization/managing-requests-for-personal-access-tokens-in-your-organization" }, { "action": "premium_runner.create", @@ -676,83 +701,83 @@ }, { "action": "profile_picture.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A profile picture was updated.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile" }, { "action": "project.access", - "description": "N/A", + "description": "A project board visibility was changed.", "docs_reference_links": "N/A" }, { "action": "project.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was closed.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/closing-a-project-board" }, { "action": "project.create", - "description": "N/A", + "description": "A project board was created.", "docs_reference_links": "N/A" }, { "action": "project.delete", - "description": "N/A", + "description": "A project board was deleted.", "docs_reference_links": "N/A" }, { "action": "project.link", - "description": "N/A", + "description": "A repository was linked to a project board.", "docs_reference_links": "N/A" }, { "action": "project.open", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A project board was reopened.", + "docs_reference_links": "/issues/organizing-your-work-with-project-boards/managing-project-boards/reopening-a-closed-project-board" }, { "action": "project.rename", - "description": "N/A", + "description": "A project board was renamed.", "docs_reference_links": "N/A" }, { "action": "project.unlink", - "description": "N/A", + "description": "A repository was unlinked from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_org_permission", - "description": "N/A", + "description": "The project's base-level permission for all organization members was changed or removed.", "docs_reference_links": "N/A" }, { "action": "project.update_team_permission", - "description": "N/A", + "description": "A team's project board permission level was changed or when a team was added or removed from a project board.", "docs_reference_links": "N/A" }, { "action": "project.update_user_permission", - "description": "N/A", + "description": "A user was added to or removed from a project board or had their permission level changed.", "docs_reference_links": "N/A" }, { "action": "project_field.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields" }, { "action": "project_field.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A field was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/understanding-fields/deleting-custom-fields" }, { "action": "project_view.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was created in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "project_view.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A view was deleted in a project board.", + "docs_reference_links": "/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/managing-your-views" }, { "action": "protected_branch.update_merge_queue_enforcement_level", @@ -761,118 +786,118 @@ }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.actions_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Actions was enabled for a repository. Can be viewed using the UI, This event is not included when you access the audit log using the REST API.", + "docs_reference_links": "organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#using-the-audit-log-api" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -881,13 +906,13 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.create_actions_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions secret was created for a repository.", + "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository" }, { "action": "repo.create_actions_variable", @@ -896,62 +921,62 @@ }, { "action": "repo.create_integration_secret", - "description": "N/A", + "description": "An integration secret was created for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was deleted for a repository.", "docs_reference_links": "N/A" }, { @@ -961,28 +986,28 @@ }, { "action": "repo.remove_integration_secret", - "description": "N/A", + "description": "An integration secret was deleted for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.restore", @@ -991,8 +1016,8 @@ }, { "action": "repo.set_actions_fork_pr_approvals_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The setting for requiring approvals for workflows from public forks was changed for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-required-approval-for-workflows-from-public-forks" }, { "action": "repo.set_actions_private_fork_pr_approvals_policy", @@ -1001,8 +1026,8 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.set_default_workflow_permissions", @@ -1011,8 +1036,8 @@ }, { "action": "repo.set_fork_pr_workflows_policy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when the policy for workflows on private repository forks is changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#enabling-workflows-for-private-repository-forks" }, { "action": "repo.set_workflow_permission_can_approve_pr", @@ -1021,47 +1046,47 @@ }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.temporary_access_granted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Temporary access was enabled for a repository.", + "docs_reference_links": "/admin/user-management/managing-repositories-in-your-enterprise/accessing-user-owned-repositories-in-your-enterprise" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_secret", - "description": "N/A", + "description": "A GitHub Actions secret was updated.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { @@ -1071,47 +1096,47 @@ }, { "action": "repo.update_default_branch", - "description": "N/A", + "description": "The default branch for a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_integration_secret", - "description": "N/A", + "description": "An integration secret was updated for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repository_image.create", - "description": "N/A", + "description": "An image to represent a repository was uploaded.", "docs_reference_links": "N/A" }, { "action": "repository_image.destroy", - "description": "N/A", + "description": "An image to represent a repository was deleted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { @@ -1131,103 +1156,103 @@ }, { "action": "sponsors.agreement_sign", - "description": "N/A", + "description": "A GitHub Sponsors agreement was signed on behalf of an organization.", "docs_reference_links": "N/A" }, { "action": "sponsors.custom_amount_settings_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Custom amounts for GitHub Sponsors were enabled or disabled, or the suggested custom amount was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.fiscal_host_change", - "description": "N/A", + "description": "The fiscal host for a GitHub Sponsors listing was updated.", "docs_reference_links": "N/A" }, { "action": "sponsors.repo_funding_links_file_action", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The FUNDING file in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository" }, { "action": "sponsors.sponsored_developer_approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was approved.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Sponsors account was created.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_disable", - "description": "N/A", + "description": "A GitHub Sponsors account was disabled.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_profile_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The profile for GitHub Sponsors account was edited.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/editing-your-profile-details-for-github-sponsors" }, { "action": "sponsors.sponsored_developer_redraft", - "description": "N/A", + "description": "A GitHub Sponsors account was returned to draft state from approved state.", "docs_reference_links": "N/A" }, { "action": "sponsors.sponsored_developer_request_approval", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An application for GitHub Sponsors was submitted for approval.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-personal-account" }, { "action": "sponsors.sponsored_developer_tier_description_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The description for a sponsorship tier was changed.", + "docs_reference_links": "/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers" }, { "action": "sponsors.sponsor_sponsorship_cancel", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was canceled.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was created, by sponsoring an account.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_payment_complete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "After you sponsor an account and a payment has been processed, the sponsorship payment was marked as complete.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor" }, { "action": "sponsors.sponsor_sponsorship_preference_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The option to receive email updates from a sponsored account was changed.", + "docs_reference_links": "/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship" }, { "action": "sponsors.sponsor_sponsorship_tier_change", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A sponsorship was upgraded or downgraded.", + "docs_reference_links": "/billing/managing-billing-for-github-sponsors/upgrading-a-sponsorship, /billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship" }, { "action": "sponsors.update_tier_repository", - "description": "N/A", + "description": "A GitHub Sponsors tier changed access for a repository.", "docs_reference_links": "N/A" }, { "action": "sponsors.update_tier_welcome_message", - "description": "N/A", + "description": "The welcome message for a GitHub Sponsors tier for an organization was updated.", "docs_reference_links": "N/A" }, { "action": "sponsors.withdraw_agreement_signature", - "description": "N/A", + "description": "A signature was withdrawn from a GitHub Sponsors agreement that applies to an organization.", "docs_reference_links": "N/A" }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -1241,22 +1266,22 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" } ] \ No newline at end of file diff --git a/src/audit-logs/data/ghes/enterprise.json b/src/audit-logs/data/ghes/enterprise.json index d80ecc3c60..fda7127e40 100644 --- a/src/audit-logs/data/ghes/enterprise.json +++ b/src/audit-logs/data/ghes/enterprise.json @@ -1,18 +1,18 @@ [ { "action": "business.add_admin", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner was added to an enterprise.", + "docs_reference_links": "/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise" }, { "action": "business.add_organization", - "description": "N/A", + "description": "An organization was added to an enterprise.", "docs_reference_links": "N/A" }, { "action": "business.advanced_security_policy_update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner created, updated, or removed a policy for GitHub Advanced Security.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-code-security-and-analysis-for-your-enterprise" }, { "action": "business.advanced_security_repo_admin_enablement_policy_update", @@ -21,22 +21,22 @@ }, { "action": "business.clear_actions_settings", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner or site administrator cleared GitHub Actions policy settings for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise" }, { "action": "business.clear_default_repository_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared the base repository permission policy setting for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions" }, { "action": "business.clear_members_can_create_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner cleared a restriction on repository creation in organizations in the enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#setting-a-policy-for-repository-creation" }, { "action": "business.create", - "description": "N/A", + "description": "An enterprise was created.", "docs_reference_links": "N/A" }, { @@ -51,7 +51,7 @@ }, { "action": "business.disable_two_factor_requirement", - "description": "N/A", + "description": "The requirement for members to have two-factor authentication enabled to access an enterprise was disabled.", "docs_reference_links": "N/A" }, { @@ -61,37 +61,37 @@ }, { "action": "business.enable_two_factor_requirement", - "description": "N/A", + "description": "The requirement for members to have two-factor authentication enabled to access an enterprise was enabled.", "docs_reference_links": "N/A" }, { "action": "business.members_can_update_protected_branches.clear", - "description": "N/A", + "description": "An enterprise owner unset a policy for whether members of an enterprise can update protected branches on repositories for individual organizations. Organization owners can choose whether to allow updating protected branches settings.", "docs_reference_links": "N/A" }, { "action": "business.members_can_update_protected_branches.disable", - "description": "N/A", + "description": "The ability for enterprise members to update branch protection rules was disabled. Only enterprise owners can update protected branches.", "docs_reference_links": "N/A" }, { "action": "business.members_can_update_protected_branches.enable", - "description": "N/A", + "description": "The ability for enterprise members to update branch protection rules was enabled. Enterprise owners and members can update protected branches.", "docs_reference_links": "N/A" }, { "action": "business.remove_admin", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner was removed from an enterprise.", + "docs_reference_links": "/admin/user-management/managing-users-in-your-enterprise/inviting-people-to-manage-your-enterprise" }, { "action": "business.remove_organization", - "description": "N/A", + "description": "An organization was removed from an enterprise.", "docs_reference_links": "N/A" }, { "action": "business.rename_slug", - "description": "N/A", + "description": "The slug for the enterprise URL was renamed.", "docs_reference_links": "N/A" }, { @@ -106,48 +106,48 @@ }, { "action": "business.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs was changed for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise" }, { "action": "business.update_actions_settings", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner or site administrator updated GitHub Actions policy settings for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise" }, { "action": "business.update_default_repository_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The base repository permission setting was updated for all organizations in an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions" }, { "action": "business.update_member_repository_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The repository creation setting was updated for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-creation" }, { "action": "business.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The policy setting for enterprise members inviting outside collaborators to repositories was updated.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories" }, { "action": "business_advanced_security.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_advanced_security.disabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_advanced_security.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_advanced_security.enabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_dependabot_alerts_new_repos.disable", @@ -161,98 +161,103 @@ }, { "action": "business_secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning.disabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning.enabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" + }, + { + "action": "business_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the business level", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise#managing-advanced-security-features" }, { "action": "business_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise-level custom pattern was created for secret scanning.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account" }, { "action": "business_secret_scanning_custom_pattern.delete", - "description": "N/A", + "description": "An enterprise-level custom pattern was removed from secret scanning.", "docs_reference_links": "N/A" }, { "action": "business_secret_scanning_custom_pattern.publish", - "description": "N/A", + "description": "An enterprise-level custom pattern was published for secret scanning.", "docs_reference_links": "N/A" }, { "action": "business_secret_scanning_custom_pattern.update", - "description": "N/A", + "description": "Changes to an enterprise-level custom pattern were saved and a dry run was executed for secret scanning.", "docs_reference_links": "N/A" }, { "action": "business_secret_scanning_custom_pattern_push_protection.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for your enterprise.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account" }, { "action": "business_secret_scanning_custom_pattern_push_protection.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for your enterprise.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account" }, { "action": "business_secret_scanning_push_protection.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection.disabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection.enabled_for_new_repos", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was enabled for new repositories in your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection_custom_message.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was disabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection_custom_message.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was enabled for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "business_secret_scanning_push_protection_custom_message.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was updated for your enterprise.", + "docs_reference_links": "/admin/code-security/managing-github-advanced-security-for-your-enterprise/managing-github-advanced-security-features-for-your-enterprise" }, { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "custom_hosted_runner.create", @@ -271,68 +276,68 @@ }, { "action": "discussion_post.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "discussion_post_reply.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post_reply.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "enterprise.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new GitHub Actions self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "enterprise.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "enterprise.runner_group_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner group was created.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "enterprise.runner_group_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner group was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group" }, { "action": "enterprise.runner_group_runners_added", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions self-hosted runner was added to a group.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group" }, { "action": "enterprise.runner_group_runners_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A GitHub Actions runner group's list of members was updated.", + "docs_reference_links": "/rest/actions#set-self-hosted-runners-in-a-group-for-an-organization" }, { "action": "enterprise.runner_group_runner_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The REST API was used to remove a GitHub Actions self-hosted runner from a group.", + "docs_reference_links": "/rest/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization" }, { "action": "enterprise.runner_group_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The configuration of a GitHub Actions self-hosted runner group was changed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "enterprise.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The GitHub Actions runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "enterprise_announcement.create", @@ -351,37 +356,37 @@ }, { "action": "enterprise_domain.approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was approved for an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#approving-a-domain-for-your-enterprise-account" }, { "action": "enterprise_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was added to an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account" }, { "action": "enterprise_domain.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was removed from an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#removing-an-approved-or-verified-domain" }, { "action": "enterprise_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was verified for an enterprise.", + "docs_reference_links": "/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account" }, { "action": "git.clone", - "description": "N/A", + "description": "A repository was cloned.", "docs_reference_links": "N/A" }, { "action": "git.fetch", - "description": "N/A", + "description": "Changes were fetched from a repository.", "docs_reference_links": "N/A" }, { "action": "git.push", - "description": "N/A", + "description": "Changes were pushed to a repository.", "docs_reference_links": "N/A" }, { @@ -401,82 +406,82 @@ }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable", - "description": "N/A", + "description": "An IP allow list was disabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was disabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { @@ -486,12 +491,12 @@ }, { "action": "ip_allow_list.enable", - "description": "N/A", + "description": "An IP allow list was enabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was enabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { @@ -501,38 +506,38 @@ }, { "action": "ip_allow_list_entry.create", - "description": "N/A", + "description": "An IP address was added to an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.destroy", - "description": "N/A", + "description": "An IP address was deleted from an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.update", - "description": "N/A", + "description": "An IP address or its description was changed.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.suspend", @@ -541,42 +546,42 @@ }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.unsuspend", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was unsuspended for a user or organization account.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_authorization.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An authorization for an OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps" }, { "action": "oauth_authorization.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An authorization for an OAuth application was deleted.", + "docs_reference_links": "/apps/using-github-apps/reviewing-your-authorized-integrations" }, { "action": "oauth_authorization.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An authorization for an OAuth application was updated.", + "docs_reference_links": "/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps" }, { "action": "org.accept_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation sent to an organization to join an enterprise was accepted.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.add_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was added to an organization.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { @@ -586,43 +591,43 @@ }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_policy_selected_member_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner prevented GitHub Advanced Security features from being enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.advanced_security_policy_selected_member_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner allowed GitHub Advanced Security features to be enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.async_delete", - "description": "N/A", + "description": "A user initiated a background job to delete an organization.", "docs_reference_links": "N/A" }, { "action": "org.audit_log_export", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An export of the organization audit log was created. If the export included a query, the log will list the query used and the number of audit log entries matching that query.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#exporting-the-audit-log" }, { "action": "org.billing_signup_error", @@ -631,17 +636,17 @@ }, { "action": "org.block_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner blocked a user from accessing the organization's repositories.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization" }, { "action": "org.cancel_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was revoked", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.cancel_invitation", - "description": "N/A", + "description": "An invitation sent to a user to join an organization was revoked.", "docs_reference_links": "N/A" }, { @@ -651,43 +656,43 @@ }, { "action": "org.codeql_disabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization disables code scanning for repositories that use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.codeql_enabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization enables code scanning for repositories that are eligible to use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.configure_self_hosted_jit_runner", @@ -696,97 +701,97 @@ }, { "action": "org.confirm_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was confirmed.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization was created.", + "docs_reference_links": "/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch" }, { "action": "org.delete", - "description": "N/A", + "description": "An organization was deleted by a user-initiated background job.", "docs_reference_links": "N/A" }, { "action": "org.disable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation was limited to owners.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.disable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner limited discussion creation to users with at least triage permission in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.disable_saml", - "description": "N/A", + "description": "SAML single sign-on was disabled for an organization.", "docs_reference_links": "N/A" }, { "action": "org.disable_two_factor_requirement", - "description": "N/A", + "description": "A two-factor authentication requirement was disabled for the organization.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_disabled", - "description": "N/A", + "description": "An organization owner disabled the display of a commenter's full name in an organization. Members cannot see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_enabled", - "description": "N/A", + "description": "An organization owner enabled the display of a commenter's full name in an organization. Members can see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.enable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation by members was allowed.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.enable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner allowed users with read access to create discussions in an organization", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.enable_saml", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "SAML single sign-on was enabled for the organization.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization" }, { "action": "org.enable_two_factor_requirement", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication is now required for the organization.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.integration_manager_added", - "description": "N/A", + "description": "An organization owner granted a member access to manage all GitHub Apps owned by an organization.", "docs_reference_links": "N/A" }, { "action": "org.integration_manager_removed", - "description": "N/A", + "description": "An organization owner removed access to manage all GitHub Apps owned by an organization from an organization member.", "docs_reference_links": "N/A" }, { "action": "org.invite_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new user was invited to join an organization.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization" }, { "action": "org.invite_to_business", - "description": "N/A", + "description": "An organization was invited to join an enterprise.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.disable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was disabled. Only enterprise owners can update protected branches.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.enable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was enabled. Members of an organization can update protected branches.", "docs_reference_links": "N/A" }, { @@ -796,27 +801,27 @@ }, { "action": "org.recreate", - "description": "N/A", + "description": "An organization was restored.", "docs_reference_links": "N/A" }, { "action": "org.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization" }, { "action": "org.remove_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was removed from an organization, either manually or due to a two-factor authentication requirement.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization, /organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { "action": "org.remove_outside_collaborator", - "description": "N/A", + "description": "An outside collaborator was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { @@ -826,82 +831,82 @@ }, { "action": "org.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization" }, { "action": "org.rename", - "description": "N/A", + "description": "An organization was renamed.", "docs_reference_links": "N/A" }, { "action": "org.restore_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was restored.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization" }, { "action": "org.runner_group_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was created.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization" }, { "action": "org.runner_group_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group" }, { "action": "org.runner_group_runners_added", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was added to a group.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group" }, { "action": "org.runner_group_runners_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A runner group's list of members was updated.", + "docs_reference_links": "/rest/actions#set-self-hosted-runners-in-a-group-for-an-organization" }, { "action": "org.runner_group_runner_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The REST API was used to remove a self-hosted runner from a group.", + "docs_reference_links": "/rest/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization" }, { "action": "org.runner_group_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The configuration of a self-hosted runner group was changed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "org.secret_scanning_custom_pattern_push_protection_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_custom_pattern_push_protection_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was updated for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "org.secret_scanning_push_protection_enable", - "description": "N/A", + "description": "Push protection for secret scanning was enabled.", "docs_reference_links": "N/A" }, { @@ -916,8 +921,8 @@ }, { "action": "org.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "org.set_actions_private_fork_pr_approvals_policy", @@ -926,8 +931,8 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.set_custom_invitation_rate_limit", @@ -936,18 +941,18 @@ }, { "action": "org.sso_response", - "description": "N/A", + "description": "A SAML single sign-on (SSO) response was generated when a member attempted to authenticate with your organization. This event is only available via audit log streaming and the REST API.", "docs_reference_links": "N/A" }, { "action": "org.transform", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account was converted into an organization.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-your-personal-account/converting-a-user-into-an-organization" }, { "action": "org.unblock_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was unblocked from an organization.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization" }, { "action": "org.update_actions_settings", @@ -956,87 +961,97 @@ }, { "action": "org.update_default_repository_permission", - "description": "N/A", + "description": "The default repository permission level for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "org.update_saml_provider_settings", - "description": "N/A", + "description": "An organization's SAML provider settings were updated.", "docs_reference_links": "N/A" }, { "action": "org.update_terms_of_service", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization changed between the Standard Terms of Service and the GitHub Customer Agreement.", + "docs_reference_links": "/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement" }, { "action": "organization_domain.approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was approved for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#approving-a-domain-for-your-organization" }, { "action": "organization_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was added to an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" }, { "action": "organization_domain.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was removed from an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#removing-an-approved-or-verified-domain" }, { "action": "organization_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was verified for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" }, { "action": "org_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "org_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "packages.package_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An entire package was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_published", - "description": "N/A", + "description": "A package was published or republished to an organization.", "docs_reference_links": "N/A" }, { "action": "packages.package_version_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A specific package version was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_version_published", - "description": "N/A", + "description": "A specific package version was published or republished to a package.", "docs_reference_links": "N/A" }, { @@ -1059,49 +1074,54 @@ "description": "N/A", "docs_reference_links": "N/A" }, + { + "action": "protected_branch.branch_allowances", + "description": "A protected branch allowance was given to a specific user, team or integration.", + "docs_reference_links": "N/A" + }, { "action": "protected_branch.create", - "description": "N/A", + "description": "Branch protection was enabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.destroy", - "description": "N/A", + "description": "Branch protection was disabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismissal_restricted_users_teams", - "description": "N/A", + "description": "Enforcement of restricting users and/or teams who can dismiss reviews was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismiss_stale_reviews", - "description": "N/A", + "description": "Enforcement of dismissing stale pull requests was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.policy_override", - "description": "N/A", + "description": "A branch protection requirement was overridden by a repository administrator.", "docs_reference_links": "N/A" }, { "action": "protected_branch.rejected_ref_update", - "description": "N/A", + "description": "A branch update attempt was rejected.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_admin_enforced", - "description": "N/A", + "description": "Branch protection was enforced for repository administrators.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_allow_deletions_enforcement_level", - "description": "N/A", + "description": "Branch deletion was enabled or disabled for a protected branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_allow_force_pushes_enforcement_level", - "description": "N/A", + "description": "Force pushes were enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -1111,7 +1131,7 @@ }, { "action": "protected_branch.update_linear_history_requirement_enforcement_level", - "description": "N/A", + "description": "Required linear commit history was enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -1126,27 +1146,27 @@ }, { "action": "protected_branch.update_name", - "description": "N/A", + "description": "A branch name pattern was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_pull_request_reviews_enforcement_level", - "description": "N/A", + "description": "Enforcement of required pull request reviews was updated for a branch. Can be 0 (deactivated), 1 (non-admins), or 2 (everyone).", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_approving_review_count", - "description": "N/A", + "description": "Enforcement of the required number of approvals before merging was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_status_checks_enforcement_level", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_require_code_owner_review", - "description": "N/A", + "description": "Enforcement of required code owner review was updated for a branch.", "docs_reference_links": "N/A" }, { @@ -1156,88 +1176,88 @@ }, { "action": "protected_branch.update_signature_requirement_enforcement_level", - "description": "N/A", + "description": "Enforcement of required commit signing was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_strict_required_status_checks_policy", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "pull_request.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was closed without being merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request" }, { "action": "pull_request.converted_to_draft", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was converted to a draft.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft" }, { "action": "pull_request.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was created.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request" }, { "action": "pull_request.create_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review was requested on a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.indirect_merge", - "description": "N/A", + "description": "A pull request was considered merged because the pull request's commits were merged into the target branch.", "docs_reference_links": "N/A" }, { "action": "pull_request.in_progress", - "description": "N/A", + "description": "A pull request was marked as in progress.", "docs_reference_links": "N/A" }, { "action": "pull_request.merge", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request" }, { "action": "pull_request.ready_for_review", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was marked as ready for review.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review" }, { "action": "pull_request.rebase", @@ -1246,77 +1266,77 @@ }, { "action": "pull_request.remove_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review request was removed from a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.reopen", - "description": "N/A", + "description": "A pull request was reopened after previously being closed.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.delete", - "description": "N/A", + "description": "A review on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.dismiss", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was dismissed.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review" }, { "action": "pull_request_review.submit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was submitted.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review" }, { "action": "pull_request_review_comment.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review comment was added to a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request_review_comment.delete", - "description": "N/A", + "description": "A review comment on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review_comment.update", - "description": "N/A", + "description": "A review comment on a pull request was changed.", "docs_reference_links": "N/A" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { @@ -1331,13 +1351,13 @@ }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.collaborators_only", @@ -1346,33 +1366,33 @@ }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -1381,23 +1401,23 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.disk_archive", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived on disk.", + "docs_reference_links": "/repositories/archiving-a-github-repository/archiving-repositories" }, { "action": "repo.download_zip", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A source code archive of a repository was downloaded as a ZIP file.", + "docs_reference_links": "/repositories/working-with-files/using-files/downloading-source-code-archives" }, { "action": "repo.hide_from_discovery", @@ -1421,68 +1441,68 @@ }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.require_login", @@ -1496,8 +1516,8 @@ }, { "action": "repo.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "repo.set_actions_private_fork_pr_approvals_policy", @@ -1506,47 +1526,47 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { @@ -1561,22 +1581,22 @@ }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { @@ -1596,87 +1616,97 @@ }, { "action": "repository_secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "repository_secret_scanning.enable", - "description": "N/A", + "description": "Secret scanning was enabled for a repository.", "docs_reference_links": "N/A" }, + { + "action": "repository_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, + { + "action": "repository_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, { "action": "repository_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_push_protection.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "repository_secret_scanning_push_protection.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was enabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "restrict_notification_delivery.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were disabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "restrict_notification_delivery.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were enabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_alert.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub detected a secret and created a secret scanning alert.", + "docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning" }, { "action": "secret_scanning_alert.reopen", - "description": "N/A", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A" }, { "action": "secret_scanning_alert.resolve", - "description": "N/A", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A" }, { @@ -1686,148 +1716,148 @@ }, { "action": "secret_scanning_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_push_protection.bypass", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a user bypasses the push protection on a secret detected by secret scanning.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#bypassing-push-protection-for-a-secret" }, { "action": "security_key.register", - "description": "N/A", + "description": "A security key was registered for an account.", "docs_reference_links": "N/A" }, { "action": "security_key.remove", - "description": "N/A", + "description": "A security key was removed from an account.", "docs_reference_links": "N/A" }, { "action": "ssh_certificate_authority.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was created.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_authority.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was deleted.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was disabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was enabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "staff.set_domain_token_expiration", - "description": "N/A", + "description": "The verification code expiry time for an organization or enterprise domain was set.", "docs_reference_links": "N/A" }, { "action": "staff.unverify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was unverified.", "docs_reference_links": "N/A" }, { "action": "staff.verify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was verified.", "docs_reference_links": "N/A" }, { "action": "team.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member of an organization was added to a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/adding-organization-members-to-a-team" }, { "action": "team.add_repository", - "description": "N/A", + "description": "A team was given access and permissions to a repository.", "docs_reference_links": "N/A" }, { "action": "team.change_parent_team", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A child team was created or a child team's parent was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy" }, { "action": "team.change_privacy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A team's privacy level was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/changing-team-visibility" }, { "action": "team.create", - "description": "N/A", + "description": "A new team is created.", "docs_reference_links": "N/A" }, { "action": "team.demote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was demoted from a team maintainer to a team member.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member" }, { "action": "team.destroy", - "description": "N/A", + "description": "A team was deleted.", "docs_reference_links": "N/A" }, { "action": "team.promote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was promoted from a team member to a team maintainer.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member#promoting-an-organization-member-to-team-maintainer" }, { "action": "team.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was removed from a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/removing-organization-members-from-a-team" }, { "action": "team.remove_repository", - "description": "N/A", + "description": "A repository was removed from a team's control.", "docs_reference_links": "N/A" }, { "action": "team.rename", - "description": "N/A", + "description": "A team's name was changed.", "docs_reference_links": "N/A" }, { "action": "team.update_repository_permission", - "description": "N/A", + "description": "A team's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "team_discussions.clear", - "description": "N/A", + "description": "An organization owner cleared the setting to allow team discussions for an organization or enterprise.", "docs_reference_links": "N/A" }, { "action": "team_discussions.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team discussions were disabled for an organization.", + "docs_reference_links": "/organizations/organizing-members-into-teams/disabling-team-discussions-for-your-organization" }, { "action": "team_discussions.enable", - "description": "N/A", + "description": "Team discussions were enabled for an organization.", "docs_reference_links": "N/A" }, { "action": "team_sync_tenant.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was disabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "team_sync_tenant.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was enabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "two_factor_authentication.add_factor", @@ -1836,22 +1866,22 @@ }, { "action": "two_factor_authentication.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication was disabled for a user account.", + "docs_reference_links": "https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/disabling-two-factor-authentication-for-your-personal-account" }, { "action": "two_factor_authentication.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication was enabled for a user account.", + "docs_reference_links": "https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication" }, { "action": "two_factor_authentication.password_reset_fallback_sms", - "description": "N/A", + "description": "A one-time password code was sent to a user account fallback phone number.", "docs_reference_links": "N/A" }, { "action": "two_factor_authentication.recovery_codes_regenerated", - "description": "N/A", + "description": "Two factor recovery codes were regenerated for a user account.", "docs_reference_links": "N/A" }, { @@ -1861,37 +1891,37 @@ }, { "action": "two_factor_authentication.sign_in_fallback_sms", - "description": "N/A", + "description": "A one-time password code was sent to a user account fallback phone number.", "docs_reference_links": "N/A" }, { "action": "two_factor_authentication.update_fallback", - "description": "N/A", + "description": "The two-factor authentication fallback for a user account was changed.", "docs_reference_links": "N/A" }, { "action": "user.add_email", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An email address was added to a user account.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/adding-an-email-address-to-your-github-account" }, { "action": "user.async_delete", - "description": "N/A", + "description": "An asynchronous job was started to destroy a user account, eventually triggering a user.delete event.", "docs_reference_links": "N/A" }, { "action": "user.audit_log_export", - "description": "N/A", + "description": "Audit log entries were exported.", "docs_reference_links": "N/A" }, { "action": "user.block_user", - "description": "N/A", + "description": "A user was blocked by another user.", "docs_reference_links": "N/A" }, { "action": "user.change_password", - "description": "N/A", + "description": "A user changed their password.", "docs_reference_links": "N/A" }, { @@ -1911,27 +1941,27 @@ }, { "action": "user.create", - "description": "N/A", + "description": "A new user account was created.", "docs_reference_links": "N/A" }, { "action": "user.creation_rate_limit_exceeded", - "description": "N/A", + "description": "The rate of creation of user accounts, applications, issues, pull requests or other resources exceeded the configured rate limits, or too many users were followed too quickly.", "docs_reference_links": "N/A" }, { "action": "user.delete", - "description": "N/A", + "description": "A user account was destroyed by an asynchronous job.", "docs_reference_links": "N/A" }, { "action": "user.demote", - "description": "N/A", + "description": "A site administrator was demoted to an ordinary user account.", "docs_reference_links": "N/A" }, { "action": "user.destroy", - "description": "N/A", + "description": "A user deleted his or her account, triggering user.async_delete.", "docs_reference_links": "N/A" }, { @@ -1951,18 +1981,18 @@ }, { "action": "user.failed_login", - "description": "N/A", + "description": "A user tried to sign in with an incorrect username, password, or two-factor authentication code.", "docs_reference_links": "N/A" }, { "action": "user.flag_as_large_scale_contributor", - "description": "N/A", + "description": "A user account was flagged as a large scale contributor. Only contributions from public repositories the user owns will be shown in their contribution graph, in order to prevent timeouts.", "docs_reference_links": "N/A" }, { "action": "user.forgot_password", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user requested a password reset.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials" }, { "action": "user.grant_github_developer", @@ -1971,12 +2001,12 @@ }, { "action": "user.hide_private_contributions_count", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now hidden.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-settings-on-your-profile/showing-your-private-contributions-and-achievements-on-your-profile" }, { "action": "user.login", - "description": "N/A", + "description": "A user signed in.", "docs_reference_links": "N/A" }, { @@ -1986,7 +2016,7 @@ }, { "action": "user.minimize_comment", - "description": "N/A", + "description": "A comment made by a user was minimized.", "docs_reference_links": "N/A" }, { @@ -1996,27 +2026,27 @@ }, { "action": "user.promote", - "description": "N/A", + "description": "An ordinary user account was promoted to a site administrator.", "docs_reference_links": "N/A" }, { "action": "user.recreate", - "description": "N/A", + "description": "A user's account was restored.", "docs_reference_links": "N/A" }, { "action": "user.remove_email", - "description": "N/A", + "description": "An email address was removed from a user account.", "docs_reference_links": "N/A" }, { "action": "user.remove_large_scale_contributor_flag", - "description": "N/A", + "description": "A user account was no longer flagged as a large scale contributor.", "docs_reference_links": "N/A" }, { "action": "user.rename", - "description": "N/A", + "description": "A username was changed.", "docs_reference_links": "N/A" }, { @@ -2026,37 +2056,37 @@ }, { "action": "user.report_content", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when you report an issue or pull request, or a comment on an issue, pull request, or commit.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/reporting-abuse-or-spam" }, { "action": "user.reset_password", - "description": "N/A", + "description": "A user reset their account password.", "docs_reference_links": "N/A" }, { "action": "user.show_private_contributions_count", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now shown.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-settings-on-your-profile/showing-your-private-contributions-and-achievements-on-your-profile" }, { "action": "user.sign_in_from_unrecognized_device", - "description": "N/A", + "description": "A user signed in from an unrecognized device.", "docs_reference_links": "N/A" }, { "action": "user.sign_in_from_unrecognized_device_and_location", - "description": "N/A", + "description": "A user signed in from an unrecognized device and location.", "docs_reference_links": "N/A" }, { "action": "user.sign_in_from_unrecognized_location", - "description": "N/A", + "description": "A user signed in from an unrecognized location.", "docs_reference_links": "N/A" }, { "action": "user.suspend", - "description": "N/A", + "description": "A user account was suspended.", "docs_reference_links": "N/A" }, { @@ -2066,58 +2096,58 @@ }, { "action": "user.two_factor_challenge_failure", - "description": "N/A", + "description": "A 2FA challenge issued for a user account failed.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_challenge_success", - "description": "N/A", + "description": "A 2FA challenge issued for a user account succeeded.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recover", - "description": "N/A", + "description": "A user used their 2FA recovery codes.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_downloaded", - "description": "N/A", + "description": "A user downloaded 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_printed", - "description": "N/A", + "description": "A user printed 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_viewed", - "description": "N/A", + "description": "A user viewed 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_requested", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was prompted for a two-factor authentication code.", + "docs_reference_links": "/authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication" }, { "action": "user.unblock_user", - "description": "N/A", + "description": "A user was unblocked by another user.", "docs_reference_links": "N/A" }, { "action": "user.unminimize_comment", - "description": "N/A", + "description": "A comment made by a user was unminimized.", "docs_reference_links": "N/A" }, { "action": "user.unsuspend", - "description": "N/A", + "description": "A user account was unsuspended.", "docs_reference_links": "N/A" }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -2126,8 +2156,8 @@ }, { "action": "workflows.cancel_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was cancelled.", + "docs_reference_links": "/actions/managing-workflow-runs/canceling-a-workflow" }, { "action": "workflows.comment_workflow_job", @@ -2136,27 +2166,27 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.rerun_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was re-run.", + "docs_reference_links": "/actions/managing-workflow-runs/re-running-workflows-and-jobs" } ] \ No newline at end of file diff --git a/src/audit-logs/data/ghes/organization.json b/src/audit-logs/data/ghes/organization.json index 506ab0665e..1a86a3f828 100644 --- a/src/audit-logs/data/ghes/organization.json +++ b/src/audit-logs/data/ghes/organization.json @@ -1,13 +1,13 @@ [ { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "custom_hosted_runner.create", @@ -26,37 +26,37 @@ }, { "action": "discussion_post.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "discussion_post_reply.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is deleted.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment" }, { "action": "discussion_post_reply.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a reply to a team discussion post is edited.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment" }, { "action": "git.clone", - "description": "N/A", + "description": "A repository was cloned.", "docs_reference_links": "N/A" }, { "action": "git.fetch", - "description": "N/A", + "description": "Changes were fetched from a repository.", "docs_reference_links": "N/A" }, { "action": "git.push", - "description": "N/A", + "description": "Changes were pushed to a repository.", "docs_reference_links": "N/A" }, { @@ -76,147 +76,147 @@ }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable", - "description": "N/A", + "description": "An IP allow list was disabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.disable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was disabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable", - "description": "N/A", + "description": "An IP allow list was enabled.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list.enable_for_installed_apps", - "description": "N/A", + "description": "An IP allow list was enabled for installed GitHub Apps.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.create", - "description": "N/A", + "description": "An IP address was added to an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.destroy", - "description": "N/A", + "description": "An IP address was deleted from an IP allow list.", "docs_reference_links": "N/A" }, { "action": "ip_allow_list_entry.update", - "description": "N/A", + "description": "An IP address or its description was changed.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "org.accept_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation sent to an organization to join an enterprise was accepted.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.add_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was added to an organization.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { @@ -226,38 +226,38 @@ }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_policy_selected_member_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner prevented GitHub Advanced Security features from being enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.advanced_security_policy_selected_member_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise owner allowed GitHub Advanced Security features to be enabled for repositories owned by the organization.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise" }, { "action": "org.audit_log_export", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An export of the organization audit log was created. If the export included a query, the log will list the query used and the number of audit log entries matching that query.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization#exporting-the-audit-log" }, { "action": "org.billing_signup_error", @@ -266,17 +266,17 @@ }, { "action": "org.block_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner blocked a user from accessing the organization's repositories.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization" }, { "action": "org.cancel_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was revoked", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.cancel_invitation", - "description": "N/A", + "description": "An invitation sent to a user to join an organization was revoked.", "docs_reference_links": "N/A" }, { @@ -286,43 +286,43 @@ }, { "action": "org.codeql_disabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization disables code scanning for repositories that use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.codeql_enabled", - "description": "N/A", + "description": "Triggered when an organization owner or person with admin access to the organization enables code scanning for repositories that are eligible to use the default setup for CodeQL.", "docs_reference_links": "N/A" }, { "action": "org.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only for an organization was enabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization" }, { "action": "org.configure_self_hosted_jit_runner", @@ -331,92 +331,92 @@ }, { "action": "org.confirm_business_invitation", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An invitation for an organization to join an enterprise was confirmed.", + "docs_reference_links": "/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account" }, { "action": "org.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization was created.", + "docs_reference_links": "/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch" }, { "action": "org.disable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation was limited to owners.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.disable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner limited discussion creation to users with at least triage permission in an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.disable_saml", - "description": "N/A", + "description": "SAML single sign-on was disabled for an organization.", "docs_reference_links": "N/A" }, { "action": "org.disable_two_factor_requirement", - "description": "N/A", + "description": "A two-factor authentication requirement was disabled for the organization.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_disabled", - "description": "N/A", + "description": "An organization owner disabled the display of a commenter's full name in an organization. Members cannot see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.display_commenter_full_name_enabled", - "description": "N/A", + "description": "An organization owner enabled the display of a commenter's full name in an organization. Members can see a comment author's full name.", "docs_reference_links": "N/A" }, { "action": "org.enable_member_team_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team creation by members was allowed.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization" }, { "action": "org.enable_reader_discussion_creation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner allowed users with read access to create discussions in an organization", + "docs_reference_links": "/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization" }, { "action": "org.enable_saml", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "SAML single sign-on was enabled for the organization.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization" }, { "action": "org.enable_two_factor_requirement", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication is now required for the organization.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.integration_manager_added", - "description": "N/A", + "description": "An organization owner granted a member access to manage all GitHub Apps owned by an organization.", "docs_reference_links": "N/A" }, { "action": "org.integration_manager_removed", - "description": "N/A", + "description": "An organization owner removed access to manage all GitHub Apps owned by an organization from an organization member.", "docs_reference_links": "N/A" }, { "action": "org.invite_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new user was invited to join an organization.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization" }, { "action": "org.invite_to_business", - "description": "N/A", + "description": "An organization was invited to join an enterprise.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.disable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was disabled. Only enterprise owners can update protected branches.", "docs_reference_links": "N/A" }, { "action": "org.members_can_update_protected_branches.enable", - "description": "N/A", + "description": "The ability for enterprise members to update protected branches was enabled. Members of an organization can update protected branches.", "docs_reference_links": "N/A" }, { @@ -426,22 +426,22 @@ }, { "action": "org.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization" }, { "action": "org.remove_billing_manager", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A billing manager was removed from an organization, either manually or due to a two-factor authentication requirement.", + "docs_reference_links": "/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization, /organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { "action": "org.remove_outside_collaborator", - "description": "N/A", + "description": "An outside collaborator was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { @@ -451,82 +451,82 @@ }, { "action": "org.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization" }, { "action": "org.rename", - "description": "N/A", + "description": "An organization was renamed.", "docs_reference_links": "N/A" }, { "action": "org.restore_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was restored.", + "docs_reference_links": "/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization" }, { "action": "org.runner_group_created", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was created.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization" }, { "action": "org.runner_group_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner group was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group" }, { "action": "org.runner_group_runners_added", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was added to a group.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group" }, { "action": "org.runner_group_runners_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A runner group's list of members was updated.", + "docs_reference_links": "/rest/actions#set-self-hosted-runners-in-a-group-for-an-organization" }, { "action": "org.runner_group_runner_removed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The REST API was used to remove a self-hosted runner from a group.", + "docs_reference_links": "/rest/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization" }, { "action": "org.runner_group_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The configuration of a self-hosted runner group was changed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group" }, { "action": "org.secret_scanning_custom_pattern_push_protection_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_custom_pattern_push_protection_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was disabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was enabled for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_custom_message_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The custom message triggered by an attempted push to a push-protected repository was updated for an organization.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#enabling-secret-scanning-as-a-push-protection-for-an-organization" }, { "action": "org.secret_scanning_push_protection_disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for secret scanning was disabled.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "org.secret_scanning_push_protection_enable", - "description": "N/A", + "description": "Push protection for secret scanning was enabled.", "docs_reference_links": "N/A" }, { @@ -541,8 +541,8 @@ }, { "action": "org.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "org.set_actions_private_fork_pr_approvals_policy", @@ -551,8 +551,8 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.set_custom_invitation_rate_limit", @@ -561,8 +561,8 @@ }, { "action": "org.unblock_user", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was unblocked from an organization.", + "docs_reference_links": "/communities/maintaining-your-safety-on-github/unblocking-a-user-from-your-organization" }, { "action": "org.update_actions_settings", @@ -571,87 +571,97 @@ }, { "action": "org.update_default_repository_permission", - "description": "N/A", + "description": "The default repository permission level for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "org.update_saml_provider_settings", - "description": "N/A", + "description": "An organization's SAML provider settings were updated.", "docs_reference_links": "N/A" }, { "action": "org.update_terms_of_service", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization changed between the Standard Terms of Service and the GitHub Customer Agreement.", + "docs_reference_links": "/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement" }, { "action": "organization_domain.approve", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was approved for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#approving-a-domain-for-your-organization" }, { "action": "organization_domain.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was added to an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" }, { "action": "organization_domain.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was removed from an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#removing-an-approved-or-verified-domain" }, { "action": "organization_domain.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An enterprise domain was verified for an organization.", + "docs_reference_links": "/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" + }, + { + "action": "org_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the organization level", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization#allowing-validity-checks-for-partner-patterns-in-an-organization" }, { "action": "org_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "org_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization" }, { "action": "org_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in an organization.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "packages.package_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An entire package was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_published", - "description": "N/A", + "description": "A package was published or republished to an organization.", "docs_reference_links": "N/A" }, { "action": "packages.package_version_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A specific package version was deleted.", + "docs_reference_links": "/packages/learn-github-packages/deleting-and-restoring-a-package" }, { "action": "packages.package_version_published", - "description": "N/A", + "description": "A specific package version was published or republished to a package.", "docs_reference_links": "N/A" }, { @@ -674,49 +684,54 @@ "description": "N/A", "docs_reference_links": "N/A" }, + { + "action": "protected_branch.branch_allowances", + "description": "A protected branch allowance was given to a specific user, team or integration.", + "docs_reference_links": "N/A" + }, { "action": "protected_branch.create", - "description": "N/A", + "description": "Branch protection was enabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.destroy", - "description": "N/A", + "description": "Branch protection was disabled on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismissal_restricted_users_teams", - "description": "N/A", + "description": "Enforcement of restricting users and/or teams who can dismiss reviews was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.dismiss_stale_reviews", - "description": "N/A", + "description": "Enforcement of dismissing stale pull requests was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.policy_override", - "description": "N/A", + "description": "A branch protection requirement was overridden by a repository administrator.", "docs_reference_links": "N/A" }, { "action": "protected_branch.rejected_ref_update", - "description": "N/A", + "description": "A branch update attempt was rejected.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_admin_enforced", - "description": "N/A", + "description": "Branch protection was enforced for repository administrators.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_allow_deletions_enforcement_level", - "description": "N/A", + "description": "Branch deletion was enabled or disabled for a protected branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_allow_force_pushes_enforcement_level", - "description": "N/A", + "description": "Force pushes were enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -726,7 +741,7 @@ }, { "action": "protected_branch.update_linear_history_requirement_enforcement_level", - "description": "N/A", + "description": "Required linear commit history was enabled or disabled for a branch.", "docs_reference_links": "N/A" }, { @@ -741,27 +756,27 @@ }, { "action": "protected_branch.update_name", - "description": "N/A", + "description": "A branch name pattern was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_pull_request_reviews_enforcement_level", - "description": "N/A", + "description": "Enforcement of required pull request reviews was updated for a branch. Can be 0 (deactivated), 1 (non-admins), or 2 (everyone).", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_approving_review_count", - "description": "N/A", + "description": "Enforcement of the required number of approvals before merging was updated on a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_required_status_checks_enforcement_level", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_require_code_owner_review", - "description": "N/A", + "description": "Enforcement of required code owner review was updated for a branch.", "docs_reference_links": "N/A" }, { @@ -771,88 +786,88 @@ }, { "action": "protected_branch.update_signature_requirement_enforcement_level", - "description": "N/A", + "description": "Enforcement of required commit signing was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "protected_branch.update_strict_required_status_checks_policy", - "description": "N/A", + "description": "Enforcement of required status checks was updated for a branch.", "docs_reference_links": "N/A" }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "pull_request.close", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was closed without being merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request" }, { "action": "pull_request.converted_to_draft", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was converted to a draft.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft" }, { "action": "pull_request.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was created.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request" }, { "action": "pull_request.create_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review was requested on a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.indirect_merge", - "description": "N/A", + "description": "A pull request was considered merged because the pull request's commits were merged into the target branch.", "docs_reference_links": "N/A" }, { "action": "pull_request.in_progress", - "description": "N/A", + "description": "A pull request was marked as in progress.", "docs_reference_links": "N/A" }, { "action": "pull_request.merge", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was merged.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request" }, { "action": "pull_request.ready_for_review", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A pull request was marked as ready for review.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review" }, { "action": "pull_request.rebase", @@ -861,77 +876,77 @@ }, { "action": "pull_request.remove_review_request", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review request was removed from a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request.reopen", - "description": "N/A", + "description": "A pull request was reopened after previously being closed.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.delete", - "description": "N/A", + "description": "A review on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review.dismiss", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was dismissed.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review" }, { "action": "pull_request_review.submit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review on a pull request was submitted.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review" }, { "action": "pull_request_review_comment.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A review comment was added to a pull request.", + "docs_reference_links": "/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews" }, { "action": "pull_request_review_comment.delete", - "description": "N/A", + "description": "A review comment on a pull request was deleted.", "docs_reference_links": "N/A" }, { "action": "pull_request_review_comment.update", - "description": "N/A", + "description": "A review comment on a pull request was changed.", "docs_reference_links": "N/A" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { @@ -946,43 +961,43 @@ }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -991,83 +1006,83 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.download_zip", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A source code archive of a repository was downloaded as a ZIP file.", + "docs_reference_links": "/repositories/working-with-files/using-files/downloading-source-code-archives" }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.restore", @@ -1076,8 +1091,8 @@ }, { "action": "repo.self_hosted_runner_updated", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#about-self-hosted-runners" }, { "action": "repo.set_actions_private_fork_pr_approvals_policy", @@ -1086,47 +1101,47 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { @@ -1141,22 +1156,22 @@ }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { @@ -1176,87 +1191,97 @@ }, { "action": "repository_secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "repository_secret_scanning.enable", - "description": "N/A", + "description": "Secret scanning was enabled for a repository.", "docs_reference_links": "N/A" }, + { + "action": "repository_secret_scanning_automatic_validity_checks.disabled", + "description": "Automatic partner validation checks have been disabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, + { + "action": "repository_secret_scanning_automatic_validity_checks.enabled", + "description": "Automatic partner validation checks have been enabled at the repository level", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository#allowing-validity-checks-for-partner-patterns-in-a-repository" + }, { "action": "repository_secret_scanning_custom_pattern.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was created for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was removed from secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern.publish", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A custom pattern was published for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Changes to a custom pattern were saved and a dry run was executed for secret scanning in a repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was disabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_custom_pattern_push_protection.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Push protection for a custom pattern for secret scanning was enabled for your repository.", + "docs_reference_links": "/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository" }, { "action": "repository_secret_scanning_push_protection.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was disabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "repository_secret_scanning_push_protection.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning push protection was enabled for a repository.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning" }, { "action": "restrict_notification_delivery.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were disabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "restrict_notification_delivery.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Email notification restrictions for an organization or enterprise were enabled.", + "docs_reference_links": "/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization, /admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise" }, { "action": "secret_scanning.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all existing repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_alert.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub detected a secret and created a secret scanning alert.", + "docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning" }, { "action": "secret_scanning_alert.reopen", - "description": "N/A", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A" }, { "action": "secret_scanning_alert.resolve", - "description": "N/A", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A" }, { @@ -1266,143 +1291,143 @@ }, { "action": "secret_scanning_new_repos.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was disabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_new_repos.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Secret scanning was enabled for all new repositories.", + "docs_reference_links": "/code-security/secret-scanning/about-secret-scanning" }, { "action": "secret_scanning_push_protection.bypass", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Triggered when a user bypasses the push protection on a secret detected by secret scanning.", + "docs_reference_links": "/code-security/secret-scanning/protecting-pushes-with-secret-scanning#bypassing-push-protection-for-a-secret" }, { "action": "ssh_certificate_authority.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was created.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_authority.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH certificate authority for an organization or enterprise was deleted.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was disabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "ssh_certificate_requirement.enable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The requirement for members to use SSH certificates to access an organization resources was enabled.", + "docs_reference_links": "/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities, /admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise" }, { "action": "staff.set_domain_token_expiration", - "description": "N/A", + "description": "The verification code expiry time for an organization or enterprise domain was set.", "docs_reference_links": "N/A" }, { "action": "staff.unverify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was unverified.", "docs_reference_links": "N/A" }, { "action": "staff.verify_domain", - "description": "N/A", + "description": "An organization or enterprise domain was verified.", "docs_reference_links": "N/A" }, { "action": "team.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A member of an organization was added to a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/adding-organization-members-to-a-team" }, { "action": "team.add_repository", - "description": "N/A", + "description": "A team was given access and permissions to a repository.", "docs_reference_links": "N/A" }, { "action": "team.change_parent_team", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A child team was created or a child team's parent was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy" }, { "action": "team.change_privacy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A team's privacy level was changed.", + "docs_reference_links": "/organizations/organizing-members-into-teams/changing-team-visibility" }, { "action": "team.create", - "description": "N/A", + "description": "A new team is created.", "docs_reference_links": "N/A" }, { "action": "team.demote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was demoted from a team maintainer to a team member.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member" }, { "action": "team.destroy", - "description": "N/A", + "description": "A team was deleted.", "docs_reference_links": "N/A" }, { "action": "team.promote_maintainer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was promoted from a team member to a team maintainer.", + "docs_reference_links": "/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member#promoting-an-organization-member-to-team-maintainer" }, { "action": "team.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization member was removed from a team.", + "docs_reference_links": "/organizations/organizing-members-into-teams/removing-organization-members-from-a-team" }, { "action": "team.remove_repository", - "description": "N/A", + "description": "A repository was removed from a team's control.", "docs_reference_links": "N/A" }, { "action": "team.rename", - "description": "N/A", + "description": "A team's name was changed.", "docs_reference_links": "N/A" }, { "action": "team.update_repository_permission", - "description": "N/A", + "description": "A team's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "team_discussions.clear", - "description": "N/A", + "description": "An organization owner cleared the setting to allow team discussions for an organization or enterprise.", "docs_reference_links": "N/A" }, { "action": "team_discussions.disable", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team discussions were disabled for an organization.", + "docs_reference_links": "/organizations/organizing-members-into-teams/disabling-team-discussions-for-your-organization" }, { "action": "team_discussions.enable", - "description": "N/A", + "description": "Team discussions were enabled for an organization.", "docs_reference_links": "N/A" }, { "action": "team_sync_tenant.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was disabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "team_sync_tenant.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Team synchronization with a tenant was enabled.", + "docs_reference_links": "/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization, /admin/identity-and-access-management/using-saml-for-enterprise-iam/managing-team-synchronization-for-organizations-in-your-enterprise" }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -1411,8 +1436,8 @@ }, { "action": "workflows.cancel_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was cancelled.", + "docs_reference_links": "/actions/managing-workflow-runs/canceling-a-workflow" }, { "action": "workflows.comment_workflow_job", @@ -1421,27 +1446,27 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.rerun_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was re-run.", + "docs_reference_links": "/actions/managing-workflow-runs/re-running-workflows-and-jobs" } ] \ No newline at end of file diff --git a/src/audit-logs/data/ghes/user.json b/src/audit-logs/data/ghes/user.json index d2fb4a82eb..c6710b1fe5 100644 --- a/src/audit-logs/data/ghes/user.json +++ b/src/audit-logs/data/ghes/user.json @@ -6,18 +6,18 @@ }, { "action": "business.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs was changed for an enterprise.", + "docs_reference_links": "/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise" }, { "action": "checks.auto_trigger_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was disabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "checks.auto_trigger_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Automatic creation of check suites was enabled on a repository in the organization or enterprise.", + "docs_reference_links": "/rest/checks#update-repository-preferences-for-check-suites" }, { "action": "custom_hosted_runner.create", @@ -51,137 +51,137 @@ }, { "action": "hook.config_changed", - "description": "N/A", + "description": "A hook's configuration was changed.", "docs_reference_links": "N/A" }, { "action": "hook.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new hook was added.", + "docs_reference_links": "/get-started/exploring-integrations/about-webhooks" }, { "action": "hook.destroy", - "description": "N/A", + "description": "A hook was deleted.", "docs_reference_links": "N/A" }, { "action": "hook.events_changed", - "description": "N/A", + "description": "A hook's configured events were changed.", "docs_reference_links": "N/A" }, { "action": "integration.create", - "description": "N/A", + "description": "An integration was created.", "docs_reference_links": "N/A" }, { "action": "integration.destroy", - "description": "N/A", + "description": "An integration was deleted.", "docs_reference_links": "N/A" }, { "action": "integration.manager_added", - "description": "N/A", + "description": "A member of an enterprise or organization was added as an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.manager_removed", - "description": "N/A", + "description": "A member of an enterprise or organization was removed from being an integration manager.", "docs_reference_links": "N/A" }, { "action": "integration.transfer", - "description": "N/A", + "description": "Ownership of an integration was transferred to another user or organization.", "docs_reference_links": "N/A" }, { "action": "integration_installation.create", - "description": "N/A", + "description": "An integration was installed.", "docs_reference_links": "N/A" }, { "action": "integration_installation.destroy", - "description": "N/A", + "description": "An integration was uninstalled.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_added", - "description": "N/A", + "description": "Repositories were added to an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.repositories_removed", - "description": "N/A", + "description": "Repositories were removed from an integration.", "docs_reference_links": "N/A" }, { "action": "integration_installation.version_updated", - "description": "N/A", + "description": "Permissions for an integration were updated.", "docs_reference_links": "N/A" }, { "action": "oauth_application.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was deleted.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.reset_secret", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The secret key for an OAuth application was reset.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.revoke_tokens", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Token(s) for an OAuth application were revoked.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_application.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An OAuth application was transferred from one account to another.", + "docs_reference_links": "/apps/oauth-apps/building-oauth-apps/authenticating-to-the-rest-api-with-an-oauth-app#registering-your-app" }, { "action": "oauth_authorization.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An authorization for an OAuth application was created.", + "docs_reference_links": "/apps/oauth-apps/using-oauth-apps/authorizing-oauth-apps" }, { "action": "oauth_authorization.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An authorization for an OAuth application was deleted.", + "docs_reference_links": "/apps/using-github-apps/reviewing-your-authorized-integrations" }, { "action": "org.add_member", - "description": "N/A", + "description": "A user joined an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_disabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was disabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_for_new_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for new repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.advanced_security_enabled_on_all_repos", - "description": "N/A", + "description": "GitHub Advanced Security was enabled for all repositories in an organization.", "docs_reference_links": "N/A" }, { "action": "org.remove_member", - "description": "N/A", + "description": "A member was removed from an organization, either manually or due to a two-factor authentication requirement.", "docs_reference_links": "N/A" }, { @@ -191,18 +191,18 @@ }, { "action": "org.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in an organization was changed.", + "docs_reference_links": "/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization" }, { "action": "org.update_member_repository_creation_permission", - "description": "N/A", + "description": "The create repository permission for organization members was changed.", "docs_reference_links": "N/A" }, { "action": "org.update_member_repository_invitation_permission", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An organization owner changed the policy setting for organization members inviting outside collaborators to repositories.", + "docs_reference_links": "/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators" }, { "action": "premium_runner.create", @@ -221,113 +221,113 @@ }, { "action": "public_key.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was added to a user account or a deploy key was added to a repository.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account" }, { "action": "public_key.delete", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An SSH key was removed from a user account or a deploy key was removed from a repository.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/reviewing-your-ssh-keys" }, { "action": "public_key.unverification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.unverify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unverified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.update", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was updated.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verification_failure", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was unable to be verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "public_key.verify", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user account's SSH key or a repository's deploy key was verified.", + "docs_reference_links": "/authentication/connecting-to-github-with-ssh/managing-deploy-keys#deploy-keys" }, { "action": "repo.access", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The visibility of a repository changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility" }, { "action": "repo.add_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was added to a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository" }, { "action": "repo.add_topic", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A topic was added to a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics" }, { "action": "repo.advanced_security_disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was disabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.advanced_security_enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "GitHub Advanced Security was enabled for a repository.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository" }, { "action": "repo.archived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was archived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.change_merge_setting", - "description": "N/A", + "description": "Pull request merge options were changed for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.code_scanning_analysis_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Code scanning analysis for a repository was deleted.", + "docs_reference_links": "/rest/code-scanning#delete-a-code-scanning-analysis-from-a-repository" }, { "action": "repo.code_scanning_configuration_for_branch_deleted", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A code scanning configuration for a branch of a repository was deleted.", + "docs_reference_links": "/code-security/code-scanning/managing-code-scanning-alerts/managing-code-scanning-alerts-for-your-repository#removing-stale-configurations-and-alerts-from-a-branch" }, { "action": "repo.config.disable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was disabled.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.disable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users only was disabled in a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_collaborators_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for collaborators only was enabled in a repository Users that are not collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_contributors_only", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for prior contributors only was enabled in a repository Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.config.enable_sockpuppet_disallowed", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The interaction limit for existing users was enabled in a repository New users aren't able to interact with a repository for a set duration Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository.", + "docs_reference_links": "/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository" }, { "action": "repo.configure_self_hosted_jit_runner", @@ -336,78 +336,78 @@ }, { "action": "repo.create", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was created.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/creating-a-new-repository" }, { "action": "repo.destroy", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was deleted.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/deleting-a-repository" }, { "action": "repo.pages_cname", - "description": "N/A", + "description": "A GitHub Pages custom domain was modified in a repository.", "docs_reference_links": "N/A" }, { "action": "repo.pages_create", - "description": "N/A", + "description": "A GitHub Pages site was created.", "docs_reference_links": "N/A" }, { "action": "repo.pages_destroy", - "description": "N/A", + "description": "A GitHub Pages site was deleted.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_disabled", - "description": "N/A", + "description": "HTTPS redirects were disabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_https_redirect_enabled", - "description": "N/A", + "description": "HTTPS redirects were enabled for a GitHub Pages site.", "docs_reference_links": "N/A" }, { "action": "repo.pages_private", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to private.", "docs_reference_links": "N/A" }, { "action": "repo.pages_public", - "description": "N/A", + "description": "A GitHub Pages site visibility was changed to public.", "docs_reference_links": "N/A" }, { "action": "repo.pages_source", - "description": "N/A", + "description": "A GitHub Pages source was modified.", "docs_reference_links": "N/A" }, { "action": "repo.register_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A new self-hosted runner was registered.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository" }, { "action": "repo.remove_member", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A collaborator was removed from a repository.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-access-to-your-personal-repositories/removing-a-collaborator-from-a-personal-repository" }, { "action": "repo.remove_self_hosted_runner", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A self-hosted runner was removed.", + "docs_reference_links": "/actions/hosting-your-own-runners/managing-self-hosted-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository" }, { "action": "repo.remove_topic", - "description": "N/A", + "description": "A topic was removed from a repository.", "docs_reference_links": "N/A" }, { "action": "repo.rename", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was renamed.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/renaming-a-repository" }, { "action": "repo.restore", @@ -421,67 +421,67 @@ }, { "action": "repo.set_actions_retention_limit", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "The retention period for GitHub Actions artifacts and logs in a repository was changed.", + "docs_reference_links": "/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository" }, { "action": "repo.staff_unlock", - "description": "N/A", + "description": "An enterprise owner or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository.", "docs_reference_links": "N/A" }, { "action": "repo.transfer", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user accepted a request to receive a transferred repository.", + "docs_reference_links": "/repositories/creating-and-managing-repositories/transferring-a-repository" }, { "action": "repo.transfer_outgoing", - "description": "N/A", + "description": "A repository was transferred to another repository network.", "docs_reference_links": "N/A" }, { "action": "repo.transfer_start", - "description": "N/A", + "description": "A user sent a request to transfer a repository to another user or organization.", "docs_reference_links": "N/A" }, { "action": "repo.unarchived", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A repository was unarchived.", + "docs_reference_links": "/repositories/archiving-a-github-repository" }, { "action": "repo.update_actions_access_settings", - "description": "N/A", + "description": "The setting to control how a repository was used by GitHub Actions workflows in other repositories was changed.", "docs_reference_links": "N/A" }, { "action": "repo.update_actions_settings", - "description": "N/A", + "description": "A repository administrator changed GitHub Actions policy settings for a repository.", "docs_reference_links": "N/A" }, { "action": "repo.update_member", - "description": "N/A", + "description": "A user's permission to a repository was changed.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.accept", - "description": "N/A", + "description": "An invitation to join a repository was accepted.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.cancel", - "description": "N/A", + "description": "An invitation to join a repository was canceled.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.create", - "description": "N/A", + "description": "An invitation to join a repository was sent.", "docs_reference_links": "N/A" }, { "action": "repository_invitation.reject", - "description": "N/A", + "description": "An invitation to join a repository was declined.", "docs_reference_links": "N/A" }, { @@ -501,12 +501,12 @@ }, { "action": "security_key.register", - "description": "N/A", + "description": "A security key was registered for an account.", "docs_reference_links": "N/A" }, { "action": "security_key.remove", - "description": "N/A", + "description": "A security key was removed from an account.", "docs_reference_links": "N/A" }, { @@ -516,22 +516,22 @@ }, { "action": "two_factor_authentication.disabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication was disabled for a user account.", + "docs_reference_links": "https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/disabling-two-factor-authentication-for-your-personal-account" }, { "action": "two_factor_authentication.enabled", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "Two-factor authentication was enabled for a user account.", + "docs_reference_links": "https://docs.github.com/en/authentication/securing-your-account-with-two-factor-authentication-2fa/configuring-two-factor-authentication" }, { "action": "two_factor_authentication.password_reset_fallback_sms", - "description": "N/A", + "description": "A one-time password code was sent to a user account fallback phone number.", "docs_reference_links": "N/A" }, { "action": "two_factor_authentication.recovery_codes_regenerated", - "description": "N/A", + "description": "Two factor recovery codes were regenerated for a user account.", "docs_reference_links": "N/A" }, { @@ -541,62 +541,62 @@ }, { "action": "two_factor_authentication.sign_in_fallback_sms", - "description": "N/A", + "description": "A one-time password code was sent to a user account fallback phone number.", "docs_reference_links": "N/A" }, { "action": "two_factor_authentication.update_fallback", - "description": "N/A", + "description": "The two-factor authentication fallback for a user account was changed.", "docs_reference_links": "N/A" }, { "action": "user.add_email", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "An email address was added to a user account.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/adding-an-email-address-to-your-github-account" }, { "action": "user.async_delete", - "description": "N/A", + "description": "An asynchronous job was started to destroy a user account, eventually triggering a user.delete event.", "docs_reference_links": "N/A" }, { "action": "user.audit_log_export", - "description": "N/A", + "description": "Audit log entries were exported.", "docs_reference_links": "N/A" }, { "action": "user.block_user", - "description": "N/A", + "description": "A user was blocked by another user.", "docs_reference_links": "N/A" }, { "action": "user.change_password", - "description": "N/A", + "description": "A user changed their password.", "docs_reference_links": "N/A" }, { "action": "user.create", - "description": "N/A", + "description": "A new user account was created.", "docs_reference_links": "N/A" }, { "action": "user.creation_rate_limit_exceeded", - "description": "N/A", + "description": "The rate of creation of user accounts, applications, issues, pull requests or other resources exceeded the configured rate limits, or too many users were followed too quickly.", "docs_reference_links": "N/A" }, { "action": "user.delete", - "description": "N/A", + "description": "A user account was destroyed by an asynchronous job.", "docs_reference_links": "N/A" }, { "action": "user.demote", - "description": "N/A", + "description": "A site administrator was demoted to an ordinary user account.", "docs_reference_links": "N/A" }, { "action": "user.destroy", - "description": "N/A", + "description": "A user deleted his or her account, triggering user.async_delete.", "docs_reference_links": "N/A" }, { @@ -616,13 +616,13 @@ }, { "action": "user.failed_login", - "description": "N/A", + "description": "A user tried to sign in with an incorrect username, password, or two-factor authentication code.", "docs_reference_links": "N/A" }, { "action": "user.forgot_password", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user requested a password reset.", + "docs_reference_links": "/authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials" }, { "action": "user.grant_github_developer", @@ -631,12 +631,12 @@ }, { "action": "user.hide_private_contributions_count", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now hidden.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-settings-on-your-profile/showing-your-private-contributions-and-achievements-on-your-profile" }, { "action": "user.login", - "description": "N/A", + "description": "A user signed in.", "docs_reference_links": "N/A" }, { @@ -646,47 +646,47 @@ }, { "action": "user.promote", - "description": "N/A", + "description": "An ordinary user account was promoted to a site administrator.", "docs_reference_links": "N/A" }, { "action": "user.recreate", - "description": "N/A", + "description": "A user's account was restored.", "docs_reference_links": "N/A" }, { "action": "user.remove_email", - "description": "N/A", + "description": "An email address was removed from a user account.", "docs_reference_links": "N/A" }, { "action": "user.rename", - "description": "N/A", + "description": "A username was changed.", "docs_reference_links": "N/A" }, { "action": "user.reset_password", - "description": "N/A", + "description": "A user reset their account password.", "docs_reference_links": "N/A" }, { "action": "user.show_private_contributions_count", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now shown.", + "docs_reference_links": "/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-settings-on-your-profile/showing-your-private-contributions-and-achievements-on-your-profile" }, { "action": "user.sign_in_from_unrecognized_device", - "description": "N/A", + "description": "A user signed in from an unrecognized device.", "docs_reference_links": "N/A" }, { "action": "user.sign_in_from_unrecognized_device_and_location", - "description": "N/A", + "description": "A user signed in from an unrecognized device and location.", "docs_reference_links": "N/A" }, { "action": "user.suspend", - "description": "N/A", + "description": "A user account was suspended.", "docs_reference_links": "N/A" }, { @@ -696,53 +696,53 @@ }, { "action": "user.two_factor_challenge_failure", - "description": "N/A", + "description": "A 2FA challenge issued for a user account failed.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_challenge_success", - "description": "N/A", + "description": "A 2FA challenge issued for a user account succeeded.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recover", - "description": "N/A", + "description": "A user used their 2FA recovery codes.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_downloaded", - "description": "N/A", + "description": "A user downloaded 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_printed", - "description": "N/A", + "description": "A user printed 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_recovery_codes_viewed", - "description": "N/A", + "description": "A user viewed 2FA recovery codes for their account.", "docs_reference_links": "N/A" }, { "action": "user.two_factor_requested", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A user was prompted for a two-factor authentication code.", + "docs_reference_links": "/authentication/securing-your-account-with-two-factor-authentication-2fa/accessing-github-using-two-factor-authentication" }, { "action": "user.unblock_user", - "description": "N/A", + "description": "A user was unblocked by another user.", "docs_reference_links": "N/A" }, { "action": "user.unsuspend", - "description": "N/A", + "description": "A user account was unsuspended.", "docs_reference_links": "N/A" }, { "action": "workflows.approve_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was approved.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" }, { "action": "workflows.bypass_protection_rules", @@ -756,22 +756,22 @@ }, { "action": "workflows.delete_workflow_run", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow run was deleted.", + "docs_reference_links": "/actions/managing-workflow-runs/deleting-a-workflow-run" }, { "action": "workflows.disable_workflow", - "description": "N/A", + "description": "A workflow was disabled.", "docs_reference_links": "N/A" }, { "action": "workflows.enable_workflow", - "description": "N/A", + "description": "A workflow was enabled, after previously being disabled by disable_workflow.", "docs_reference_links": "N/A" }, { "action": "workflows.reject_workflow_job", - "description": "N/A", - "docs_reference_links": "N/A" + "description": "A workflow job was rejected.", + "docs_reference_links": "/actions/managing-workflow-runs/reviewing-deployments" } ] \ No newline at end of file diff --git a/src/audit-logs/lib/config.json b/src/audit-logs/lib/config.json index 603ab5b2ad..693d7e35fc 100644 --- a/src/audit-logs/lib/config.json +++ b/src/audit-logs/lib/config.json @@ -1,3 +1,3 @@ { - "sha": "84fb72135b013a72ec2fc0b22383ac6280ad931b" + "sha": "5e89c323e6faeb51983c291889ae7a753c034f65" } \ No newline at end of file diff --git a/src/color-schemes/README.md b/src/color-schemes/README.md index 65312d29dd..11824222f5 100644 --- a/src/color-schemes/README.md +++ b/src/color-schemes/README.md @@ -1,19 +1,5 @@ -# COLOR-SCHEMES +# Color schemes -TBD what is COLOR-SCHEMES +Color schemes are user preferences regarding which type of colors they would like the site to use. Currently we support a number of mode, including light, dark, and several accessibility options. -## What COLOR-SCHEMES does - -TBD why is COLOR-SCHEMES on the docs - -## How COLOR-SCHEMES works - -TBD step-by-step instructions to work on COLOR-SCHEMES - -## How to work on COLOR-SCHEMES - -TBD step-by-step instructions on how to work on COLOR-SCHEMES - -## How to get help for COLOR-SCHEMES - -TBD reference material +We chose the name "schemes" instead of modes or themes because that is what the HTML specification calls them. diff --git a/src/content-render/liquid/data.js b/src/content-render/liquid/data.js index dd21406524..423fda731b 100644 --- a/src/content-render/liquid/data.js +++ b/src/content-render/liquid/data.js @@ -29,7 +29,19 @@ export default { return } - if (text.trim().split('\n\n').length === 1 && text.split('\n').length > 0) { + // Any time what we're about to replace in here has more than one line, + // if the use of `{% data ... %}` was itself indented, from the left, + // keep *that* indentation, in replaced output, for every line. + // + // For example: + // + // 1. Bullet point + // {% data variables.foo.bar %} + // + // In this example, the `{% data ...` starts with 3 whitespaces + // (based on the `1. Bull...` in the example). So put 3 whitespaces + // in front every line of the output. + if (text.split('\n').length > 0) { const { input, begin } = this.tagToken let i = 1 while (input.charAt(begin - i) === ' ') { diff --git a/src/content-render/tests/render-changed-and-deleted-files.js b/src/content-render/tests/render-changed-and-deleted-files.js new file mode 100644 index 0000000000..fd7d45e5dc --- /dev/null +++ b/src/content-render/tests/render-changed-and-deleted-files.js @@ -0,0 +1,123 @@ +/** + * To "debug" this test locally, you need to set at least one of these + * environment variables: + * + * - CHANGED_FILES + * - DELETED_FILES + * + * They both need to a whitespace-separated list of paths to content files. + * For example: + * + * export CHANGED_FILES="content/get-started/index.md content/get-started/quickstart/hello-world.md" + * + * If any of the paths in there, split by ' ', don't match real files, the + * test will fail before it even starts. Meaning, it will throw an error + * rather than failing an `expect(...)` assertion. + * + * Technically, the value is any whitespace. So you can actually use: + * + * export DELETED_FILES=`git diff --name-only main...` + * + * which will make the environment variable be newline-separated and that + * works too. + * + * So, for example, if you've made some deletions and some edits the + * staged files: + * + * export DELETED_FILES=`git diff --name-only --diff-filter=D main...` + * export CHANGED_FILES=`git diff --name-only --diff-filter=M main...` + * npm run test -- src/content-render/tests/render-changed-and-deleted-files.js + */ + +import path from 'path' + +import { head, get } from '../../../tests/helpers/e2etest.js' +import { loadPages } from '../../../lib/page-data.js' + +const EMPTY = Symbol('EMPTY') + +const pageList = await loadPages(undefined, ['en']) + +function getChangedContentFiles() { + return getContentFiles(process.env.CHANGED_FILES) +} +function getDeletedContentFiles() { + return getContentFiles(process.env.DELETED_FILES) +} + +function getContentFiles(spaceSeparatedList) { + return (spaceSeparatedList || '').split(/\s+/g).filter((filePath) => { + // This filters out things like '', or `data/foo.md` or `content/something/README.md` + return ( + filePath.endsWith('.md') && + filePath.split(path.sep)[0] === 'content' && + path.basename(filePath) !== 'README.md' + ) + }) +} + +describe('changed-content', () => { + const changedContentFiles = getChangedContentFiles() + + // `jest.each` will throw if the array is empty, so we need to add a dummy + // when there are no changed files in the environment. + if (!changedContentFiles.length) changedContentFiles.push(EMPTY) + + test.each(changedContentFiles)('changed-content: %s', async (file) => { + // Necessary because `jest.each` will throw if the array is empty + if (file === EMPTY) return + + const page = pageList.find((p) => { + return path.join(p.basePath, p.relativePath) === file + }) + if (!page) { + throw new Error(`Could not find page for ${file} in all loaded English content`) + } + // Each version of the page should successfully render + for (const { href } of page.permalinks) { + const res = await get(href) + if (!res.ok) { + let msg = `This error happened when rendering from: ${file}\n` + msg += + 'To see the full error from jest re-run the test with DEBUG_MIDDLEWARE_TESTS=true set\n' + msg += `Or, to view it locally start the server (npm run dev) and visit http://localhost:4000${href}` + console.log(msg) + throw new Error(`Rendering ${href} failed with status ${res.statusCode}`) + } + } + }) +}) + +describe('deleted-content', () => { + const deletedContentFiles = getDeletedContentFiles() + + // `jest.each` will throw if the array is empty, so we need to add a dummy + // when there are no deleted files in the environment. + if (!deletedContentFiles.length) deletedContentFiles.push(EMPTY) + + test.each(deletedContentFiles)('deleted-content: %s', async (file) => { + // Necessary because `jest.each` will throw if the array is empty + if (file === EMPTY) return + + const page = pageList.find((p) => { + return path.join(p.basePath, p.relativePath) === file + }) + if (page) { + throw new Error(`The supposedly deleted file ${file} is still in list of loaded pages`) + } + // You can't know what the possible permalinks were for a deleted page, + // because it's deleted so we can't look at its `versions` front matter. + // However, we always make sure all pages work in versionless. + const indexmdSuffixRegex = new RegExp(`${path.sep}index\\.md$`) + const mdSuffixRegex = /\.md$/ + const relativePath = file.split(path.sep).slice(1).join(path.sep) + const href = `/en/${relativePath.replace(indexmdSuffixRegex, '').replace(mdSuffixRegex, '')}` + + const res = await head(href) + const error = + res.statusCode === 404 + ? `The deleted file ${file} did not set up a redirect when deleted.` + : '' + expect(res.statusCode, error).toBe(301) + }) +}) diff --git a/src/frame/README.md b/src/frame/README.md new file mode 100644 index 0000000000..a8d5302ace --- /dev/null +++ b/src/frame/README.md @@ -0,0 +1,5 @@ +# Frame + +This is the outlining directory that makes the site work, the spine of the site. + +The preference would be to put these files into a more specific subject folder when possible. diff --git a/src/github-apps/lib/config.json b/src/github-apps/lib/config.json index 64a8de785d..64809e893f 100644 --- a/src/github-apps/lib/config.json +++ b/src/github-apps/lib/config.json @@ -60,5 +60,5 @@ "2022-11-28" ] }, - "sha": "75ade23f4b33a6efb37297ac3073a00294a0d5b8" + "sha": "1cf9ab0b036fad100084d7be1d472b04133d1954" } \ No newline at end of file diff --git a/src/languages/README.md b/src/languages/README.md index bfbf1610b9..d03d5a0ab5 100644 --- a/src/languages/README.md +++ b/src/languages/README.md @@ -1,19 +1,7 @@ -# LANGUAGES +# Languages -TBD what is LANGUAGES +Languages refers to the different translations we support on docs.github.com. Currently, our supported languages include Chinese, Spanish, Portuguese, Russian, Japanese, French, German, and Korean. -## What LANGUAGES does +A Microsoft department runs our translations for us and updates private language specific repositories, such as `github/docs-internal.de-de`. -TBD why is LANGUAGES on the docs - -## How LANGUAGES works - -TBD step-by-step instructions to work on LANGUAGES - -## How to work on LANGUAGES - -TBD step-by-step instructions on how to work on LANGUAGES - -## How to get help for LANGUAGES - -TBD reference material +GitHub does not have direct control over translated content. For Hubbers and Microsoft employees, issues must be filled under . diff --git a/src/learning-track/README.md b/src/learning-track/README.md index e69de29bb2..b0853c0192 100644 --- a/src/learning-track/README.md +++ b/src/learning-track/README.md @@ -0,0 +1,3 @@ +# Learning track + +Learning tracks display on guides pages. Learning tracks are a list of related articles that learners can go through sequentially. diff --git a/src/links/README.md b/src/links/README.md index aa410a2a6f..1777c6799a 100644 --- a/src/links/README.md +++ b/src/links/README.md @@ -1,19 +1,3 @@ -# LINKS +# Links -TBD what is LINKS - -## What LINKS does - -TBD why is LINKS on the docs - -## How LINKS works - -TBD step-by-step instructions to work on LINKS - -## How to work on LINKS - -TBD step-by-step instructions on how to work on LINKS - -## How to get help for LINKS - -TBD reference material +This subject folder contains files that support link features on docs.github.com, such as hover card, auto generated links, and updating links for different versions and languages. diff --git a/src/open-source/README.md b/src/open-source/README.md new file mode 100644 index 0000000000..8c39d7d32c --- /dev/null +++ b/src/open-source/README.md @@ -0,0 +1,3 @@ +# Open source + +The open source subject folder contains files that relate to the github/docs repository, so that we can support open source contributors to docs.github.com. diff --git a/script/bookmarklets/add-pr-links.js b/src/open-source/scripts/add-pr-links.js similarity index 100% rename from script/bookmarklets/add-pr-links.js rename to src/open-source/scripts/add-pr-links.js diff --git a/script/actions/find-unicorn-action-shas.js b/src/open-source/scripts/find-unicorn-action-shas.js similarity index 100% rename from script/actions/find-unicorn-action-shas.js rename to src/open-source/scripts/find-unicorn-action-shas.js diff --git a/src/open-source/scripts/pr-link-source.js b/src/open-source/scripts/pr-link-source.js new file mode 100644 index 0000000000..7c85dc28c4 --- /dev/null +++ b/src/open-source/scripts/pr-link-source.js @@ -0,0 +1,92 @@ +!(async function () { + const regexp = /https:\/\/github.com\/github\/([^\/]*)\/pull\/\d*\/files/ + + if (!window.location.href.match(regexp)) { + window.alert("You're not on a PR 'Files changed' page. 🙃") + return + } + + let conversation_url = window.location.href.replace(/files.*/g, '') + + // get the preview deployment URL by loading the 'Conversation' page, and searching for the 'View deployment' link + let deployment_url = await fetch(conversation_url) + .then(function (response) { + return response.text() + }) + .then(function (html) { + // Convert the HTML string into a document object + var parser = new DOMParser() + var doc = parser.parseFromString(html, 'text/html') + + var elements = doc.getElementsByClassName('TimelineItem') + // Find the element that is a link that contains the text "View deployment" + for (var i = 0; i < elements.length; i++) { + var element = elements[i] + var links = element.getElementsByTagName('a') + for (var j = 0; j < links.length; j++) { + var link = links[j] + if (link.innerText.match(/View deployment/)) { + // Get the href of the link + var deployment_url = link.getAttribute('href') + } + } + } + // This should return the last link that contains the text "View deployment" (there might be multiple ones if there are multiple deployments) + return deployment_url + }) + if (deployment_url == null) { + window.alert('No preview deployment found! 😭') + return + } + // strip any trailing slash from deployment_url + deployment_url = deployment_url.replace(/\/$/, '') + + var url_fpt = deployment_url + '/en' + var url_ghec = deployment_url + '/en/enterprise-cloud@latest' + var url_ghes = deployment_url + '/en/enterprise-server@latest' + var url_ae = deployment_url + '/en/github-ae@latest' + var fpt = 'FPT' + var ghes = 'GHES' + var ghec = 'GHEC' + var ae = 'AE' + + const file_info = document.querySelectorAll('div.file-info') + for (var i = 0; i < file_info.length; i++) { + var link = file_info[i].querySelector('a').title + if (link.search('data/') === 0) { + continue + } else { + var regex = /\.md$/ + var markdownfile = link.search(regex) >= 0 + if (markdownfile) { + console.log('link: ' + link) + link = link.replace(regex, '') + link = link.replace(/^content/, '') + link = link.replace(/\/index/, '') + var span = document.createElement('SPAN') + span.style.fontFamily = + '-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif' + span.innerHTML = '  View: ' + + span = addLink(span, fpt, url_fpt + link) + span.innerHTML += ' / ' + span = addLink(span, ghec, url_ghec + link) + span.innerHTML += ' / ' + span = addLink(span, ghes, url_ghes + link) + span.innerHTML += ' / ' + span = addLink(span, ae, url_ae + link) + + file_info[i].appendChild(span) + } + } + } + + function addLink(span, link_name, link_href) { + var anchor = document.createElement('A') + anchor.innerHTML = link_name + anchor.href = link_href + anchor.target = '_blank' + span.appendChild(anchor) + return span + } +})() diff --git a/src/release-notes/README.md b/src/release-notes/README.md index e69de29bb2..f031fc705b 100644 --- a/src/release-notes/README.md +++ b/src/release-notes/README.md @@ -0,0 +1,3 @@ +# Release notes + +Our release notes pages are specific to GitHub Enterprise Server (GHES). These pages list the change contained in each version of GHES. diff --git a/src/rest/data/fpt-2022-11-28/schema.json b/src/rest/data/fpt-2022-11-28/schema.json index fcf5f3289d..4c075c0b87 100644 --- a/src/rest/data/fpt-2022-11-28/schema.json +++ b/src/rest/data/fpt-2022-11-28/schema.json @@ -88158,7 +88158,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -88472,7 +88472,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -89114,7 +89114,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -89425,7 +89425,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -94264,7 +94264,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -94574,7 +94574,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -95221,7 +95221,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -95531,7 +95531,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -96176,7 +96176,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -96486,7 +96486,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -98843,7 +98843,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -98893,7 +98893,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -99218,7 +99218,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -231715,7 +231715,39 @@ } } }, - "example": "../../components/examples/deployment_protection_rules.yaml" + "example": { + "value": [ + { + "total_count": 2 + }, + { + "custom_deployment_protection_rules": [ + { + "id": 3, + "node_id": "IEH37kRlcGxveW1lbnRTdGF0ddiv", + "enabled": true, + "app": { + "id": 1, + "node_id": "GHT58kRlcGxveW1lbnRTdTY!bbcy", + "slug": "a-custom-app", + "integration_url": "https://api.github.com/apps/a-custom-app" + } + }, + { + "id": 4, + "node_id": "MDE2OkRlcGxveW1lbnRTdHJ41128", + "enabled": true, + "app": { + "id": 1, + "node_id": "UHVE67RlcGxveW1lbnRTdTY!jfeuy", + "slug": "another-custom-app", + "integration_url": "https://api.github.com/apps/another-custom-app" + } + } + ] + } + ] + } } } } @@ -233125,12 +233157,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -350350,7 +350377,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/data/ghae/schema.json b/src/rest/data/ghae/schema.json index 30586e0af0..60f40c5d43 100644 --- a/src/rest/data/ghae/schema.json +++ b/src/rest/data/ghae/schema.json @@ -60287,7 +60287,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -60601,7 +60601,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -61227,7 +61227,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -61538,7 +61538,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -64966,7 +64966,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -65276,7 +65276,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -65907,7 +65907,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -66217,7 +66217,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -66846,7 +66846,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -67156,7 +67156,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -69412,7 +69412,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -69462,7 +69462,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -69787,7 +69787,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -144218,12 +144218,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -260681,7 +260676,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/data/ghec-2022-11-28/schema.json b/src/rest/data/ghec-2022-11-28/schema.json index 2136fe1fb8..874815621e 100644 --- a/src/rest/data/ghec-2022-11-28/schema.json +++ b/src/rest/data/ghec-2022-11-28/schema.json @@ -98298,7 +98298,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -98612,7 +98612,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -99254,7 +99254,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -99565,7 +99565,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -104404,7 +104404,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -104714,7 +104714,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -105361,7 +105361,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -105671,7 +105671,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -106316,7 +106316,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -106626,7 +106626,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -108983,7 +108983,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -109033,7 +109033,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -109358,7 +109358,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -243424,7 +243424,39 @@ } } }, - "example": "../../components/examples/deployment_protection_rules.yaml" + "example": { + "value": [ + { + "total_count": 2 + }, + { + "custom_deployment_protection_rules": [ + { + "id": 3, + "node_id": "IEH37kRlcGxveW1lbnRTdGF0ddiv", + "enabled": true, + "app": { + "id": 1, + "node_id": "GHT58kRlcGxveW1lbnRTdTY!bbcy", + "slug": "a-custom-app", + "integration_url": "https://api.github.com/apps/a-custom-app" + } + }, + { + "id": 4, + "node_id": "MDE2OkRlcGxveW1lbnRTdHJ41128", + "enabled": true, + "app": { + "id": 1, + "node_id": "UHVE67RlcGxveW1lbnRTdTY!jfeuy", + "slug": "another-custom-app", + "integration_url": "https://api.github.com/apps/another-custom-app" + } + } + ] + } + ] + } } } } @@ -244834,12 +244866,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -249818,7 +249845,7 @@ "org2" ], "github_com_two_factor_auth": true, - "enterprise_server_primary_emails": [ + "enterprise_server_emails": [ "monalisa@github.com" ], "visual_studio_license_status": "", @@ -369745,7 +369772,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/data/ghes-3.10-2022-11-28/schema.json b/src/rest/data/ghes-3.10-2022-11-28/schema.json index 8a847f2e31..2ccfaded2f 100644 --- a/src/rest/data/ghes-3.10-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.10-2022-11-28/schema.json @@ -97811,7 +97811,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -98125,7 +98125,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -98767,7 +98767,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -99078,7 +99078,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -103917,7 +103917,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -104227,7 +104227,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -104874,7 +104874,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -105184,7 +105184,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -105829,7 +105829,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -106139,7 +106139,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -108496,7 +108496,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -108546,7 +108546,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -108871,7 +108871,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -196599,7 +196599,39 @@ } } }, - "example": "../../components/examples/deployment_protection_rules.yaml" + "example": { + "value": [ + { + "total_count": 2 + }, + { + "custom_deployment_protection_rules": [ + { + "id": 3, + "node_id": "IEH37kRlcGxveW1lbnRTdGF0ddiv", + "enabled": true, + "app": { + "id": 1, + "node_id": "GHT58kRlcGxveW1lbnRTdTY!bbcy", + "slug": "a-custom-app", + "integration_url": "https://api.github.com/apps/a-custom-app" + } + }, + { + "id": 4, + "node_id": "MDE2OkRlcGxveW1lbnRTdHJ41128", + "enabled": true, + "app": { + "id": 1, + "node_id": "UHVE67RlcGxveW1lbnRTdTY!jfeuy", + "slug": "another-custom-app", + "integration_url": "https://api.github.com/apps/another-custom-app" + } + } + ] + } + ] + } } } } @@ -198009,12 +198041,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -334312,7 +334339,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/data/ghes-3.6/schema.json b/src/rest/data/ghes-3.6/schema.json index dc50c2cb58..fe43d58135 100644 --- a/src/rest/data/ghes-3.6/schema.json +++ b/src/rest/data/ghes-3.6/schema.json @@ -91819,7 +91819,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -92133,7 +92133,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -92759,7 +92759,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -93070,7 +93070,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -97817,7 +97817,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -98127,7 +98127,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -98758,7 +98758,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -99068,7 +99068,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -99697,7 +99697,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -100007,7 +100007,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -102340,7 +102340,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -102390,7 +102390,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -102715,7 +102715,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -181085,12 +181085,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -315535,7 +315530,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/data/ghes-3.7/schema.json b/src/rest/data/ghes-3.7/schema.json index efe5f917d5..84a8f2beae 100644 --- a/src/rest/data/ghes-3.7/schema.json +++ b/src/rest/data/ghes-3.7/schema.json @@ -92766,7 +92766,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -93080,7 +93080,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -93706,7 +93706,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -94017,7 +94017,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -98772,7 +98772,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -99082,7 +99082,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -99713,7 +99713,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -100023,7 +100023,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -100652,7 +100652,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -100962,7 +100962,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -103303,7 +103303,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -103353,7 +103353,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -103678,7 +103678,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -183894,12 +183894,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -318638,7 +318633,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/data/ghes-3.8/schema.json b/src/rest/data/ghes-3.8/schema.json index 12dea9a55b..74d64e77cb 100644 --- a/src/rest/data/ghes-3.8/schema.json +++ b/src/rest/data/ghes-3.8/schema.json @@ -95797,7 +95797,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -96111,7 +96111,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -96745,7 +96745,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -97056,7 +97056,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -101853,7 +101853,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -102163,7 +102163,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -102802,7 +102802,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -103112,7 +103112,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -103749,7 +103749,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -104059,7 +104059,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -106408,7 +106408,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -106458,7 +106458,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -106783,7 +106783,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -193680,12 +193680,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -328790,7 +328785,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/data/ghes-3.9-2022-11-28/schema.json b/src/rest/data/ghes-3.9-2022-11-28/schema.json index e5092ebb78..bcfa56eeb0 100644 --- a/src/rest/data/ghes-3.9-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.9-2022-11-28/schema.json @@ -96829,7 +96829,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -97143,7 +97143,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -97785,7 +97785,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -98096,7 +98096,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -102935,7 +102935,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -103245,7 +103245,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -103892,7 +103892,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -104202,7 +104202,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -104847,7 +104847,7 @@ "site_admin": false }, "repository_selection": "all", - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -105157,7 +105157,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -107514,7 +107514,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -107564,7 +107564,7 @@ "type": "User", "site_admin": false }, - "access_tokens_url": "https://api.github.com/installations/1/access_tokens", + "access_tokens_url": "https://api.github.com/app/installations/1/access_tokens", "repositories_url": "https://api.github.com/installation/repositories", "html_url": "https://github.com/organizations/github/settings/installations/1", "app_id": 1, @@ -107889,7 +107889,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { @@ -195865,12 +195865,7 @@ "type": "string", "name": "environment", "in": "body", - "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa.

", - "enum": [ - "production", - "staging", - "qa" - ] + "description": "

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. If not defined, the environment of the previous status on the deployment will be used, if it exists. Otherwise, the environment of the deployment will be used.

" }, { "type": "string", @@ -331711,7 +331706,7 @@ "type": "string", "format": "uri", "examples": [ - "https://api.github.com/installations/1/access_tokens" + "https://api.github.com/app/installations/1/access_tokens" ] }, "repositories_url": { diff --git a/src/rest/lib/config.json b/src/rest/lib/config.json index 78e66ec44c..b7dc472902 100644 --- a/src/rest/lib/config.json +++ b/src/rest/lib/config.json @@ -36,5 +36,5 @@ ] } }, - "sha": "75ade23f4b33a6efb37297ac3073a00294a0d5b8" + "sha": "1cf9ab0b036fad100084d7be1d472b04133d1954" } \ No newline at end of file diff --git a/src/secret-scanning/README.md b/src/secret-scanning/README.md new file mode 100644 index 0000000000..c35a910cc5 --- /dev/null +++ b/src/secret-scanning/README.md @@ -0,0 +1,3 @@ +# Secret scanning + +The files in the secret scanning folder support our secret scanning informational pages. diff --git a/src/webhooks/data/fpt/schema.json b/src/webhooks/data/fpt/schema.json index 6a3f5d983a..956b987968 100644 --- a/src/webhooks/data/fpt/schema.json +++ b/src/webhooks/data/fpt/schema.json @@ -26,21 +26,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -48,7 +48,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87,21 +87,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -109,7 +109,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -150,21 +150,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -380,7 +380,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -419,21 +419,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -649,7 +649,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -797,21 +797,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -1027,7 +1027,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -3128,21 +3128,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -3150,7 +3150,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -5249,21 +5249,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -5271,7 +5271,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -7371,21 +7371,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -7406,7 +7406,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9505,21 +9505,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -9527,7 +9527,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9544,7 +9544,7 @@ "check_suite": { "completed": { "descriptionHtml": "

All check runs in a check suite have completed, and a conclusion is available.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10405,21 +10405,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10427,7 +10427,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10442,7 +10442,7 @@ }, "requested": { "descriptionHtml": "

Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see the GraphQL API documentation for creating a check run or \"Create a check run\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -11301,21 +11301,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -11323,7 +11323,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -11338,7 +11338,7 @@ }, "rerequested": { "descriptionHtml": "

Someone requested to re-run the check runs in a check suite. For more information, see the GraphQL API documentation for creating a check suite or \"Create a check suite\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -12196,21 +12196,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12218,7 +12218,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12596,14 +12596,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12617,7 +12617,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12625,7 +12625,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13030,14 +13030,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13051,7 +13051,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13059,7 +13059,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13364,14 +13364,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13385,7 +13385,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13393,7 +13393,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13802,14 +13802,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13823,7 +13823,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13831,7 +13831,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14117,14 +14117,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14138,7 +14138,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14146,7 +14146,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14401,14 +14401,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14422,7 +14422,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14430,7 +14430,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14749,21 +14749,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14771,7 +14771,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14808,7 +14808,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -14822,7 +14822,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14854,7 +14854,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14862,7 +14862,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14892,14 +14892,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14931,7 +14931,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14939,7 +14939,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15494,14 +15494,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15515,7 +15515,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15523,7 +15523,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16076,14 +16076,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16097,7 +16097,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16105,7 +16105,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16658,14 +16658,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16679,7 +16679,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16687,7 +16687,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17240,14 +17240,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17261,7 +17261,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17269,7 +17269,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17822,14 +17822,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17843,7 +17843,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17851,7 +17851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18404,14 +18404,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -18425,7 +18425,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18433,7 +18433,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18986,14 +18986,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -19007,7 +19007,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19015,7 +19015,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -19056,7 +19056,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -19124,14 +19124,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19139,7 +19139,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -19178,7 +19178,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -19246,14 +19246,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19261,7 +19261,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -20032,21 +20032,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -20054,7 +20054,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -25075,28 +25075,28 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -25238,14 +25238,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -25253,7 +25253,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -25396,7 +25396,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -26880,14 +26880,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -26895,7 +26895,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -27038,7 +27038,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -28424,14 +28424,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -28439,7 +28439,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -28704,7 +28704,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -31579,21 +31579,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -31601,7 +31601,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -33728,21 +33728,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -33750,7 +33750,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34387,21 +34387,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34409,7 +34409,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34962,21 +34962,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34984,7 +34984,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -35513,21 +35513,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -35535,7 +35535,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36088,21 +36088,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36110,7 +36110,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36697,21 +36697,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36719,7 +36719,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37272,7 +37272,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -37330,14 +37330,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37345,7 +37345,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37898,21 +37898,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37920,7 +37920,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -38473,21 +38473,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -38495,7 +38495,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -39048,21 +39048,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -39070,7 +39070,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -39621,7 +39621,7 @@ { "type": "object", "name": "new_repository", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [ { @@ -41647,21 +41647,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41669,7 +41669,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42487,14 +42487,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -42502,7 +42502,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -43054,7 +43054,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -43112,14 +43112,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -43127,7 +43127,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43680,21 +43680,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -43702,7 +43702,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -44255,21 +44255,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -44277,7 +44277,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -45105,21 +45105,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45127,7 +45127,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -45953,21 +45953,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45975,7 +45975,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46824,21 +46824,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -46846,7 +46846,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47600,21 +47600,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -47622,7 +47622,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47664,28 +47664,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47713,14 +47713,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47776,7 +47776,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -47784,7 +47784,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47833,7 +47833,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47878,7 +47878,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48005,7 +48005,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48050,7 +48050,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48095,7 +48095,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48108,7 +48108,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48153,7 +48153,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48198,7 +48198,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48211,7 +48211,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48256,7 +48256,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48301,7 +48301,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48314,7 +48314,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48359,7 +48359,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48404,7 +48404,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48417,7 +48417,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48464,7 +48464,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48544,7 +48544,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48683,7 +48683,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48728,7 +48728,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48813,7 +48813,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48952,7 +48952,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -49219,7 +49219,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -49227,21 +49227,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -49803,7 +49803,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -50595,14 +50595,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -50610,7 +50610,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -51167,7 +51167,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -51959,14 +51959,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -51974,7 +51974,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -52553,7 +52553,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -53345,14 +53345,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -53360,7 +53360,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -53521,7 +53521,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54812,14 +54812,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54827,7 +54827,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54866,7 +54866,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -55496,14 +55496,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -55511,7 +55511,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -55550,7 +55550,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -56837,14 +56837,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -56852,7 +56852,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -56891,7 +56891,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -57739,14 +57739,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -57754,7 +57754,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -57828,7 +57828,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -59169,14 +59169,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -59184,7 +59184,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59223,7 +59223,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60564,14 +60564,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -60579,7 +60579,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -60618,7 +60618,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -61245,14 +61245,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -61260,7 +61260,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -61299,7 +61299,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -62147,14 +62147,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -62162,7 +62162,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -64206,7 +64206,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -65495,14 +65495,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -65510,7 +65510,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -65549,7 +65549,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -66836,14 +66836,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -66851,7 +66851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -66890,7 +66890,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -67520,14 +67520,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -67535,7 +67535,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69592,7 +69592,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70879,14 +70879,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70894,7 +70894,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71054,7 +71054,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72345,14 +72345,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72360,7 +72360,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72399,7 +72399,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73740,14 +73740,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -73755,7 +73755,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73794,7 +73794,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74421,14 +74421,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74436,7 +74436,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74475,7 +74475,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75762,14 +75762,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75777,7 +75777,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75818,7 +75818,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75876,14 +75876,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75891,7 +75891,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -75929,7 +75929,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75987,14 +75987,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76002,7 +76002,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76088,7 +76088,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76146,14 +76146,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76161,7 +76161,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76209,7 +76209,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76360,7 +76360,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76509,14 +76509,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76560,7 +76560,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76711,7 +76711,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76860,14 +76860,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76911,7 +76911,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77062,7 +77062,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77211,14 +77211,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77262,7 +77262,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77413,7 +77413,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77562,14 +77562,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77613,7 +77613,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77764,7 +77764,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77913,14 +77913,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77985,7 +77985,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78113,14 +78113,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -78128,7 +78128,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78207,7 +78207,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78335,14 +78335,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -78350,7 +78350,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78390,7 +78390,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78518,14 +78518,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -78533,7 +78533,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78575,7 +78575,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78703,7 +78703,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78711,7 +78711,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -78940,7 +78940,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79068,7 +79068,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -79076,7 +79076,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -79301,7 +79301,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79413,21 +79413,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79467,7 +79467,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79579,21 +79579,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79724,28 +79724,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79787,7 +79787,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80018,14 +80018,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80033,7 +80033,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80072,7 +80072,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80302,14 +80302,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80317,7 +80317,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80356,7 +80356,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80587,14 +80587,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80602,7 +80602,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80689,7 +80689,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80920,14 +80920,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80935,7 +80935,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80974,7 +80974,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81204,14 +81204,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -81219,7 +81219,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81381,14 +81381,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81396,14 +81396,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81563,14 +81563,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81578,14 +81578,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81626,7 +81626,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81785,7 +81785,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81793,14 +81793,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81839,7 +81839,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81999,7 +81999,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82007,14 +82007,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82053,7 +82053,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -82254,7 +82254,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82262,14 +82262,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -82428,7 +82428,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -82588,7 +82588,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82596,14 +82596,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82662,7 +82662,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -82821,7 +82821,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82829,14 +82829,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82877,14 +82877,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83932,14 +83932,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83978,14 +83978,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84792,7 +84792,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -84800,7 +84800,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85016,21 +85016,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -85038,7 +85038,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85366,7 +85366,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85374,7 +85374,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -85382,7 +85382,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -85706,7 +85706,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85714,7 +85714,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -85722,7 +85722,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -86046,7 +86046,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -86054,7 +86054,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -86062,7 +86062,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -86386,7 +86386,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -86394,7 +86394,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -86402,7 +86402,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -86560,21 +86560,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -86645,14 +86645,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -86858,14 +86858,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -86904,14 +86904,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87117,14 +87117,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87163,14 +87163,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87377,14 +87377,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87446,14 +87446,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87659,14 +87659,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87727,14 +87727,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87942,14 +87942,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87990,14 +87990,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -88209,14 +88209,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88255,14 +88255,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -88474,14 +88474,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88520,14 +88520,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -88739,14 +88739,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -88818,14 +88818,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89037,14 +89037,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89082,14 +89082,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89301,14 +89301,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89349,14 +89349,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89425,14 +89425,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89470,14 +89470,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89546,14 +89546,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89613,14 +89613,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89689,14 +89689,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89734,14 +89734,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89810,14 +89810,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89851,14 +89851,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -90334,7 +90334,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90364,14 +90364,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -90847,7 +90847,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90877,14 +90877,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -91360,7 +91360,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -91467,14 +91467,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -91950,7 +91950,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -91980,14 +91980,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -92463,7 +92463,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -92521,14 +92521,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -92726,7 +92726,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -92782,14 +92782,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -92987,7 +92987,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93017,14 +93017,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93222,7 +93222,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93252,14 +93252,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93457,7 +93457,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93493,14 +93493,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93698,7 +93698,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93754,14 +93754,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93959,7 +93959,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94015,14 +94015,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -94220,7 +94220,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94248,21 +94248,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -94270,7 +94270,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94432,7 +94432,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -94446,7 +94446,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -97598,7 +97598,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -97606,7 +97606,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -97645,7 +97645,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -97659,7 +97659,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -100816,7 +100816,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -100824,7 +100824,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -100863,7 +100863,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -100877,7 +100877,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -104034,7 +104034,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -104042,7 +104042,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -104081,7 +104081,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -104095,7 +104095,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -107347,7 +107347,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -107355,7 +107355,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -107394,7 +107394,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -107408,7 +107408,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -110660,7 +110660,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -110668,7 +110668,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -110948,7 +110948,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -114101,7 +114101,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -114109,7 +114109,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -114147,7 +114147,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -114161,7 +114161,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -117319,7 +117319,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -117327,7 +117327,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -117436,7 +117436,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -117450,7 +117450,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -120702,7 +120702,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -120710,7 +120710,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -120748,7 +120748,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -120762,7 +120762,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -123913,7 +123913,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -123921,7 +123921,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -123960,7 +123960,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -124024,7 +124024,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -127177,7 +127177,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -127185,7 +127185,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -127224,7 +127224,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -127238,7 +127238,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -130389,7 +130389,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -130397,7 +130397,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -130677,7 +130677,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -133830,7 +133830,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -133838,7 +133838,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -133876,7 +133876,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -133890,7 +133890,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -137142,7 +137142,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -137150,7 +137150,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -137189,7 +137189,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -137203,7 +137203,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -140455,7 +140455,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -140463,7 +140463,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -140502,7 +140502,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -140516,7 +140516,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -143768,7 +143768,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -143776,7 +143776,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -143815,7 +143815,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -143829,7 +143829,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -146987,7 +146987,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -147116,7 +147116,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -147318,7 +147318,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -147332,7 +147332,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -150484,7 +150484,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -150614,7 +150614,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -150821,7 +150821,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -150835,7 +150835,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -153987,7 +153987,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -153995,7 +153995,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -154155,7 +154155,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -154169,7 +154169,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -157322,7 +157322,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -157330,7 +157330,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -157368,7 +157368,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -157432,7 +157432,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -160584,7 +160584,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -160592,7 +160592,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -160631,7 +160631,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -160645,7 +160645,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -163794,7 +163794,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -163802,7 +163802,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -164256,14 +164256,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -167238,7 +167238,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -167246,7 +167246,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -167698,14 +167698,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -170679,7 +170679,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -170687,7 +170687,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -171161,14 +171161,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -174143,7 +174143,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -174151,7 +174151,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -174192,14 +174192,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -177176,7 +177176,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177419,7 +177419,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177480,14 +177480,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180353,7 +180353,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180590,7 +180590,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -180629,14 +180629,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -183614,7 +183614,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183851,7 +183851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183892,14 +183892,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -186787,7 +186787,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186795,7 +186795,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -187261,14 +187261,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -190155,7 +190155,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190163,7 +190163,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -190908,14 +190908,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -190967,7 +190967,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -191007,14 +191007,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -192012,14 +192012,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -192058,14 +192058,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -192806,14 +192806,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -192854,14 +192854,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -193367,7 +193367,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -193375,7 +193375,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -193414,14 +193414,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -193927,7 +193927,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -193935,7 +193935,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -194022,14 +194022,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -194535,7 +194535,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -194543,7 +194543,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -194581,14 +194581,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -195094,7 +195094,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195102,7 +195102,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -195140,14 +195140,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -195653,7 +195653,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195661,7 +195661,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -195699,14 +195699,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -196212,7 +196212,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -196220,7 +196220,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -196258,14 +196258,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -196771,7 +196771,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -196779,7 +196779,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -196819,21 +196819,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -198285,7 +198285,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -198323,21 +198323,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199789,7 +199789,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -199829,21 +199829,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199851,7 +199851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -199891,21 +199891,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199913,7 +199913,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -199953,21 +199953,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199975,7 +199975,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200075,21 +200075,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200097,7 +200097,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200137,21 +200137,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200159,7 +200159,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200199,21 +200199,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200221,7 +200221,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200292,21 +200292,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200314,7 +200314,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200582,21 +200582,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200604,7 +200604,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200644,21 +200644,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200666,7 +200666,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200722,7 +200722,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -200730,14 +200730,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200745,7 +200745,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200773,21 +200773,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200795,7 +200795,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -200847,21 +200847,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -201583,7 +201583,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -201622,21 +201622,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -202358,7 +202358,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -202397,21 +202397,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -204995,7 +204995,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -205260,21 +205260,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -205282,7 +205282,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -205552,21 +205552,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -205574,7 +205574,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -205836,21 +205836,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -205858,7 +205858,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -206120,21 +206120,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -206142,7 +206142,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -206520,21 +206520,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -206542,7 +206542,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -206918,21 +206918,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -206940,7 +206940,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -207316,21 +207316,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -207338,7 +207338,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -207714,21 +207714,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -207736,7 +207736,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208106,7 +208106,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -208140,14 +208140,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -208155,7 +208155,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -208196,21 +208196,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -208396,7 +208396,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208432,21 +208432,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -208632,7 +208632,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208668,21 +208668,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -208868,7 +208868,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208982,14 +208982,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -209004,7 +209004,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -209044,28 +209044,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -209526,28 +209526,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -210030,28 +210030,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -210518,28 +210518,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -211083,28 +211083,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -211642,28 +211642,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212126,21 +212126,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212148,7 +212148,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212194,21 +212194,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212216,7 +212216,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212786,7 +212786,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -212800,14 +212800,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212815,7 +212815,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212879,21 +212879,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212901,7 +212901,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -213115,14 +213115,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213137,7 +213137,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -213348,14 +213348,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213370,7 +213370,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -213582,14 +213582,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213604,7 +213604,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -213914,14 +213914,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213936,7 +213936,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -214148,14 +214148,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -214170,7 +214170,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -214384,21 +214384,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -214406,7 +214406,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -214443,14 +214443,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -214464,7 +214464,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -214472,7 +214472,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -214518,21 +214518,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -214540,7 +214540,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -215280,21 +215280,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -215302,7 +215302,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -216039,21 +216039,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -216061,7 +216061,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -216792,21 +216792,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -216814,7 +216814,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -217548,21 +217548,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -217570,7 +217570,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -219139,21 +219139,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -219161,7 +219161,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -220729,21 +220729,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -220751,7 +220751,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, diff --git a/src/webhooks/data/ghae/schema.json b/src/webhooks/data/ghae/schema.json index 3028b5b500..826d7a0082 100644 --- a/src/webhooks/data/ghae/schema.json +++ b/src/webhooks/data/ghae/schema.json @@ -26,21 +26,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -256,7 +256,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -295,21 +295,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -525,7 +525,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -673,21 +673,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -903,7 +903,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -3004,21 +3004,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -3026,7 +3026,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -5125,21 +5125,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -5147,7 +5147,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -7247,21 +7247,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -7282,7 +7282,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9381,21 +9381,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -9403,7 +9403,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9420,7 +9420,7 @@ "check_suite": { "completed": { "descriptionHtml": "

All check runs in a check suite have completed, and a conclusion is available.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10281,21 +10281,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10303,7 +10303,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10318,7 +10318,7 @@ }, "requested": { "descriptionHtml": "

Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see the GraphQL API documentation for creating a check run or \"Create a check run\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -11177,21 +11177,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -11199,7 +11199,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -11214,7 +11214,7 @@ }, "rerequested": { "descriptionHtml": "

Someone requested to re-run the check runs in a check suite. For more information, see the GraphQL API documentation for creating a check suite or \"Create a check suite\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -12072,21 +12072,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12094,7 +12094,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12472,14 +12472,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12493,7 +12493,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12501,7 +12501,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12906,14 +12906,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12927,7 +12927,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12935,7 +12935,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13240,14 +13240,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13261,7 +13261,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13269,7 +13269,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13678,14 +13678,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13699,7 +13699,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13707,7 +13707,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13993,14 +13993,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14014,7 +14014,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14022,7 +14022,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14277,14 +14277,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14298,7 +14298,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14306,7 +14306,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14625,21 +14625,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14647,7 +14647,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14684,7 +14684,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -14698,7 +14698,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14730,7 +14730,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14738,7 +14738,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14768,14 +14768,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14807,7 +14807,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14815,7 +14815,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15370,14 +15370,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15391,7 +15391,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15399,7 +15399,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15952,14 +15952,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15973,7 +15973,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15981,7 +15981,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16534,14 +16534,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16555,7 +16555,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16563,7 +16563,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17116,14 +17116,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17137,7 +17137,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17145,7 +17145,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17698,14 +17698,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17719,7 +17719,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17727,7 +17727,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18280,14 +18280,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -18301,7 +18301,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18309,7 +18309,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18862,14 +18862,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -18883,7 +18883,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18891,7 +18891,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18932,7 +18932,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -19000,14 +19000,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19015,7 +19015,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -19054,7 +19054,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -19122,14 +19122,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19137,7 +19137,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -19908,21 +19908,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19930,7 +19930,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -24951,28 +24951,28 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -25114,14 +25114,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -25129,7 +25129,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -25272,7 +25272,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -26756,14 +26756,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -26771,7 +26771,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -26914,7 +26914,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -28300,14 +28300,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -28315,7 +28315,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -28580,7 +28580,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -31455,21 +31455,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -31477,7 +31477,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -33604,21 +33604,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -33626,7 +33626,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34263,21 +34263,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34285,7 +34285,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34814,21 +34814,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34836,7 +34836,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -35389,21 +35389,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -35411,7 +35411,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -35998,21 +35998,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36020,7 +36020,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36573,7 +36573,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -36631,14 +36631,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36646,7 +36646,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37199,21 +37199,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37221,7 +37221,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37774,21 +37774,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37796,7 +37796,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -38347,7 +38347,7 @@ { "type": "object", "name": "new_repository", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [ { @@ -40280,21 +40280,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -40302,7 +40302,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41120,14 +41120,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41135,7 +41135,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -41687,7 +41687,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -41745,14 +41745,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41760,7 +41760,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42313,21 +42313,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -42335,7 +42335,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42888,21 +42888,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -42910,7 +42910,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43738,21 +43738,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -43760,7 +43760,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -44586,21 +44586,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -44608,7 +44608,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -45457,21 +45457,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45479,7 +45479,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46233,21 +46233,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -46255,7 +46255,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46297,28 +46297,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46346,14 +46346,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46409,7 +46409,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -46417,7 +46417,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46466,7 +46466,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46511,7 +46511,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -46638,7 +46638,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46683,7 +46683,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46728,7 +46728,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -46741,7 +46741,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46786,7 +46786,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46831,7 +46831,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -46844,7 +46844,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46889,7 +46889,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46934,7 +46934,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -46947,7 +46947,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46992,7 +46992,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47037,7 +47037,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47050,7 +47050,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47097,7 +47097,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47177,7 +47177,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47316,7 +47316,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47361,7 +47361,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47446,7 +47446,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47585,7 +47585,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47852,7 +47852,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -47860,21 +47860,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -48436,7 +48436,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -49228,14 +49228,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -49243,7 +49243,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -49800,7 +49800,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -50592,14 +50592,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -50607,7 +50607,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -51186,7 +51186,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -51978,14 +51978,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -51993,7 +51993,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -52154,7 +52154,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -53445,14 +53445,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -53460,7 +53460,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -53499,7 +53499,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54129,14 +54129,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54144,7 +54144,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54183,7 +54183,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -55470,14 +55470,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -55485,7 +55485,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -55524,7 +55524,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -56372,14 +56372,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -56387,7 +56387,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -56461,7 +56461,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -57802,14 +57802,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -57817,7 +57817,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -57856,7 +57856,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -59197,14 +59197,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -59212,7 +59212,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59251,7 +59251,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -59878,14 +59878,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -59893,7 +59893,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59932,7 +59932,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60780,14 +60780,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -60795,7 +60795,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -62839,7 +62839,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -64128,14 +64128,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -64143,7 +64143,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -64182,7 +64182,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -65469,14 +65469,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -65484,7 +65484,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -65523,7 +65523,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -66153,14 +66153,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -66168,7 +66168,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -68225,7 +68225,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69512,14 +69512,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69527,7 +69527,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69687,7 +69687,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70978,14 +70978,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70993,7 +70993,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71032,7 +71032,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72373,14 +72373,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72388,7 +72388,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72427,7 +72427,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73054,14 +73054,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -73069,7 +73069,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73108,7 +73108,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74395,14 +74395,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74410,7 +74410,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74451,7 +74451,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74509,14 +74509,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74524,7 +74524,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -74562,7 +74562,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74620,14 +74620,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74635,7 +74635,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74721,7 +74721,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74779,14 +74779,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74794,7 +74794,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74861,7 +74861,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74989,14 +74989,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75004,7 +75004,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75083,7 +75083,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75211,14 +75211,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75226,7 +75226,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75266,7 +75266,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75394,14 +75394,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75409,7 +75409,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75451,7 +75451,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75579,7 +75579,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -75587,7 +75587,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -75816,7 +75816,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75944,7 +75944,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -75952,7 +75952,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -76277,28 +76277,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -76340,7 +76340,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76571,14 +76571,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76586,7 +76586,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76625,7 +76625,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76855,14 +76855,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76870,7 +76870,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76909,7 +76909,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77140,14 +77140,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77155,7 +77155,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77242,7 +77242,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77473,14 +77473,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77488,7 +77488,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77527,7 +77527,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77757,14 +77757,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77772,7 +77772,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77813,7 +77813,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77972,7 +77972,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -77980,14 +77980,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78026,7 +78026,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78186,7 +78186,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78194,14 +78194,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78240,7 +78240,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78441,7 +78441,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78449,14 +78449,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -78615,7 +78615,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78775,7 +78775,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78783,14 +78783,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78849,7 +78849,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79008,7 +79008,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -79016,14 +79016,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79064,14 +79064,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80119,14 +80119,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80165,14 +80165,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80979,7 +80979,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80987,7 +80987,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81203,21 +81203,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -81225,7 +81225,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81385,21 +81385,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -81470,14 +81470,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -81683,14 +81683,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81729,14 +81729,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -81942,14 +81942,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81988,14 +81988,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -82202,14 +82202,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82271,14 +82271,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -82484,14 +82484,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82552,14 +82552,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -82767,14 +82767,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82815,14 +82815,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83034,14 +83034,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83080,14 +83080,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83299,14 +83299,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83345,14 +83345,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83564,14 +83564,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -83643,14 +83643,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83862,14 +83862,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -83907,14 +83907,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84126,14 +84126,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84174,14 +84174,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84250,14 +84250,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -84295,14 +84295,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84371,14 +84371,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -84438,14 +84438,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84514,14 +84514,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -84559,14 +84559,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84635,14 +84635,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84676,14 +84676,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85159,7 +85159,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85189,14 +85189,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85672,7 +85672,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85702,14 +85702,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -86185,7 +86185,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -86292,14 +86292,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -86775,7 +86775,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -86805,14 +86805,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -87288,7 +87288,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87316,21 +87316,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -87338,7 +87338,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87500,7 +87500,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -87514,7 +87514,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -90666,7 +90666,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -90674,7 +90674,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90713,7 +90713,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -90727,7 +90727,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -93884,7 +93884,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -93892,7 +93892,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93931,7 +93931,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -93945,7 +93945,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -97102,7 +97102,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -97110,7 +97110,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -97149,7 +97149,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -97163,7 +97163,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -100415,7 +100415,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -100423,7 +100423,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -100462,7 +100462,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -100476,7 +100476,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -103728,7 +103728,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -103736,7 +103736,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -104016,7 +104016,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -107169,7 +107169,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -107177,7 +107177,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -107285,7 +107285,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -107299,7 +107299,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -110551,7 +110551,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -110559,7 +110559,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -110597,7 +110597,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -110661,7 +110661,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -113814,7 +113814,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -113822,7 +113822,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -113861,7 +113861,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -113875,7 +113875,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -117026,7 +117026,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -117034,7 +117034,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -117314,7 +117314,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -120467,7 +120467,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -120475,7 +120475,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -120513,7 +120513,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -120527,7 +120527,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -123779,7 +123779,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -123787,7 +123787,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -123826,7 +123826,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -123840,7 +123840,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -127092,7 +127092,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -127100,7 +127100,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -127139,7 +127139,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -127153,7 +127153,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -130405,7 +130405,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -130413,7 +130413,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -130452,7 +130452,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -130466,7 +130466,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -133624,7 +133624,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -133753,7 +133753,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -133955,7 +133955,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -133969,7 +133969,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -137121,7 +137121,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -137251,7 +137251,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -137458,7 +137458,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -137472,7 +137472,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -140624,7 +140624,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -140632,7 +140632,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -140792,7 +140792,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -140806,7 +140806,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -143959,7 +143959,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -143967,7 +143967,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -144005,7 +144005,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -144069,7 +144069,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -147221,7 +147221,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -147229,7 +147229,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -147268,7 +147268,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -147282,7 +147282,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -150431,7 +150431,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -150439,7 +150439,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -150893,14 +150893,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -153875,7 +153875,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -153883,7 +153883,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -154335,14 +154335,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -157316,7 +157316,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -157324,7 +157324,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -157798,14 +157798,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -160780,7 +160780,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -160788,7 +160788,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -160829,14 +160829,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -163813,7 +163813,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -164056,7 +164056,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -164117,14 +164117,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -166990,7 +166990,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -167227,7 +167227,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -167266,14 +167266,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -170251,7 +170251,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -170488,7 +170488,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -170529,14 +170529,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -173424,7 +173424,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -173432,7 +173432,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -173898,14 +173898,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -176792,7 +176792,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -176800,7 +176800,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -177545,14 +177545,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -177604,7 +177604,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -177644,14 +177644,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -178649,14 +178649,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178695,14 +178695,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -179443,14 +179443,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -179491,14 +179491,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180004,7 +180004,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180012,7 +180012,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -180051,14 +180051,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180564,7 +180564,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180572,7 +180572,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -180646,14 +180646,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -181159,7 +181159,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181167,7 +181167,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181205,14 +181205,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -181718,7 +181718,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181726,7 +181726,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181764,14 +181764,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -182277,7 +182277,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182285,7 +182285,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182323,14 +182323,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -182836,7 +182836,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182844,7 +182844,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182882,14 +182882,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -183395,7 +183395,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183403,7 +183403,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -183443,28 +183443,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -183503,28 +183503,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -183563,21 +183563,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183585,7 +183585,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183625,21 +183625,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183647,7 +183647,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183687,21 +183687,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183709,7 +183709,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183809,21 +183809,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183831,7 +183831,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183871,21 +183871,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183893,7 +183893,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183933,21 +183933,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183955,7 +183955,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -184026,21 +184026,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184048,7 +184048,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -184316,21 +184316,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184338,7 +184338,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -184378,21 +184378,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184400,7 +184400,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -184456,7 +184456,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -184464,14 +184464,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184479,7 +184479,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -184716,21 +184716,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184738,7 +184738,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -184974,21 +184974,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184996,7 +184996,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185232,21 +185232,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185254,7 +185254,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185490,21 +185490,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185512,7 +185512,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185742,7 +185742,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -185776,14 +185776,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185791,7 +185791,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -185908,14 +185908,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -185930,7 +185930,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185970,28 +185970,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186452,28 +186452,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186956,28 +186956,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187444,28 +187444,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188009,28 +188009,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188568,28 +188568,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189052,21 +189052,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189074,7 +189074,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189120,21 +189120,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189142,7 +189142,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189712,7 +189712,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -189726,14 +189726,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189741,7 +189741,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189805,21 +189805,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189827,7 +189827,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -190041,14 +190041,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -190063,7 +190063,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -190274,14 +190274,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -190296,7 +190296,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -190508,14 +190508,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -190530,7 +190530,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -190840,14 +190840,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -190862,7 +190862,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -191074,14 +191074,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -191096,7 +191096,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -191310,28 +191310,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -191487,28 +191487,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -191666,21 +191666,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -191688,7 +191688,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -191725,14 +191725,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -191746,7 +191746,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -191754,7 +191754,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -191800,21 +191800,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -191822,7 +191822,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -192562,21 +192562,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -192584,7 +192584,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -193321,21 +193321,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -193343,7 +193343,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -194076,21 +194076,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -194098,7 +194098,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -195667,21 +195667,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195689,7 +195689,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -197257,21 +197257,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -197279,7 +197279,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, diff --git a/src/webhooks/data/ghec/schema.json b/src/webhooks/data/ghec/schema.json index 49f5a35e7c..7d328a5620 100644 --- a/src/webhooks/data/ghec/schema.json +++ b/src/webhooks/data/ghec/schema.json @@ -26,21 +26,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -48,7 +48,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87,21 +87,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -109,7 +109,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -150,21 +150,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -380,7 +380,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -419,21 +419,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -649,7 +649,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -797,21 +797,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -1027,7 +1027,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -3128,21 +3128,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -3150,7 +3150,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -5249,21 +5249,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -5271,7 +5271,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -7371,21 +7371,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -7406,7 +7406,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9505,21 +9505,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -9527,7 +9527,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9544,7 +9544,7 @@ "check_suite": { "completed": { "descriptionHtml": "

All check runs in a check suite have completed, and a conclusion is available.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10405,21 +10405,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10427,7 +10427,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10442,7 +10442,7 @@ }, "requested": { "descriptionHtml": "

Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see the GraphQL API documentation for creating a check run or \"Create a check run\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -11301,21 +11301,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -11323,7 +11323,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -11338,7 +11338,7 @@ }, "rerequested": { "descriptionHtml": "

Someone requested to re-run the check runs in a check suite. For more information, see the GraphQL API documentation for creating a check suite or \"Create a check suite\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -12196,21 +12196,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12218,7 +12218,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12596,14 +12596,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12617,7 +12617,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12625,7 +12625,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13030,14 +13030,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13051,7 +13051,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13059,7 +13059,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13364,14 +13364,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13385,7 +13385,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13393,7 +13393,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13802,14 +13802,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13823,7 +13823,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13831,7 +13831,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14117,14 +14117,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14138,7 +14138,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14146,7 +14146,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14401,14 +14401,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14422,7 +14422,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14430,7 +14430,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14749,21 +14749,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14771,7 +14771,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14808,7 +14808,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -14822,7 +14822,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14854,7 +14854,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14862,7 +14862,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14892,14 +14892,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14931,7 +14931,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14939,7 +14939,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15494,14 +15494,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15515,7 +15515,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15523,7 +15523,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16076,14 +16076,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16097,7 +16097,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16105,7 +16105,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16658,14 +16658,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16679,7 +16679,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16687,7 +16687,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17240,14 +17240,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17261,7 +17261,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17269,7 +17269,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17822,14 +17822,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17843,7 +17843,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17851,7 +17851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18404,14 +18404,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -18425,7 +18425,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18433,7 +18433,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18986,14 +18986,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -19007,7 +19007,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19015,7 +19015,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -19056,7 +19056,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -19124,14 +19124,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19139,7 +19139,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -19178,7 +19178,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -19246,14 +19246,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -19261,7 +19261,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -20032,21 +20032,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -20054,7 +20054,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -25075,28 +25075,28 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -25238,14 +25238,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -25253,7 +25253,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -25396,7 +25396,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -26880,14 +26880,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -26895,7 +26895,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -27038,7 +27038,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -28424,14 +28424,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -28439,7 +28439,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -28704,7 +28704,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -31579,21 +31579,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -31601,7 +31601,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -33728,21 +33728,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -33750,7 +33750,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34387,21 +34387,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34409,7 +34409,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34962,21 +34962,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34984,7 +34984,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -35513,21 +35513,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -35535,7 +35535,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36088,21 +36088,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36110,7 +36110,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36697,21 +36697,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36719,7 +36719,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37272,7 +37272,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -37330,14 +37330,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37345,7 +37345,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37898,21 +37898,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37920,7 +37920,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -38473,21 +38473,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -38495,7 +38495,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -39048,21 +39048,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -39070,7 +39070,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -39621,7 +39621,7 @@ { "type": "object", "name": "new_repository", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [ { @@ -41647,21 +41647,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41669,7 +41669,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42487,14 +42487,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -42502,7 +42502,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -43054,7 +43054,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -43112,14 +43112,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -43127,7 +43127,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43680,21 +43680,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -43702,7 +43702,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -44255,21 +44255,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -44277,7 +44277,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -45105,21 +45105,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45127,7 +45127,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -45953,21 +45953,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45975,7 +45975,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46824,21 +46824,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -46846,7 +46846,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47600,21 +47600,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -47622,7 +47622,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47664,28 +47664,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47713,14 +47713,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47776,7 +47776,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -47784,7 +47784,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47833,7 +47833,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47878,7 +47878,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48005,7 +48005,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48050,7 +48050,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48095,7 +48095,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48108,7 +48108,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48153,7 +48153,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48198,7 +48198,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48211,7 +48211,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48256,7 +48256,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48301,7 +48301,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48314,7 +48314,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48359,7 +48359,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48404,7 +48404,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48417,7 +48417,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48464,7 +48464,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48544,7 +48544,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48683,7 +48683,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48728,7 +48728,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -48813,7 +48813,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -48952,7 +48952,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -49219,7 +49219,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -49227,21 +49227,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -49803,7 +49803,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -50595,14 +50595,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -50610,7 +50610,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -51167,7 +51167,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -51959,14 +51959,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -51974,7 +51974,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -52553,7 +52553,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -53345,14 +53345,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -53360,7 +53360,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -53521,7 +53521,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54812,14 +54812,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54827,7 +54827,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54866,7 +54866,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -55496,14 +55496,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -55511,7 +55511,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -55550,7 +55550,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -56837,14 +56837,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -56852,7 +56852,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -56891,7 +56891,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -57739,14 +57739,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -57754,7 +57754,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -57828,7 +57828,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -59169,14 +59169,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -59184,7 +59184,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59223,7 +59223,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60564,14 +60564,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -60579,7 +60579,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -60618,7 +60618,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -61245,14 +61245,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -61260,7 +61260,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -61299,7 +61299,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -62147,14 +62147,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -62162,7 +62162,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -64206,7 +64206,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -65495,14 +65495,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -65510,7 +65510,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -65549,7 +65549,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -66836,14 +66836,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -66851,7 +66851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -66890,7 +66890,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -67520,14 +67520,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -67535,7 +67535,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69592,7 +69592,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70879,14 +70879,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70894,7 +70894,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71054,7 +71054,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72345,14 +72345,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72360,7 +72360,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72399,7 +72399,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73740,14 +73740,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -73755,7 +73755,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73794,7 +73794,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74421,14 +74421,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74436,7 +74436,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74475,7 +74475,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75762,14 +75762,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75777,7 +75777,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75818,7 +75818,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75876,14 +75876,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75891,7 +75891,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -75929,7 +75929,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75987,14 +75987,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76002,7 +76002,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76088,7 +76088,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76146,14 +76146,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76161,7 +76161,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76209,7 +76209,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76360,7 +76360,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76509,14 +76509,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76560,7 +76560,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76711,7 +76711,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76860,14 +76860,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76911,7 +76911,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77062,7 +77062,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77211,14 +77211,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77262,7 +77262,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77413,7 +77413,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77562,14 +77562,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77613,7 +77613,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77764,7 +77764,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77913,14 +77913,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77985,7 +77985,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78113,14 +78113,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -78128,7 +78128,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78207,7 +78207,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78335,14 +78335,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -78350,7 +78350,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78390,7 +78390,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78518,14 +78518,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -78533,7 +78533,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78575,7 +78575,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78703,7 +78703,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78711,7 +78711,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -78940,7 +78940,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79068,7 +79068,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -79076,7 +79076,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -79301,7 +79301,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79413,21 +79413,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79467,7 +79467,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79579,21 +79579,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79724,28 +79724,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79787,7 +79787,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80018,14 +80018,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80033,7 +80033,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80072,7 +80072,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80302,14 +80302,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80317,7 +80317,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80356,7 +80356,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80587,14 +80587,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80602,7 +80602,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80689,7 +80689,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -80920,14 +80920,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -80935,7 +80935,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80974,7 +80974,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81204,14 +81204,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -81219,7 +81219,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81381,14 +81381,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81396,14 +81396,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81563,14 +81563,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81578,14 +81578,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81626,7 +81626,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81785,7 +81785,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81793,14 +81793,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81839,7 +81839,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81999,7 +81999,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82007,14 +82007,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82053,7 +82053,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -82254,7 +82254,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82262,14 +82262,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -82428,7 +82428,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -82588,7 +82588,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82596,14 +82596,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82662,7 +82662,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -82821,7 +82821,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82829,14 +82829,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82877,14 +82877,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83932,14 +83932,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83978,14 +83978,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84792,7 +84792,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -84800,7 +84800,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85016,21 +85016,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -85038,7 +85038,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85366,7 +85366,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85374,7 +85374,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -85382,7 +85382,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -85706,7 +85706,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85714,7 +85714,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -85722,7 +85722,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -86046,7 +86046,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -86054,7 +86054,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -86062,7 +86062,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -86386,7 +86386,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -86394,7 +86394,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -86402,7 +86402,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -86560,21 +86560,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -86645,14 +86645,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -86858,14 +86858,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -86904,14 +86904,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87117,14 +87117,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87163,14 +87163,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87377,14 +87377,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87446,14 +87446,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87659,14 +87659,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87727,14 +87727,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87942,14 +87942,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87990,14 +87990,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -88209,14 +88209,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88255,14 +88255,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -88474,14 +88474,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88520,14 +88520,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -88739,14 +88739,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -88818,14 +88818,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89037,14 +89037,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89082,14 +89082,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89301,14 +89301,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89349,14 +89349,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89425,14 +89425,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89470,14 +89470,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89546,14 +89546,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89613,14 +89613,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89689,14 +89689,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -89734,14 +89734,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -89810,14 +89810,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89851,14 +89851,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -90334,7 +90334,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90364,14 +90364,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -90847,7 +90847,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90877,14 +90877,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -91360,7 +91360,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -91467,14 +91467,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -91950,7 +91950,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -91980,14 +91980,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -92463,7 +92463,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -92521,14 +92521,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -92726,7 +92726,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -92782,14 +92782,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -92987,7 +92987,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93017,14 +93017,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93222,7 +93222,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93252,14 +93252,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93457,7 +93457,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93493,14 +93493,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93698,7 +93698,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -93754,14 +93754,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -93959,7 +93959,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94015,14 +94015,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -94220,7 +94220,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94248,21 +94248,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -94270,7 +94270,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94432,7 +94432,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -94446,7 +94446,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -97598,7 +97598,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -97606,7 +97606,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -97645,7 +97645,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -97659,7 +97659,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -100816,7 +100816,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -100824,7 +100824,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -100863,7 +100863,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -100877,7 +100877,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -104034,7 +104034,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -104042,7 +104042,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -104081,7 +104081,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -104095,7 +104095,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -107347,7 +107347,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -107355,7 +107355,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -107394,7 +107394,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -107408,7 +107408,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -110660,7 +110660,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -110668,7 +110668,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -110948,7 +110948,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -114101,7 +114101,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -114109,7 +114109,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -114147,7 +114147,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -114161,7 +114161,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -117319,7 +117319,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -117327,7 +117327,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -117436,7 +117436,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -117450,7 +117450,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -120702,7 +120702,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -120710,7 +120710,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -120748,7 +120748,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -120762,7 +120762,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -123913,7 +123913,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -123921,7 +123921,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -123960,7 +123960,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -124024,7 +124024,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -127177,7 +127177,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -127185,7 +127185,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -127224,7 +127224,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -127238,7 +127238,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -130389,7 +130389,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -130397,7 +130397,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -130677,7 +130677,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -133830,7 +133830,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -133838,7 +133838,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -133876,7 +133876,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -133890,7 +133890,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -137142,7 +137142,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -137150,7 +137150,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -137189,7 +137189,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -137203,7 +137203,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -140455,7 +140455,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -140463,7 +140463,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -140502,7 +140502,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -140516,7 +140516,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -143768,7 +143768,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -143776,7 +143776,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -143815,7 +143815,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -143829,7 +143829,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -146987,7 +146987,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -147116,7 +147116,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -147318,7 +147318,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -147332,7 +147332,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -150484,7 +150484,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -150614,7 +150614,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -150821,7 +150821,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -150835,7 +150835,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -153987,7 +153987,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -153995,7 +153995,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -154155,7 +154155,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -154169,7 +154169,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -157322,7 +157322,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -157330,7 +157330,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -157368,7 +157368,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -157432,7 +157432,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -160584,7 +160584,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -160592,7 +160592,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -160631,7 +160631,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -160645,7 +160645,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -163794,7 +163794,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -163802,7 +163802,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -164256,14 +164256,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -167238,7 +167238,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -167246,7 +167246,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -167698,14 +167698,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -170679,7 +170679,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -170687,7 +170687,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -171161,14 +171161,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -174143,7 +174143,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -174151,7 +174151,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -174192,14 +174192,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -177176,7 +177176,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177419,7 +177419,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177480,14 +177480,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180353,7 +180353,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180590,7 +180590,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -180629,14 +180629,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -183614,7 +183614,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183851,7 +183851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183892,14 +183892,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -186787,7 +186787,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186795,7 +186795,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -187261,14 +187261,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -190155,7 +190155,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190163,7 +190163,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -190908,14 +190908,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -190967,7 +190967,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -191007,14 +191007,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -192012,14 +192012,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -192058,14 +192058,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -192806,14 +192806,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -192854,14 +192854,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -193367,7 +193367,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -193375,7 +193375,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -193414,14 +193414,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -193927,7 +193927,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -193935,7 +193935,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -194022,14 +194022,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -194535,7 +194535,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -194543,7 +194543,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -194581,14 +194581,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -195094,7 +195094,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195102,7 +195102,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -195140,14 +195140,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -195653,7 +195653,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195661,7 +195661,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -195699,14 +195699,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -196212,7 +196212,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -196220,7 +196220,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -196258,14 +196258,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -196771,7 +196771,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -196779,7 +196779,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -196819,21 +196819,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -198285,7 +198285,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -198323,21 +198323,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199789,7 +199789,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -199829,21 +199829,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199851,7 +199851,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -199891,21 +199891,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199913,7 +199913,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -199953,21 +199953,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199975,7 +199975,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200075,21 +200075,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200097,7 +200097,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200137,21 +200137,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200159,7 +200159,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200199,21 +200199,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200221,7 +200221,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200292,21 +200292,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200314,7 +200314,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200582,21 +200582,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200604,7 +200604,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200644,21 +200644,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200666,7 +200666,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200722,7 +200722,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -200730,14 +200730,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200745,7 +200745,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -200773,21 +200773,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200795,7 +200795,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -200847,21 +200847,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -201583,7 +201583,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -201622,21 +201622,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -202358,7 +202358,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -202397,21 +202397,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -204995,7 +204995,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -205260,21 +205260,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -205282,7 +205282,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -205552,21 +205552,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -205574,7 +205574,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -205836,21 +205836,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -205858,7 +205858,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -206120,21 +206120,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -206142,7 +206142,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -206520,21 +206520,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -206542,7 +206542,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -206918,21 +206918,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -206940,7 +206940,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -207316,21 +207316,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -207338,7 +207338,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -207714,21 +207714,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -207736,7 +207736,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208106,7 +208106,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -208140,14 +208140,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -208155,7 +208155,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -208196,21 +208196,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -208396,7 +208396,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208432,21 +208432,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -208632,7 +208632,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208668,21 +208668,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -208868,7 +208868,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -208982,14 +208982,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -209004,7 +209004,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -209044,28 +209044,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -209526,28 +209526,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -210030,28 +210030,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -210518,28 +210518,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -211083,28 +211083,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -211642,28 +211642,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212126,21 +212126,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212148,7 +212148,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212194,21 +212194,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212216,7 +212216,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212786,7 +212786,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -212800,14 +212800,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212815,7 +212815,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -212879,21 +212879,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -212901,7 +212901,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -213115,14 +213115,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213137,7 +213137,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -213348,14 +213348,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213370,7 +213370,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -213582,14 +213582,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213604,7 +213604,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -213914,14 +213914,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -213936,7 +213936,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -214148,14 +214148,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -214170,7 +214170,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -214384,21 +214384,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -214406,7 +214406,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -214443,14 +214443,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -214464,7 +214464,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -214472,7 +214472,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -214518,21 +214518,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -214540,7 +214540,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -215280,21 +215280,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -215302,7 +215302,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -216039,21 +216039,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -216061,7 +216061,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -216792,21 +216792,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -216814,7 +216814,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -217548,21 +217548,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -217570,7 +217570,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -219139,21 +219139,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -219161,7 +219161,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -220729,21 +220729,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -220751,7 +220751,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, diff --git a/src/webhooks/data/ghes-3.10/schema.json b/src/webhooks/data/ghes-3.10/schema.json index a63ed2ddbd..eda51df02e 100644 --- a/src/webhooks/data/ghes-3.10/schema.json +++ b/src/webhooks/data/ghes-3.10/schema.json @@ -26,21 +26,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -256,7 +256,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -295,21 +295,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -525,7 +525,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -673,21 +673,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -903,7 +903,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -954,14 +954,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -975,14 +975,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -3082,21 +3082,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -3104,7 +3104,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -5203,21 +5203,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -5225,7 +5225,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -7325,21 +7325,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -7360,7 +7360,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9459,21 +9459,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -9481,7 +9481,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9498,7 +9498,7 @@ "check_suite": { "completed": { "descriptionHtml": "

All check runs in a check suite have completed, and a conclusion is available.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10359,21 +10359,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10381,7 +10381,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10396,7 +10396,7 @@ }, "requested": { "descriptionHtml": "

Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see the GraphQL API documentation for creating a check run or \"Create a check run\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -11255,21 +11255,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -11277,7 +11277,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -11292,7 +11292,7 @@ }, "rerequested": { "descriptionHtml": "

Someone requested to re-run the check runs in a check suite. For more information, see the GraphQL API documentation for creating a check suite or \"Create a check suite\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -12150,21 +12150,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12172,7 +12172,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12550,14 +12550,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12571,7 +12571,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12579,7 +12579,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12984,14 +12984,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13005,7 +13005,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13013,7 +13013,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13318,14 +13318,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13339,7 +13339,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13347,7 +13347,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13756,14 +13756,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13777,7 +13777,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13785,7 +13785,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14071,14 +14071,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14092,7 +14092,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14100,7 +14100,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14355,14 +14355,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14376,7 +14376,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14384,7 +14384,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14703,21 +14703,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14725,7 +14725,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14762,7 +14762,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -14776,7 +14776,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14808,7 +14808,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14816,7 +14816,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14846,14 +14846,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14885,7 +14885,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14893,7 +14893,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15448,14 +15448,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15469,7 +15469,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15477,7 +15477,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16030,14 +16030,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16051,7 +16051,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16059,7 +16059,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16612,14 +16612,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16633,7 +16633,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16641,7 +16641,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17194,14 +17194,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17215,7 +17215,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17223,7 +17223,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17776,14 +17776,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17797,7 +17797,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17805,7 +17805,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17846,7 +17846,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -17914,14 +17914,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17929,7 +17929,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17968,7 +17968,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -18036,14 +18036,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18051,7 +18051,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18822,21 +18822,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18844,7 +18844,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -23865,28 +23865,28 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -24028,14 +24028,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -24043,7 +24043,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -24186,7 +24186,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -25670,14 +25670,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -25685,7 +25685,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -25828,7 +25828,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -27214,14 +27214,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -27229,7 +27229,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -27494,7 +27494,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -30369,21 +30369,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -30391,7 +30391,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -32518,21 +32518,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -32540,7 +32540,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -33177,21 +33177,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -33199,7 +33199,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -33752,21 +33752,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -33774,7 +33774,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34303,21 +34303,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34325,7 +34325,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34878,21 +34878,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34900,7 +34900,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -35487,21 +35487,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -35509,7 +35509,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36062,7 +36062,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -36120,14 +36120,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36135,7 +36135,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36688,21 +36688,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36710,7 +36710,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37263,21 +37263,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37285,7 +37285,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37838,21 +37838,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37860,7 +37860,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -38411,7 +38411,7 @@ { "type": "object", "name": "new_repository", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [ { @@ -40437,21 +40437,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -40459,7 +40459,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41277,14 +41277,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41292,7 +41292,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -41844,7 +41844,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -41902,14 +41902,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41917,7 +41917,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42470,21 +42470,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -42492,7 +42492,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43045,21 +43045,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -43067,7 +43067,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43895,21 +43895,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -43917,7 +43917,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -44743,21 +44743,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -44765,7 +44765,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -45614,21 +45614,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45636,7 +45636,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -45670,7 +45670,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -45699,7 +45699,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -46450,21 +46450,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -46472,7 +46472,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46514,28 +46514,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46563,14 +46563,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46626,7 +46626,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -46634,7 +46634,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46683,7 +46683,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46728,7 +46728,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -46855,7 +46855,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46900,7 +46900,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -46945,7 +46945,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -46958,7 +46958,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47003,7 +47003,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47048,7 +47048,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47061,7 +47061,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47106,7 +47106,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47151,7 +47151,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47164,7 +47164,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47209,7 +47209,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47254,7 +47254,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47267,7 +47267,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47314,7 +47314,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47394,7 +47394,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47533,7 +47533,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47578,7 +47578,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -47663,7 +47663,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -47802,7 +47802,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48064,7 +48064,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -48072,21 +48072,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -48648,7 +48648,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -49440,14 +49440,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -49455,7 +49455,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -50012,7 +50012,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -50804,14 +50804,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -50819,7 +50819,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -51398,7 +51398,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -52190,14 +52190,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -52205,7 +52205,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -52366,7 +52366,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -53657,14 +53657,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -53672,7 +53672,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -53711,7 +53711,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54341,14 +54341,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54356,7 +54356,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54395,7 +54395,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -55682,14 +55682,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -55697,7 +55697,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -55736,7 +55736,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -56584,14 +56584,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -56599,7 +56599,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -56673,7 +56673,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -58014,14 +58014,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -58029,7 +58029,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -58068,7 +58068,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -59409,14 +59409,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -59424,7 +59424,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59463,7 +59463,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60090,14 +60090,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -60105,7 +60105,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -60144,7 +60144,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60992,14 +60992,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -61007,7 +61007,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -63051,7 +63051,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -64340,14 +64340,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -64355,7 +64355,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -64394,7 +64394,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -65681,14 +65681,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -65696,7 +65696,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -65735,7 +65735,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -66365,14 +66365,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -66380,7 +66380,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -68437,7 +68437,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69724,14 +69724,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69739,7 +69739,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69899,7 +69899,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71190,14 +71190,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71205,7 +71205,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71244,7 +71244,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72585,14 +72585,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72600,7 +72600,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72639,7 +72639,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73266,14 +73266,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -73281,7 +73281,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73320,7 +73320,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74607,14 +74607,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74622,7 +74622,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74663,7 +74663,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74721,14 +74721,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74736,7 +74736,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -74774,7 +74774,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74832,14 +74832,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74847,7 +74847,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74933,7 +74933,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74991,14 +74991,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75006,7 +75006,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75073,7 +75073,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75201,14 +75201,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75216,7 +75216,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75295,7 +75295,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75423,14 +75423,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75438,7 +75438,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75478,7 +75478,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75606,14 +75606,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75621,7 +75621,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75663,7 +75663,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75791,7 +75791,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -75799,7 +75799,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -76028,7 +76028,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76156,7 +76156,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -76164,7 +76164,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -76489,28 +76489,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -76552,7 +76552,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -76783,14 +76783,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76798,7 +76798,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76837,7 +76837,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77067,14 +77067,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77082,7 +77082,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77121,7 +77121,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77352,14 +77352,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77367,7 +77367,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77454,7 +77454,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77685,14 +77685,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77700,7 +77700,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77739,7 +77739,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -77969,14 +77969,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77984,7 +77984,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78025,7 +78025,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78184,7 +78184,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78192,14 +78192,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78238,7 +78238,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78398,7 +78398,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78406,14 +78406,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78452,7 +78452,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78653,7 +78653,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78661,14 +78661,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -78827,7 +78827,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -78987,7 +78987,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -78995,14 +78995,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79061,7 +79061,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -79220,7 +79220,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -79228,14 +79228,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79276,14 +79276,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80331,14 +80331,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80377,14 +80377,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -81191,7 +81191,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -81199,7 +81199,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81415,21 +81415,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -81437,7 +81437,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81765,7 +81765,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81773,7 +81773,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -81781,7 +81781,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -82105,7 +82105,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82113,7 +82113,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -82121,7 +82121,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -82445,7 +82445,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82453,7 +82453,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -82461,7 +82461,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -82785,7 +82785,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82793,7 +82793,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -82801,7 +82801,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] } @@ -82959,21 +82959,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -83044,14 +83044,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83257,14 +83257,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83303,14 +83303,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83516,14 +83516,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83562,14 +83562,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -83776,14 +83776,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83845,14 +83845,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84058,14 +84058,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84126,14 +84126,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84341,14 +84341,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84389,14 +84389,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84608,14 +84608,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84654,14 +84654,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84873,14 +84873,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84919,14 +84919,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -85138,14 +85138,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -85217,14 +85217,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -85436,14 +85436,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -85481,14 +85481,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -85700,14 +85700,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85748,14 +85748,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -85824,14 +85824,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -85869,14 +85869,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -85945,14 +85945,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -86012,14 +86012,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -86088,14 +86088,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -86133,14 +86133,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -86209,14 +86209,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -86250,14 +86250,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -86733,7 +86733,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -86763,14 +86763,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -87246,7 +87246,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87276,14 +87276,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -87759,7 +87759,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -87866,14 +87866,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -88349,7 +88349,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88379,14 +88379,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -88862,7 +88862,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88920,14 +88920,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -89125,7 +89125,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89181,14 +89181,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -89386,7 +89386,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89416,14 +89416,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -89621,7 +89621,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89651,14 +89651,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -89856,7 +89856,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -89892,14 +89892,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -90097,7 +90097,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90153,14 +90153,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -90358,7 +90358,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90414,14 +90414,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -90619,7 +90619,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90647,21 +90647,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -90669,7 +90669,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -90831,7 +90831,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -90845,7 +90845,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -93997,7 +93997,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -94005,7 +94005,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94044,7 +94044,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -94058,7 +94058,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -97215,7 +97215,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -97223,7 +97223,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -97262,7 +97262,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -97276,7 +97276,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -100433,7 +100433,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -100441,7 +100441,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -100480,7 +100480,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -100494,7 +100494,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -103746,7 +103746,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -103754,7 +103754,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -103793,7 +103793,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -103807,7 +103807,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -107059,7 +107059,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -107067,7 +107067,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -107347,7 +107347,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -110500,7 +110500,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -110508,7 +110508,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -110616,7 +110616,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -110630,7 +110630,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -113882,7 +113882,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -113890,7 +113890,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -113928,7 +113928,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -113992,7 +113992,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -117145,7 +117145,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -117153,7 +117153,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -117192,7 +117192,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -117206,7 +117206,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -120357,7 +120357,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -120365,7 +120365,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -120645,7 +120645,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -123798,7 +123798,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -123806,7 +123806,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -123844,7 +123844,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -123858,7 +123858,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -127110,7 +127110,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -127118,7 +127118,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -127157,7 +127157,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -127171,7 +127171,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -130423,7 +130423,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -130431,7 +130431,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -130470,7 +130470,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -130484,7 +130484,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -133736,7 +133736,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -133744,7 +133744,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -133783,7 +133783,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -133797,7 +133797,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -136955,7 +136955,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -137084,7 +137084,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -137286,7 +137286,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -137300,7 +137300,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -140452,7 +140452,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -140582,7 +140582,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -140789,7 +140789,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -140803,7 +140803,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -143955,7 +143955,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -143963,7 +143963,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -144123,7 +144123,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -144137,7 +144137,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -147290,7 +147290,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -147298,7 +147298,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -147336,7 +147336,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -147400,7 +147400,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -150552,7 +150552,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -150560,7 +150560,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -150599,7 +150599,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -150613,7 +150613,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -153762,7 +153762,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -153770,7 +153770,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -154224,14 +154224,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -157206,7 +157206,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -157214,7 +157214,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -157666,14 +157666,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -160647,7 +160647,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -160655,7 +160655,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -161129,14 +161129,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -164111,7 +164111,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -164119,7 +164119,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -164160,14 +164160,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -167144,7 +167144,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -167387,7 +167387,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -167448,14 +167448,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -170321,7 +170321,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -170558,7 +170558,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -170597,14 +170597,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -173582,7 +173582,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -173819,7 +173819,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -173860,14 +173860,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -176755,7 +176755,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -176763,7 +176763,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -177229,14 +177229,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180123,7 +180123,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180131,7 +180131,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -180876,14 +180876,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180935,7 +180935,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -180975,14 +180975,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -181980,14 +181980,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182026,14 +182026,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -182774,14 +182774,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182822,14 +182822,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -183335,7 +183335,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183343,7 +183343,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183382,14 +183382,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -183895,7 +183895,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183903,7 +183903,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183990,14 +183990,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -184503,7 +184503,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184511,7 +184511,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -184549,14 +184549,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -185062,7 +185062,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185070,7 +185070,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185108,14 +185108,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -185621,7 +185621,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185629,7 +185629,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185667,14 +185667,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -186180,7 +186180,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186188,7 +186188,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186226,14 +186226,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -186739,7 +186739,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186747,7 +186747,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186787,28 +186787,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186847,28 +186847,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186907,21 +186907,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186929,7 +186929,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -186969,21 +186969,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186991,7 +186991,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187031,21 +187031,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187053,7 +187053,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187153,21 +187153,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187175,7 +187175,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187215,21 +187215,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187237,7 +187237,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187277,21 +187277,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187299,7 +187299,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187370,21 +187370,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187392,7 +187392,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187660,21 +187660,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187682,7 +187682,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187722,21 +187722,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187744,7 +187744,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -187800,7 +187800,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -187808,14 +187808,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -187823,7 +187823,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -188086,21 +188086,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188108,7 +188108,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -188378,21 +188378,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188400,7 +188400,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -188662,21 +188662,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188684,7 +188684,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -188946,21 +188946,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188968,7 +188968,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -189346,21 +189346,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189368,7 +189368,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -189744,21 +189744,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189766,7 +189766,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -190142,21 +190142,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190164,7 +190164,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -190540,21 +190540,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190562,7 +190562,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -190932,7 +190932,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -190966,14 +190966,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190981,7 +190981,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -191022,21 +191022,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -191222,7 +191222,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -191258,21 +191258,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -191458,7 +191458,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -191494,21 +191494,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -191694,7 +191694,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -191808,14 +191808,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -191830,7 +191830,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -191870,28 +191870,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -192352,28 +192352,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -192856,28 +192856,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -193344,28 +193344,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -193909,28 +193909,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -194468,28 +194468,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -194952,21 +194952,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -194974,7 +194974,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -195020,21 +195020,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195042,7 +195042,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -195612,7 +195612,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -195626,14 +195626,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195641,7 +195641,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -195705,21 +195705,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195727,7 +195727,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -195941,14 +195941,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -195963,7 +195963,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -196174,14 +196174,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -196196,7 +196196,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -196408,14 +196408,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -196430,7 +196430,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -196740,14 +196740,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -196762,7 +196762,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -196974,14 +196974,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -196996,7 +196996,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -197210,28 +197210,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -197387,28 +197387,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -197566,21 +197566,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -197588,7 +197588,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -197625,14 +197625,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -197646,7 +197646,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -197654,7 +197654,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -197700,21 +197700,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -197722,7 +197722,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -198462,21 +198462,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -198484,7 +198484,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -199221,21 +199221,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199243,7 +199243,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -199974,21 +199974,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -199996,7 +199996,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -200730,21 +200730,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -200752,7 +200752,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -202321,21 +202321,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -202343,7 +202343,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -203911,21 +203911,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -203933,7 +203933,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, diff --git a/src/webhooks/data/ghes-3.7/schema.json b/src/webhooks/data/ghes-3.7/schema.json index 4bb324e07a..43a4aa375e 100644 --- a/src/webhooks/data/ghes-3.7/schema.json +++ b/src/webhooks/data/ghes-3.7/schema.json @@ -26,21 +26,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -251,7 +251,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -290,21 +290,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -515,7 +515,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -663,21 +663,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -888,7 +888,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -939,14 +939,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -960,14 +960,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -2996,21 +2996,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -3018,7 +3018,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -5046,21 +5046,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -5068,7 +5068,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -7097,21 +7097,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -7132,7 +7132,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9160,21 +9160,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -9182,7 +9182,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9199,7 +9199,7 @@ "check_suite": { "completed": { "descriptionHtml": "

All check runs in a check suite have completed, and a conclusion is available.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10060,21 +10060,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10082,7 +10082,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10097,7 +10097,7 @@ }, "requested": { "descriptionHtml": "

Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see the GraphQL API documentation for creating a check run or \"Create a check run\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10956,21 +10956,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10978,7 +10978,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10993,7 +10993,7 @@ }, "rerequested": { "descriptionHtml": "

Someone requested to re-run the check runs in a check suite. For more information, see the GraphQL API documentation for creating a check suite or \"Create a check suite\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -11851,21 +11851,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -11873,7 +11873,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12251,14 +12251,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12272,7 +12272,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12280,7 +12280,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12685,14 +12685,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12706,7 +12706,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12714,7 +12714,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13019,14 +13019,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13040,7 +13040,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13048,7 +13048,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13457,14 +13457,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13478,7 +13478,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13486,7 +13486,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13772,14 +13772,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13793,7 +13793,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13801,7 +13801,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14056,14 +14056,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14077,7 +14077,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14085,7 +14085,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14404,21 +14404,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14426,7 +14426,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14463,7 +14463,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -14477,7 +14477,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14509,7 +14509,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14517,7 +14517,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14547,14 +14547,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14586,7 +14586,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14594,7 +14594,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15149,14 +15149,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15170,7 +15170,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15178,7 +15178,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15731,14 +15731,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15752,7 +15752,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15760,7 +15760,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16313,14 +16313,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16334,7 +16334,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16342,7 +16342,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16895,14 +16895,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16916,7 +16916,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16924,7 +16924,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17477,14 +17477,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17498,7 +17498,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17506,7 +17506,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17547,7 +17547,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -17615,14 +17615,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17630,7 +17630,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17669,7 +17669,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -17737,14 +17737,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17752,7 +17752,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18523,21 +18523,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18545,7 +18545,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -19990,14 +19990,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -20005,7 +20005,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -20148,7 +20148,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -21632,14 +21632,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -21647,7 +21647,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -21790,7 +21790,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -23176,14 +23176,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -23191,7 +23191,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -23456,7 +23456,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -26331,21 +26331,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -26353,7 +26353,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -28480,21 +28480,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -28502,7 +28502,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -29139,21 +29139,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -29161,7 +29161,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -29690,21 +29690,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -29712,7 +29712,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -30265,21 +30265,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -30287,7 +30287,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -30874,21 +30874,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -30896,7 +30896,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -31449,7 +31449,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -31507,14 +31507,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -31522,7 +31522,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -32075,21 +32075,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -32097,7 +32097,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -32650,21 +32650,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -32672,7 +32672,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -33223,7 +33223,7 @@ { "type": "object", "name": "new_repository", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [ { @@ -35249,21 +35249,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -35271,7 +35271,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36089,14 +36089,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36104,7 +36104,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -36656,7 +36656,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -36714,14 +36714,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36729,7 +36729,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37282,21 +37282,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37304,7 +37304,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37857,21 +37857,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37879,7 +37879,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -38707,21 +38707,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -38729,7 +38729,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -39555,21 +39555,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -39577,7 +39577,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -40426,21 +40426,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -40448,7 +40448,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -40482,7 +40482,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -40511,7 +40511,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -41262,21 +41262,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41284,7 +41284,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41326,28 +41326,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41375,14 +41375,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41438,7 +41438,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41446,7 +41446,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41495,7 +41495,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41540,7 +41540,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41667,7 +41667,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41712,7 +41712,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41757,7 +41757,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41770,7 +41770,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41815,7 +41815,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41860,7 +41860,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41873,7 +41873,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41918,7 +41918,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41963,7 +41963,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41976,7 +41976,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42021,7 +42021,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42066,7 +42066,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -42079,7 +42079,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42126,7 +42126,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42206,7 +42206,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -42345,7 +42345,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42390,7 +42390,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42475,7 +42475,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -42614,7 +42614,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42876,7 +42876,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -42884,21 +42884,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -43460,7 +43460,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -44252,14 +44252,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -44267,7 +44267,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -44824,7 +44824,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -45616,14 +45616,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45631,7 +45631,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46210,7 +46210,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -47002,14 +47002,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -47017,7 +47017,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47178,7 +47178,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -48469,14 +48469,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -48484,7 +48484,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48523,7 +48523,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -49153,14 +49153,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -49168,7 +49168,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -49207,7 +49207,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -50494,14 +50494,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -50509,7 +50509,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -50548,7 +50548,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -51396,14 +51396,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -51411,7 +51411,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -51485,7 +51485,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -52826,14 +52826,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -52841,7 +52841,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -52880,7 +52880,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54221,14 +54221,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54236,7 +54236,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54275,7 +54275,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54902,14 +54902,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54917,7 +54917,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54956,7 +54956,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -55804,14 +55804,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -55819,7 +55819,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -57863,7 +57863,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -59152,14 +59152,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -59167,7 +59167,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59206,7 +59206,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60493,14 +60493,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -60508,7 +60508,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -60547,7 +60547,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -61177,14 +61177,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -61192,7 +61192,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -63249,7 +63249,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -64536,14 +64536,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -64551,7 +64551,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -64711,7 +64711,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -66002,14 +66002,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -66017,7 +66017,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -66056,7 +66056,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -67397,14 +67397,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -67412,7 +67412,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -67451,7 +67451,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -68078,14 +68078,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -68093,7 +68093,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -68132,7 +68132,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69419,14 +69419,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69434,7 +69434,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69475,7 +69475,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69533,14 +69533,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69548,7 +69548,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -69586,7 +69586,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69644,14 +69644,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69659,7 +69659,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69745,7 +69745,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69803,14 +69803,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69818,7 +69818,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69885,7 +69885,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70013,14 +70013,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70028,7 +70028,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -70107,7 +70107,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70235,14 +70235,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70250,7 +70250,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -70290,7 +70290,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70418,14 +70418,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70433,7 +70433,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -70475,7 +70475,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70603,7 +70603,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -70611,7 +70611,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -70821,7 +70821,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70949,7 +70949,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -70957,7 +70957,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -71263,28 +71263,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -71326,7 +71326,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71557,14 +71557,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71572,7 +71572,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71611,7 +71611,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71841,14 +71841,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71856,7 +71856,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71895,7 +71895,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72126,14 +72126,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72141,7 +72141,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72228,7 +72228,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72459,14 +72459,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72474,7 +72474,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72513,7 +72513,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72743,14 +72743,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72758,7 +72758,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72799,7 +72799,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72958,7 +72958,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -72966,14 +72966,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73012,7 +73012,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73172,7 +73172,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -73180,14 +73180,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73226,7 +73226,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73427,7 +73427,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -73435,14 +73435,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -73601,7 +73601,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73761,7 +73761,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -73769,14 +73769,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73835,7 +73835,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73994,7 +73994,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -74002,14 +74002,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74050,14 +74050,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -75105,14 +75105,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75151,14 +75151,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -75965,7 +75965,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75973,7 +75973,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76189,21 +76189,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76211,7 +76211,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76371,21 +76371,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -76456,14 +76456,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76669,14 +76669,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76715,14 +76715,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76928,14 +76928,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76974,14 +76974,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77188,14 +77188,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77257,14 +77257,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77470,14 +77470,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77538,14 +77538,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77753,14 +77753,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77801,14 +77801,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78020,14 +78020,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78066,14 +78066,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78285,14 +78285,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78331,14 +78331,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78550,14 +78550,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -78629,14 +78629,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78848,14 +78848,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -78893,14 +78893,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79112,14 +79112,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79160,14 +79160,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79236,14 +79236,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79281,14 +79281,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79357,14 +79357,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79424,14 +79424,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79500,14 +79500,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79545,14 +79545,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79621,14 +79621,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79688,14 +79688,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -79893,7 +79893,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79949,14 +79949,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80154,7 +80154,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80184,14 +80184,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80389,7 +80389,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80419,14 +80419,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80624,7 +80624,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80660,14 +80660,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80865,7 +80865,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80921,14 +80921,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81126,7 +81126,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81182,14 +81182,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81387,7 +81387,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81415,21 +81415,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -81437,7 +81437,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81599,7 +81599,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81613,7 +81613,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84765,7 +84765,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -84773,7 +84773,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84812,7 +84812,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -84826,7 +84826,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87983,7 +87983,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -87991,7 +87991,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88030,7 +88030,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -88044,7 +88044,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -91201,7 +91201,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -91209,7 +91209,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -91248,7 +91248,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -91262,7 +91262,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -94509,7 +94509,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -94517,7 +94517,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94556,7 +94556,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -94570,7 +94570,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -97817,7 +97817,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -97825,7 +97825,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -98105,7 +98105,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -101258,7 +101258,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -101266,7 +101266,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -101374,7 +101374,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -101388,7 +101388,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -104635,7 +104635,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -104643,7 +104643,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -104681,7 +104681,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -104745,7 +104745,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -107898,7 +107898,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -107906,7 +107906,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -107945,7 +107945,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -107959,7 +107959,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -111110,7 +111110,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -111118,7 +111118,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -111398,7 +111398,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -114551,7 +114551,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -114559,7 +114559,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -114597,7 +114597,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -114611,7 +114611,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -117858,7 +117858,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -117866,7 +117866,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -117905,7 +117905,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -117919,7 +117919,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -121166,7 +121166,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -121174,7 +121174,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -121213,7 +121213,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -121227,7 +121227,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -124474,7 +124474,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -124482,7 +124482,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -124521,7 +124521,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -124535,7 +124535,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -127693,7 +127693,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -127822,7 +127822,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -128024,7 +128024,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -128038,7 +128038,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -131190,7 +131190,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -131320,7 +131320,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -131527,7 +131527,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -131541,7 +131541,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -134693,7 +134693,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -134701,7 +134701,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -134861,7 +134861,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -134875,7 +134875,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -138028,7 +138028,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -138036,7 +138036,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -138074,7 +138074,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -138138,7 +138138,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -141290,7 +141290,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -141298,7 +141298,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -141337,7 +141337,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -141351,7 +141351,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -144500,7 +144500,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -144508,7 +144508,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -144962,14 +144962,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -147944,7 +147944,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -147952,7 +147952,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -148404,14 +148404,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -151385,7 +151385,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -151393,7 +151393,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -151867,14 +151867,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -154849,7 +154849,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -154857,7 +154857,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -154898,14 +154898,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -157882,7 +157882,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -158125,7 +158125,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -158186,14 +158186,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -161059,7 +161059,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -161296,7 +161296,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -161335,14 +161335,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -164320,7 +164320,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -164557,7 +164557,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -164598,14 +164598,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -167493,7 +167493,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -167501,7 +167501,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -167967,14 +167967,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -170861,7 +170861,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -170869,7 +170869,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -171614,14 +171614,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -171673,7 +171673,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -171713,14 +171713,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -172718,14 +172718,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -172764,14 +172764,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -173512,14 +173512,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -173560,14 +173560,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -174073,7 +174073,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -174081,7 +174081,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -174120,14 +174120,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -174633,7 +174633,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -174641,7 +174641,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -174715,14 +174715,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -175228,7 +175228,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -175236,7 +175236,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -175274,14 +175274,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -175787,7 +175787,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -175795,7 +175795,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -175833,14 +175833,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -176346,7 +176346,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -176354,7 +176354,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -176392,14 +176392,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -176905,7 +176905,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -176913,7 +176913,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -176951,14 +176951,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -177464,7 +177464,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177472,7 +177472,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -177512,28 +177512,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -177572,28 +177572,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -177632,21 +177632,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177654,7 +177654,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177694,21 +177694,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177716,7 +177716,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177756,21 +177756,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177778,7 +177778,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177878,21 +177878,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177900,7 +177900,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177940,21 +177940,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177962,7 +177962,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178002,21 +178002,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178024,7 +178024,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178095,21 +178095,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178117,7 +178117,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178385,21 +178385,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178407,7 +178407,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178447,21 +178447,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178469,7 +178469,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178525,7 +178525,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -178533,14 +178533,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178548,7 +178548,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178811,21 +178811,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178833,7 +178833,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -179103,21 +179103,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179125,7 +179125,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -179387,21 +179387,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179409,7 +179409,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -179671,21 +179671,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179693,7 +179693,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -180066,21 +180066,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180088,7 +180088,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -180459,21 +180459,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180481,7 +180481,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -180852,21 +180852,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180874,7 +180874,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181245,21 +181245,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181267,7 +181267,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181632,7 +181632,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -181663,14 +181663,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181678,7 +181678,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -181719,21 +181719,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -181919,7 +181919,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181955,21 +181955,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -182155,7 +182155,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182191,21 +182191,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -182391,7 +182391,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182489,14 +182489,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -182511,7 +182511,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182551,28 +182551,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -183033,28 +183033,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -183537,28 +183537,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -184025,28 +184025,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -184590,28 +184590,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -185149,28 +185149,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -185633,21 +185633,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185655,7 +185655,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -185701,21 +185701,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185723,7 +185723,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186293,7 +186293,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -186307,14 +186307,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186322,7 +186322,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186386,21 +186386,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186408,7 +186408,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186603,14 +186603,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -186625,7 +186625,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -186817,14 +186817,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -186839,7 +186839,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187032,14 +187032,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -187054,7 +187054,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -187332,14 +187332,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -187354,7 +187354,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187547,14 +187547,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -187569,7 +187569,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187764,28 +187764,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -187941,28 +187941,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -188120,21 +188120,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188142,7 +188142,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -188179,14 +188179,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -188200,7 +188200,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188208,7 +188208,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188254,21 +188254,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188276,7 +188276,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188529,21 +188529,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188551,7 +188551,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188801,21 +188801,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188823,7 +188823,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189069,21 +189069,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189091,7 +189091,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -190660,21 +190660,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190682,7 +190682,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -192250,21 +192250,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -192272,7 +192272,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, diff --git a/src/webhooks/data/ghes-3.8/schema.json b/src/webhooks/data/ghes-3.8/schema.json index 987cf6a8cf..1c2025b1a1 100644 --- a/src/webhooks/data/ghes-3.8/schema.json +++ b/src/webhooks/data/ghes-3.8/schema.json @@ -26,21 +26,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -251,7 +251,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -290,21 +290,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -515,7 +515,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -663,21 +663,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -888,7 +888,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -939,14 +939,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -960,14 +960,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -2996,21 +2996,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -3018,7 +3018,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -5046,21 +5046,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -5068,7 +5068,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -7097,21 +7097,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -7132,7 +7132,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9160,21 +9160,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -9182,7 +9182,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9199,7 +9199,7 @@ "check_suite": { "completed": { "descriptionHtml": "

All check runs in a check suite have completed, and a conclusion is available.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10060,21 +10060,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10082,7 +10082,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10097,7 +10097,7 @@ }, "requested": { "descriptionHtml": "

Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see the GraphQL API documentation for creating a check run or \"Create a check run\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10956,21 +10956,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10978,7 +10978,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10993,7 +10993,7 @@ }, "rerequested": { "descriptionHtml": "

Someone requested to re-run the check runs in a check suite. For more information, see the GraphQL API documentation for creating a check suite or \"Create a check suite\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -11851,21 +11851,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -11873,7 +11873,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12251,14 +12251,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12272,7 +12272,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12280,7 +12280,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12685,14 +12685,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12706,7 +12706,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12714,7 +12714,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13019,14 +13019,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13040,7 +13040,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13048,7 +13048,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13457,14 +13457,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13478,7 +13478,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13486,7 +13486,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13772,14 +13772,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13793,7 +13793,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13801,7 +13801,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14056,14 +14056,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14077,7 +14077,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14085,7 +14085,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14404,21 +14404,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14426,7 +14426,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14463,7 +14463,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -14477,7 +14477,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14509,7 +14509,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14517,7 +14517,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14547,14 +14547,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14586,7 +14586,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14594,7 +14594,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15149,14 +15149,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15170,7 +15170,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15178,7 +15178,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15731,14 +15731,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15752,7 +15752,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15760,7 +15760,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16313,14 +16313,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16334,7 +16334,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16342,7 +16342,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16895,14 +16895,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16916,7 +16916,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16924,7 +16924,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17477,14 +17477,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17498,7 +17498,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17506,7 +17506,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17547,7 +17547,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -17615,14 +17615,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17630,7 +17630,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17669,7 +17669,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -17737,14 +17737,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17752,7 +17752,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18523,21 +18523,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18545,7 +18545,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -19990,14 +19990,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -20005,7 +20005,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -20148,7 +20148,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -21632,14 +21632,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -21647,7 +21647,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -21790,7 +21790,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -23176,14 +23176,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -23191,7 +23191,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -23456,7 +23456,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -26331,21 +26331,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -26353,7 +26353,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -28480,21 +28480,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -28502,7 +28502,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -29139,21 +29139,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -29161,7 +29161,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -29690,21 +29690,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -29712,7 +29712,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -30265,21 +30265,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -30287,7 +30287,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -30874,21 +30874,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -30896,7 +30896,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -31449,7 +31449,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -31507,14 +31507,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -31522,7 +31522,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -32075,21 +32075,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -32097,7 +32097,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -32650,21 +32650,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -32672,7 +32672,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -33223,7 +33223,7 @@ { "type": "object", "name": "new_repository", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [ { @@ -35249,21 +35249,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -35271,7 +35271,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -36089,14 +36089,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36104,7 +36104,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -36656,7 +36656,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -36714,14 +36714,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36729,7 +36729,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37282,21 +37282,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37304,7 +37304,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37857,21 +37857,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37879,7 +37879,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -38707,21 +38707,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -38729,7 +38729,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -39555,21 +39555,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -39577,7 +39577,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -40426,21 +40426,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -40448,7 +40448,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -40482,7 +40482,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -40511,7 +40511,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -41262,21 +41262,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41284,7 +41284,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41326,28 +41326,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41375,14 +41375,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41438,7 +41438,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41446,7 +41446,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41495,7 +41495,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41540,7 +41540,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41667,7 +41667,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41712,7 +41712,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41757,7 +41757,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41770,7 +41770,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41815,7 +41815,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41860,7 +41860,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41873,7 +41873,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41918,7 +41918,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -41963,7 +41963,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -41976,7 +41976,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42021,7 +42021,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42066,7 +42066,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -42079,7 +42079,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42126,7 +42126,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42206,7 +42206,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -42345,7 +42345,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42390,7 +42390,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42475,7 +42475,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -42614,7 +42614,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42876,7 +42876,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -42884,21 +42884,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -43460,7 +43460,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -44252,14 +44252,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -44267,7 +44267,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -44824,7 +44824,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -45616,14 +45616,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45631,7 +45631,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46210,7 +46210,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -47002,14 +47002,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -47017,7 +47017,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47178,7 +47178,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -48469,14 +48469,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -48484,7 +48484,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48523,7 +48523,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -49153,14 +49153,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -49168,7 +49168,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -49207,7 +49207,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -50494,14 +50494,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -50509,7 +50509,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -50548,7 +50548,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -51396,14 +51396,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -51411,7 +51411,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -51485,7 +51485,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -52826,14 +52826,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -52841,7 +52841,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -52880,7 +52880,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54221,14 +54221,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54236,7 +54236,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54275,7 +54275,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54902,14 +54902,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54917,7 +54917,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54956,7 +54956,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -55804,14 +55804,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -55819,7 +55819,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -57863,7 +57863,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -59152,14 +59152,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -59167,7 +59167,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59206,7 +59206,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60493,14 +60493,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -60508,7 +60508,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -60547,7 +60547,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -61177,14 +61177,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -61192,7 +61192,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -63249,7 +63249,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -64536,14 +64536,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -64551,7 +64551,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -64711,7 +64711,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -66002,14 +66002,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -66017,7 +66017,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -66056,7 +66056,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -67397,14 +67397,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -67412,7 +67412,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -67451,7 +67451,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -68078,14 +68078,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -68093,7 +68093,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -68132,7 +68132,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69419,14 +69419,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69434,7 +69434,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69475,7 +69475,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69533,14 +69533,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69548,7 +69548,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -69586,7 +69586,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69644,14 +69644,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69659,7 +69659,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69745,7 +69745,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69803,14 +69803,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69818,7 +69818,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69885,7 +69885,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70013,14 +70013,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70028,7 +70028,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -70107,7 +70107,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70235,14 +70235,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70250,7 +70250,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -70290,7 +70290,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70418,14 +70418,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70433,7 +70433,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -70475,7 +70475,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70603,7 +70603,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -70611,7 +70611,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -70821,7 +70821,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70949,7 +70949,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -70957,7 +70957,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -71263,28 +71263,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -71326,7 +71326,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71557,14 +71557,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71572,7 +71572,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71611,7 +71611,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71841,14 +71841,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71856,7 +71856,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71895,7 +71895,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72126,14 +72126,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72141,7 +72141,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72228,7 +72228,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72459,14 +72459,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72474,7 +72474,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72513,7 +72513,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72743,14 +72743,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72758,7 +72758,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72799,7 +72799,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72958,7 +72958,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -72966,14 +72966,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73012,7 +73012,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73172,7 +73172,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -73180,14 +73180,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73226,7 +73226,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73427,7 +73427,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -73435,14 +73435,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -73601,7 +73601,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73761,7 +73761,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -73769,14 +73769,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73835,7 +73835,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73994,7 +73994,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -74002,14 +74002,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74050,14 +74050,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -75105,14 +75105,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75151,14 +75151,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -75965,7 +75965,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -75973,7 +75973,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76189,21 +76189,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -76211,7 +76211,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76371,21 +76371,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -76456,14 +76456,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76669,14 +76669,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76715,14 +76715,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76928,14 +76928,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76974,14 +76974,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77188,14 +77188,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77257,14 +77257,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77470,14 +77470,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77538,14 +77538,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77753,14 +77753,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77801,14 +77801,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78020,14 +78020,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78066,14 +78066,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78285,14 +78285,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78331,14 +78331,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78550,14 +78550,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -78629,14 +78629,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78848,14 +78848,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -78893,14 +78893,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79112,14 +79112,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79160,14 +79160,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79236,14 +79236,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79281,14 +79281,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79357,14 +79357,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79424,14 +79424,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79500,14 +79500,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79545,14 +79545,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79621,14 +79621,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79688,14 +79688,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -79893,7 +79893,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79949,14 +79949,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80154,7 +80154,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80184,14 +80184,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80389,7 +80389,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80419,14 +80419,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80624,7 +80624,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80660,14 +80660,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -80865,7 +80865,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80921,14 +80921,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81126,7 +81126,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81182,14 +81182,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81387,7 +81387,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81415,21 +81415,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -81437,7 +81437,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81599,7 +81599,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -81613,7 +81613,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -84765,7 +84765,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -84773,7 +84773,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84812,7 +84812,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -84826,7 +84826,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -87983,7 +87983,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -87991,7 +87991,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88030,7 +88030,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -88044,7 +88044,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -91201,7 +91201,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -91209,7 +91209,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -91248,7 +91248,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -91262,7 +91262,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -94509,7 +94509,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -94517,7 +94517,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -94556,7 +94556,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -94570,7 +94570,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -97817,7 +97817,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -97825,7 +97825,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -98105,7 +98105,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -101258,7 +101258,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -101266,7 +101266,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -101374,7 +101374,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -101388,7 +101388,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -104635,7 +104635,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -104643,7 +104643,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -104681,7 +104681,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -104745,7 +104745,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -107898,7 +107898,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -107906,7 +107906,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -107945,7 +107945,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -107959,7 +107959,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -111110,7 +111110,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -111118,7 +111118,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -111398,7 +111398,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -114551,7 +114551,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -114559,7 +114559,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -114597,7 +114597,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -114611,7 +114611,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -117858,7 +117858,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -117866,7 +117866,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -117905,7 +117905,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -117919,7 +117919,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -121166,7 +121166,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -121174,7 +121174,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -121213,7 +121213,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -121227,7 +121227,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -124474,7 +124474,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -124482,7 +124482,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -124521,7 +124521,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -124535,7 +124535,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -127693,7 +127693,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -127822,7 +127822,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -128024,7 +128024,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -128038,7 +128038,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -131190,7 +131190,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -131320,7 +131320,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -131527,7 +131527,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -131541,7 +131541,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -134693,7 +134693,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -134701,7 +134701,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -134861,7 +134861,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -134875,7 +134875,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -138028,7 +138028,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -138036,7 +138036,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -138074,7 +138074,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -138138,7 +138138,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -141290,7 +141290,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -141298,7 +141298,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -141337,7 +141337,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -141351,7 +141351,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -144500,7 +144500,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -144508,7 +144508,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -144962,14 +144962,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -147944,7 +147944,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -147952,7 +147952,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -148404,14 +148404,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -151385,7 +151385,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -151393,7 +151393,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -151867,14 +151867,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -154849,7 +154849,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -154857,7 +154857,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -154898,14 +154898,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -157882,7 +157882,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -158125,7 +158125,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -158186,14 +158186,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -161059,7 +161059,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -161296,7 +161296,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -161335,14 +161335,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -164320,7 +164320,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -164557,7 +164557,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -164598,14 +164598,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -167493,7 +167493,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -167501,7 +167501,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -167967,14 +167967,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -170861,7 +170861,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -170869,7 +170869,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -171614,14 +171614,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -171673,7 +171673,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -171713,14 +171713,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -172718,14 +172718,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -172764,14 +172764,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -173512,14 +173512,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -173560,14 +173560,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -174073,7 +174073,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -174081,7 +174081,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -174120,14 +174120,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -174633,7 +174633,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -174641,7 +174641,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -174715,14 +174715,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -175228,7 +175228,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -175236,7 +175236,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -175274,14 +175274,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -175787,7 +175787,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -175795,7 +175795,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -175833,14 +175833,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -176346,7 +176346,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -176354,7 +176354,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -176392,14 +176392,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -176905,7 +176905,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -176913,7 +176913,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -176951,14 +176951,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -177464,7 +177464,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177472,7 +177472,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -177512,28 +177512,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -177572,28 +177572,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -177632,21 +177632,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177654,7 +177654,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177694,21 +177694,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177716,7 +177716,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177756,21 +177756,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177778,7 +177778,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177878,21 +177878,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177900,7 +177900,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177940,21 +177940,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -177962,7 +177962,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178002,21 +178002,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178024,7 +178024,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178095,21 +178095,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178117,7 +178117,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178385,21 +178385,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178407,7 +178407,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178447,21 +178447,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178469,7 +178469,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178525,7 +178525,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -178533,14 +178533,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178548,7 +178548,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178811,21 +178811,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178833,7 +178833,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -179103,21 +179103,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179125,7 +179125,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -179387,21 +179387,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179409,7 +179409,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -179671,21 +179671,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179693,7 +179693,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -180071,21 +180071,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180093,7 +180093,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -180469,21 +180469,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180491,7 +180491,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -180867,21 +180867,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180889,7 +180889,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181265,21 +181265,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181287,7 +181287,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181657,7 +181657,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -181691,14 +181691,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181706,7 +181706,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -181747,21 +181747,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -181947,7 +181947,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181983,21 +181983,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -182183,7 +182183,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182219,21 +182219,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -182419,7 +182419,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182517,14 +182517,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -182539,7 +182539,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -182579,28 +182579,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -183061,28 +183061,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -183565,28 +183565,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -184053,28 +184053,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -184618,28 +184618,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -185177,28 +185177,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -185661,21 +185661,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185683,7 +185683,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -185729,21 +185729,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185751,7 +185751,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186321,7 +186321,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -186335,14 +186335,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186350,7 +186350,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186414,21 +186414,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -186436,7 +186436,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -186631,14 +186631,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -186653,7 +186653,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -186845,14 +186845,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -186867,7 +186867,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187060,14 +187060,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -187082,7 +187082,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -187360,14 +187360,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -187382,7 +187382,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187575,14 +187575,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -187597,7 +187597,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187792,28 +187792,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -187969,28 +187969,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -188148,21 +188148,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188170,7 +188170,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -188207,14 +188207,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -188228,7 +188228,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188236,7 +188236,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188282,21 +188282,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -188304,7 +188304,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189044,21 +189044,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189066,7 +189066,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189803,21 +189803,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189825,7 +189825,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -190556,21 +190556,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190578,7 +190578,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -191312,21 +191312,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -191334,7 +191334,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -192903,21 +192903,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -192925,7 +192925,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -194493,21 +194493,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -194515,7 +194515,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, diff --git a/src/webhooks/data/ghes-3.9/schema.json b/src/webhooks/data/ghes-3.9/schema.json index 6f503d729f..9afbcee577 100644 --- a/src/webhooks/data/ghes-3.9/schema.json +++ b/src/webhooks/data/ghes-3.9/schema.json @@ -26,21 +26,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -251,7 +251,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -290,21 +290,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -515,7 +515,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -663,21 +663,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -888,7 +888,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -939,14 +939,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -960,14 +960,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -3051,21 +3051,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -3073,7 +3073,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -5156,21 +5156,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -5178,7 +5178,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -7262,21 +7262,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -7297,7 +7297,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9380,21 +9380,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -9402,7 +9402,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -9419,7 +9419,7 @@ "check_suite": { "completed": { "descriptionHtml": "

All check runs in a check suite have completed, and a conclusion is available.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -10280,21 +10280,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -10302,7 +10302,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -10317,7 +10317,7 @@ }, "requested": { "descriptionHtml": "

Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see the GraphQL API documentation for creating a check run or \"Create a check run\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -11176,21 +11176,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -11198,7 +11198,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -11213,7 +11213,7 @@ }, "rerequested": { "descriptionHtml": "

Someone requested to re-run the check runs in a check suite. For more information, see the GraphQL API documentation for creating a check suite or \"Create a check suite\" in the REST API documentation.

", - "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at lease write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", + "summaryHtml": "

This event occurs when there is activity relating to a check suite. For information about check suites, see \"Getting started with the Checks API.\" For information about the APIs to manage check suites, see the GraphQL API documentation or \"Check Suites\" in the REST API documentation.

\n

For activity relating to check runs, use the check_run event.

\n

To subscribe to this event, a GitHub App must have at least read-level access for the \"Checks\" permission. To receive the requested and rerequested event types, the app must have at least write-level access for the \"Checks\" permission. GitHub Apps with write-level access for the \"Checks\" permission are automatically subscribed to this webhook event.

\n

Repository and organization webhooks only receive payloads for the completed event types in repositories.

\n

Note: The API only looks for pushes in the repository where the check suite was created. Pushes to a branch in a forked repository are not detected and return an empty pull_requests array and a null value for head_branch.

", "bodyParameters": [ { "type": "string", @@ -12071,21 +12071,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12093,7 +12093,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12471,14 +12471,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12492,7 +12492,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12500,7 +12500,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -12905,14 +12905,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -12926,7 +12926,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -12934,7 +12934,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13239,14 +13239,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13260,7 +13260,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13268,7 +13268,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13677,14 +13677,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -13698,7 +13698,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -13706,7 +13706,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -13992,14 +13992,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14013,7 +14013,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14021,7 +14021,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14276,14 +14276,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14297,7 +14297,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14305,7 +14305,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14624,21 +14624,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14646,7 +14646,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14683,7 +14683,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -14697,7 +14697,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14729,7 +14729,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14737,7 +14737,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -14767,14 +14767,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -14806,7 +14806,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -14814,7 +14814,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15369,14 +15369,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15390,7 +15390,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15398,7 +15398,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -15951,14 +15951,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -15972,7 +15972,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -15980,7 +15980,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -16533,14 +16533,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -16554,7 +16554,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -16562,7 +16562,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17115,14 +17115,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17136,7 +17136,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17144,7 +17144,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17697,14 +17697,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -17718,7 +17718,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17726,7 +17726,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17767,7 +17767,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -17835,14 +17835,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17850,7 +17850,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -17889,7 +17889,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -17957,14 +17957,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -17972,7 +17972,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -18743,21 +18743,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -18765,7 +18765,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -20210,14 +20210,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -20225,7 +20225,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -20368,7 +20368,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -21852,14 +21852,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -21867,7 +21867,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -22010,7 +22010,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -23396,14 +23396,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -23411,7 +23411,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -23676,7 +23676,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -26551,21 +26551,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -26573,7 +26573,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -28700,21 +28700,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -28722,7 +28722,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -29359,21 +29359,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -29381,7 +29381,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -29934,21 +29934,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -29956,7 +29956,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -30485,21 +30485,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -30507,7 +30507,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -31060,21 +31060,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -31082,7 +31082,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -31669,21 +31669,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -31691,7 +31691,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -32244,7 +32244,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -32302,14 +32302,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -32317,7 +32317,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -32870,21 +32870,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -32892,7 +32892,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -33445,21 +33445,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -33467,7 +33467,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34020,21 +34020,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -34042,7 +34042,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -34593,7 +34593,7 @@ { "type": "object", "name": "new_repository", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [ { @@ -36619,21 +36619,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -36641,7 +36641,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -37459,14 +37459,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -37474,7 +37474,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -38026,7 +38026,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -38084,14 +38084,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -38099,7 +38099,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -38652,21 +38652,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -38674,7 +38674,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -39227,21 +39227,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -39249,7 +39249,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -40077,21 +40077,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -40099,7 +40099,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -40925,21 +40925,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -40947,7 +40947,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41796,21 +41796,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -41818,7 +41818,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -41852,7 +41852,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -41881,7 +41881,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -42632,21 +42632,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -42654,7 +42654,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42696,28 +42696,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42745,14 +42745,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42808,7 +42808,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -42816,7 +42816,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -42865,7 +42865,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -42910,7 +42910,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -43037,7 +43037,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43082,7 +43082,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -43127,7 +43127,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -43140,7 +43140,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43185,7 +43185,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -43230,7 +43230,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -43243,7 +43243,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43288,7 +43288,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -43333,7 +43333,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -43346,7 +43346,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43391,7 +43391,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -43436,7 +43436,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -43449,7 +43449,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43496,7 +43496,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -43576,7 +43576,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -43715,7 +43715,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -43760,7 +43760,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -43845,7 +43845,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -43984,7 +43984,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -44246,7 +44246,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -44254,21 +44254,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -44830,7 +44830,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -45622,14 +45622,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -45637,7 +45637,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -46194,7 +46194,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -46986,14 +46986,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -47001,7 +47001,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -47580,7 +47580,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -48372,14 +48372,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -48387,7 +48387,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -48548,7 +48548,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -49839,14 +49839,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -49854,7 +49854,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -49893,7 +49893,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -50523,14 +50523,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -50538,7 +50538,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -50577,7 +50577,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -51864,14 +51864,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -51879,7 +51879,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -51918,7 +51918,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -52766,14 +52766,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -52781,7 +52781,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -52855,7 +52855,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -54196,14 +54196,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -54211,7 +54211,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -54250,7 +54250,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -55591,14 +55591,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -55606,7 +55606,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -55645,7 +55645,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -56272,14 +56272,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -56287,7 +56287,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -56326,7 +56326,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -57174,14 +57174,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -57189,7 +57189,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -59233,7 +59233,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -60522,14 +60522,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -60537,7 +60537,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -60576,7 +60576,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -61863,14 +61863,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -61878,7 +61878,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -61917,7 +61917,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -62547,14 +62547,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -62562,7 +62562,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -64619,7 +64619,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -65906,14 +65906,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -65921,7 +65921,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -66081,7 +66081,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -67372,14 +67372,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -67387,7 +67387,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -67426,7 +67426,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -68767,14 +68767,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -68782,7 +68782,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -68821,7 +68821,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -69448,14 +69448,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -69463,7 +69463,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -69502,7 +69502,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70789,14 +70789,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70804,7 +70804,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -70845,7 +70845,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -70903,14 +70903,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -70918,7 +70918,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -70956,7 +70956,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71014,14 +71014,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71029,7 +71029,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71115,7 +71115,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71173,14 +71173,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71188,7 +71188,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71255,7 +71255,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71383,14 +71383,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71398,7 +71398,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71477,7 +71477,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71605,14 +71605,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71620,7 +71620,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71660,7 +71660,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71788,14 +71788,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -71803,7 +71803,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -71845,7 +71845,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -71973,7 +71973,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -71981,7 +71981,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -72191,7 +72191,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72319,7 +72319,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -72327,7 +72327,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -72633,28 +72633,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -72696,7 +72696,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -72927,14 +72927,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -72942,7 +72942,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -72981,7 +72981,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73211,14 +73211,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -73226,7 +73226,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73265,7 +73265,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73496,14 +73496,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -73511,7 +73511,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73598,7 +73598,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -73829,14 +73829,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -73844,7 +73844,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -73883,7 +73883,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74113,14 +74113,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -74128,7 +74128,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74169,7 +74169,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74328,7 +74328,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -74336,14 +74336,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74382,7 +74382,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74542,7 +74542,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -74550,14 +74550,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -74596,7 +74596,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -74797,7 +74797,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -74805,14 +74805,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -74971,7 +74971,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75131,7 +75131,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -75139,14 +75139,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75205,7 +75205,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -75364,7 +75364,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -75372,14 +75372,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -75420,14 +75420,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -76475,14 +76475,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -76521,14 +76521,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -77335,7 +77335,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77343,7 +77343,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77559,21 +77559,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -77581,7 +77581,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -77741,21 +77741,21 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -77826,14 +77826,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78039,14 +78039,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78085,14 +78085,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78298,14 +78298,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78344,14 +78344,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78558,14 +78558,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78627,14 +78627,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -78840,14 +78840,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -78908,14 +78908,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79123,14 +79123,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79171,14 +79171,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79390,14 +79390,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79436,14 +79436,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79655,14 +79655,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -79701,14 +79701,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -79920,14 +79920,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -79999,14 +79999,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80218,14 +80218,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -80263,14 +80263,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80482,14 +80482,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -80530,14 +80530,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80606,14 +80606,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -80651,14 +80651,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80727,14 +80727,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -80794,14 +80794,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80870,14 +80870,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -80915,14 +80915,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -80991,14 +80991,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81032,14 +81032,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -81515,7 +81515,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -81545,14 +81545,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82028,7 +82028,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82058,14 +82058,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -82541,7 +82541,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -82648,14 +82648,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -83131,7 +83131,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83161,14 +83161,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -83644,7 +83644,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83702,14 +83702,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -83907,7 +83907,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -83963,14 +83963,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -84168,7 +84168,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84198,14 +84198,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -84403,7 +84403,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84433,14 +84433,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -84638,7 +84638,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84674,14 +84674,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -84879,7 +84879,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -84935,14 +84935,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85140,7 +85140,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85196,14 +85196,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -85401,7 +85401,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85429,21 +85429,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -85451,7 +85451,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -85613,7 +85613,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -85627,7 +85627,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -88779,7 +88779,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -88787,7 +88787,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -88826,7 +88826,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -88840,7 +88840,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -91997,7 +91997,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -92005,7 +92005,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -92044,7 +92044,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -92058,7 +92058,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -95215,7 +95215,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -95223,7 +95223,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -95262,7 +95262,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -95276,7 +95276,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -98523,7 +98523,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -98531,7 +98531,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -98570,7 +98570,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -98584,7 +98584,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -101831,7 +101831,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -101839,7 +101839,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -102119,7 +102119,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -105272,7 +105272,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -105280,7 +105280,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -105388,7 +105388,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -105402,7 +105402,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -108649,7 +108649,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -108657,7 +108657,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -108695,7 +108695,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -108759,7 +108759,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -111912,7 +111912,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -111920,7 +111920,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -111959,7 +111959,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -111973,7 +111973,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -115124,7 +115124,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -115132,7 +115132,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -115412,7 +115412,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -118565,7 +118565,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -118573,7 +118573,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -118611,7 +118611,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -118625,7 +118625,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -121872,7 +121872,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -121880,7 +121880,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -121919,7 +121919,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -121933,7 +121933,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -125180,7 +125180,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -125188,7 +125188,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -125227,7 +125227,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -125241,7 +125241,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -128488,7 +128488,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -128496,7 +128496,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -128535,7 +128535,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -128549,7 +128549,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -131707,7 +131707,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -131836,7 +131836,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -132038,7 +132038,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -132052,7 +132052,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -135204,7 +135204,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -135334,7 +135334,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -135541,7 +135541,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -135555,7 +135555,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -138707,7 +138707,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -138715,7 +138715,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -138875,7 +138875,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -138889,7 +138889,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -142042,7 +142042,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -142050,7 +142050,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -142088,7 +142088,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -142152,7 +142152,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -145304,7 +145304,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -145312,7 +145312,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -145351,7 +145351,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -145365,7 +145365,7 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -148514,7 +148514,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -148522,7 +148522,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -148976,14 +148976,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -151958,7 +151958,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -151966,7 +151966,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -152418,14 +152418,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -155399,7 +155399,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -155407,7 +155407,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -155881,14 +155881,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -158863,7 +158863,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -158871,7 +158871,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -158912,14 +158912,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -161896,7 +161896,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -162139,7 +162139,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -162200,14 +162200,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -165073,7 +165073,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -165310,7 +165310,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -165349,14 +165349,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -168334,7 +168334,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -168571,7 +168571,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -168612,14 +168612,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -171507,7 +171507,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -171515,7 +171515,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -171981,14 +171981,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -174875,7 +174875,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -174883,7 +174883,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -175628,14 +175628,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -175687,7 +175687,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -175727,14 +175727,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -176732,14 +176732,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -176778,14 +176778,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -177526,14 +177526,14 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -177574,14 +177574,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -178087,7 +178087,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178095,7 +178095,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178134,14 +178134,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -178647,7 +178647,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -178655,7 +178655,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -178742,14 +178742,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -179255,7 +179255,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179263,7 +179263,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -179301,14 +179301,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -179814,7 +179814,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -179822,7 +179822,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -179860,14 +179860,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180373,7 +180373,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180381,7 +180381,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -180419,14 +180419,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -180932,7 +180932,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -180940,7 +180940,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -180978,14 +180978,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -181491,7 +181491,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181499,7 +181499,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181539,28 +181539,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181599,28 +181599,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -181659,21 +181659,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181681,7 +181681,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -181721,21 +181721,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181743,7 +181743,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -181783,21 +181783,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181805,7 +181805,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -181905,21 +181905,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181927,7 +181927,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -181967,21 +181967,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -181989,7 +181989,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182029,21 +182029,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182051,7 +182051,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182122,21 +182122,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182144,7 +182144,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182412,21 +182412,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182434,7 +182434,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182474,21 +182474,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182496,7 +182496,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182552,7 +182552,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "isRequired": true, "childParamsGroups": [] }, @@ -182560,14 +182560,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182575,7 +182575,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -182838,21 +182838,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -182860,7 +182860,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183130,21 +183130,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183152,7 +183152,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183414,21 +183414,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183436,7 +183436,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -183698,21 +183698,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -183720,7 +183720,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -184098,21 +184098,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184120,7 +184120,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -184496,21 +184496,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184518,7 +184518,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -184894,21 +184894,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -184916,7 +184916,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185292,21 +185292,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185314,7 +185314,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -185684,7 +185684,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -185718,14 +185718,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -185733,7 +185733,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -185774,21 +185774,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -185974,7 +185974,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186010,21 +186010,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -186210,7 +186210,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186246,21 +186246,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { @@ -186446,7 +186446,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186544,14 +186544,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -186566,7 +186566,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] } ], @@ -186606,28 +186606,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187088,28 +187088,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -187592,28 +187592,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188080,28 +188080,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -188645,28 +188645,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189204,28 +189204,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189688,21 +189688,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189710,7 +189710,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -189756,21 +189756,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -189778,7 +189778,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -190348,7 +190348,7 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { @@ -190362,14 +190362,14 @@ "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190377,7 +190377,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -190441,21 +190441,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -190463,7 +190463,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -190658,14 +190658,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -190680,7 +190680,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -190872,14 +190872,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -190894,7 +190894,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -191087,14 +191087,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -191109,7 +191109,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -191387,14 +191387,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -191409,7 +191409,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -191602,14 +191602,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "isRequired": true, "childParamsGroups": [] }, @@ -191624,7 +191624,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -191819,28 +191819,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -191996,28 +191996,28 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "childParamsGroups": [] }, { "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "childParamsGroups": [] }, { @@ -192175,21 +192175,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -192197,7 +192197,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] } @@ -192234,14 +192234,14 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { @@ -192255,7 +192255,7 @@ "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -192263,7 +192263,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -192309,21 +192309,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -192331,7 +192331,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -193071,21 +193071,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -193093,7 +193093,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -193830,21 +193830,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -193852,7 +193852,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -194583,21 +194583,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -194605,7 +194605,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -195339,21 +195339,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -195361,7 +195361,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -196930,21 +196930,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -196952,7 +196952,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, @@ -198520,21 +198520,21 @@ "type": "object", "name": "installation", "in": "body", - "description": "

The GitHub App installation. This property is included when the event is configured for and sent to a GitHub App.

", + "description": "

The GitHub App installation. Webhook payloads contain the installation property when the event is configured\nfor and sent to a GitHub App. For more information,\nsee \"Using webhooks with GitHub Apps.\"

", "childParamsGroups": [] }, { "type": "object", "name": "organization", "in": "body", - "description": "

A GitHub organization.

", + "description": "

A GitHub organization. Webhook payloads contain the organization property when the webhook is configured for an\norganization, or when the event occurs from activity in a repository owned by an organization.

", "childParamsGroups": [] }, { "type": "object", "name": "repository", "in": "body", - "description": "

A repository on GitHub.

", + "description": "

The repository on GitHub where the event occurred. Webhook payloads contain the repository property\nwhen the event occurs from activity in a repository.

", "isRequired": true, "childParamsGroups": [] }, @@ -198542,7 +198542,7 @@ "type": "object", "name": "sender", "in": "body", - "description": "

A GitHub user.

", + "description": "

The GitHub user that triggered the event. This property is included in every webhook payload.

", "isRequired": true, "childParamsGroups": [] }, diff --git a/src/webhooks/lib/config.json b/src/webhooks/lib/config.json index 27a49b10f6..af43bf9847 100644 --- a/src/webhooks/lib/config.json +++ b/src/webhooks/lib/config.json @@ -1,3 +1,3 @@ { - "sha": "75ade23f4b33a6efb37297ac3073a00294a0d5b8" + "sha": "1cf9ab0b036fad100084d7be1d472b04133d1954" } \ No newline at end of file diff --git a/tests/fixtures/content/get-started/liquid/data.md b/tests/fixtures/content/get-started/liquid/data.md index 6d11bc3ec8..22494afd0a 100644 --- a/tests/fixtures/content/get-started/liquid/data.md +++ b/tests/fixtures/content/get-started/liquid/data.md @@ -58,6 +58,8 @@ And now for a table on its own starting line 1. Point 1 + {% data reusables.injectables.paragraphs %} + 1. Point 2 What's important here is that in CommonMark when a Markdown table diff --git a/tests/fixtures/data/reusables/injectables/paragraphs.md b/tests/fixtures/data/reusables/injectables/paragraphs.md new file mode 100644 index 0000000000..d7655465b5 --- /dev/null +++ b/tests/fixtures/data/reusables/injectables/paragraphs.md @@ -0,0 +1,5 @@ +Paragraph one + +Paragraph two + +Paragraph three diff --git a/tests/rendering-fixtures/liquid.js b/tests/rendering-fixtures/liquid.js index 566e7a5afe..d3878e73cc 100644 --- a/tests/rendering-fixtures/liquid.js +++ b/tests/rendering-fixtures/liquid.js @@ -278,5 +278,24 @@ describe('data tag', () => { // The code block also a reusables that is just one line. expect(codeBlock).toMatch(/One Two Three Four\n/) + + // On its own, if you look at + // tests/fixtures/data/reusables/injectables/paragraphs.md, you'll + // see each line is NOT prefixed with whitespace indentation. + // But because `{% data reusables.injectables.paragraphs %}` is + // inserted with some indentation, that's replicated on every line. + const li = $('#article-contents li') + .filter((_, element) => { + return $(element).text().trim().startsWith('Point 1') + }) + .eq(0) + // You can't really test the exact whitespace with cheerio, + // of the original HTML, but it doesn't actually matter. What + // matters is that within the bullet point, that starts with "Point 1", + // it *contains* all the paragraphs + // from tests/fixtures/data/reusables/injectables/paragraphs.md. + expect(li.text()).toMatch(/Paragraph one/) + expect(li.text()).toMatch(/Paragraph two/) + expect(li.text()).toMatch(/Paragraph three/) }) })