diff --git a/assets/images/help/classroom/assignments-click-new-assignment-button.png b/assets/images/help/classroom/assignments-click-new-assignment-button.png
index 8b1785c229..b86ec2755f 100644
Binary files a/assets/images/help/classroom/assignments-click-new-assignment-button.png and b/assets/images/help/classroom/assignments-click-new-assignment-button.png differ
diff --git a/assets/images/help/classroom/assignments-click-new-starter-assignment-button.png b/assets/images/help/classroom/assignments-click-new-starter-assignment-button.png
new file mode 100644
index 0000000000..3549374339
Binary files /dev/null and b/assets/images/help/classroom/assignments-click-new-starter-assignment-button.png differ
diff --git a/assets/images/help/classroom/assignments-create-first-assignment.png b/assets/images/help/classroom/assignments-create-first-assignment.png
new file mode 100644
index 0000000000..8bae015c19
Binary files /dev/null and b/assets/images/help/classroom/assignments-create-first-assignment.png differ
diff --git a/assets/images/help/classroom/assignments-import-starter-assignment.png b/assets/images/help/classroom/assignments-import-starter-assignment.png
new file mode 100644
index 0000000000..b72b33f2e8
Binary files /dev/null and b/assets/images/help/classroom/assignments-import-starter-assignment.png differ
diff --git a/content/actions/reference/workflow-syntax-for-github-actions.md b/content/actions/reference/workflow-syntax-for-github-actions.md
index 1c5510a9d6..357c4dc21d 100644
--- a/content/actions/reference/workflow-syntax-for-github-actions.md
+++ b/content/actions/reference/workflow-syntax-for-github-actions.md
@@ -434,7 +434,7 @@ The URL can be an expression and can use any context except for the `secrets` co
```yaml
environment:
name: production_environment
- url: ${{ steps.step_name.outputs.url_output }}
+ url: ${{ steps.step_id.outputs.url_output }}
```
{% endraw %}
{% endif %}
@@ -1365,7 +1365,7 @@ Path patterns must match the whole path, and start from the repository's root.
| `docs/*` | All files within the root of the `docs` directory, at the root of the repository. | `docs/README.md`
`docs/file.txt` |
| `docs/**` | Any files in the `/docs` directory at the root of the repository. | `docs/README.md`
`docs/mona/octocat.txt` |
| `docs/**/*.md` | A file with a `.md` suffix anywhere in the `docs` directory. | `docs/README.md`
`docs/mona/hello-world.md`
`docs/a/markdown/file.md`
-| `'**/docs/**'` | Any files in a `docs` directory anywhere in the repository. | `/docs/hello.md`
`dir/docs/my-file.txt`
`space/docs/plan/space.doc`
+| `'**/docs/**'` | Any files in a `docs` directory anywhere in the repository. | `docs/hello.md`
`dir/docs/my-file.txt`
`space/docs/plan/space.doc`
| `'**/README.md'` | A README.md file anywhere in the repository. | `README.md`
`js/README.md`
| `'**/*src/**'` | Any file in a folder with a `src` suffix anywhere in the repository. | `a/src/app.js`
`my-src/code/js/app.js`
| `'**/*-post.md'` | A file with the suffix `-post.md` anywhere in the repository. | `my-post.md`
`path/their-post.md` |
diff --git a/content/education/guides.md b/content/education/guides.md
index 50b347ee8e..9d1badbf24 100644
--- a/content/education/guides.md
+++ b/content/education/guides.md
@@ -21,6 +21,7 @@ Administer a classroom, assign and review work from your students, and teach the
- [Basics of setting up {% data variables.product.prodname_classroom %} ](/education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom)
- [Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms)
+- [Use the Git and {% data variables.product.company_short %} starter assignment](/education/manage-coursework-with-github-classroom/use-the-git-and-github-starter-assignment)
- [Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)
- [Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)
- [Create an assignment from a template repository](/education/manage-coursework-with-github-classroom/create-an-assignment-from-a-template-repository)
diff --git a/content/education/manage-coursework-with-github-classroom/index.md b/content/education/manage-coursework-with-github-classroom/index.md
index 1acc82ee54..e34e76adef 100644
--- a/content/education/manage-coursework-with-github-classroom/index.md
+++ b/content/education/manage-coursework-with-github-classroom/index.md
@@ -10,4 +10,3 @@ children:
- /integrate-github-classroom-with-an-ide
- /learn-with-github-classroom
---
-
diff --git a/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/index.md b/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/index.md
index f09b25496c..246c6c0059 100644
--- a/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/index.md
+++ b/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/index.md
@@ -8,6 +8,7 @@ redirect_from:
- /education/manage-coursework-with-github-classroom/probot-settings
children:
- /manage-classrooms
+ - /use-the-git-and-github-starter-assignment
- /create-an-individual-assignment
- /create-a-group-assignment
- /create-an-assignment-from-a-template-repository
@@ -15,4 +16,3 @@ children:
- /use-autograding
- /connect-a-learning-management-system-to-github-classroom
---
-
diff --git a/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md b/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md
index 9c25ef7769..faae07451a 100644
--- a/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md
+++ b/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md
@@ -1,6 +1,6 @@
---
title: Manage classrooms
-intro: 'You can create and manage a classroom for each course that you teach using {% data variables.product.prodname_classroom %}.'
+intro: You can create and manage a classroom for each course that you teach using {% data variables.product.prodname_classroom %}.
permissions: Organization owners can manage a classroom for an organization.
versions:
free-pro-team: '*'
@@ -8,6 +8,7 @@ redirect_from:
- /education/manage-coursework-with-github-classroom/archive-a-classroom
- /education/manage-coursework-with-github-classroom/manage-classrooms
---
+
### About classrooms
{% data reusables.classroom.about-classrooms %}
@@ -45,7 +46,7 @@ You must authorize the OAuth app for {% data variables.product.prodname_classroo

{% data reusables.classroom.guide-create-new-classroom %}
-After you create a classroom, you can begin creating assignments for students. For more information, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)" or "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)."
+After you create a classroom, you can begin creating assignments for students. For more information, see "[Use the Git and {% data variables.product.company_short %} starter assignment](/education/manage-coursework-with-github-classroom/use-the-git-and-github-starter-assignment)," "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)," or "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)."
### Creating a roster for your classroom
@@ -58,10 +59,8 @@ If your course already has a roster, you can update the students on the roster o
{% data reusables.classroom.click-students %}
1. To connect {% data variables.product.prodname_classroom %} to your LMS and import a roster, click {% octicon "mortar-board" aria-label="The mortar board icon" %} **Import from a learning management system** and follow the instructions. For more information, see "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)."

-1. Provide the student identifiers for your roster.
- - To import a roster by uploading a file containing student identifiers, click **Upload a CSV or text file**.
- - To create a roster manually, type your student identifiers.
- 
+1. To create a roster manually, type your student identifiers. Optionally, click **Upload a CSV or text file** to upload a file containing the identifiers.
+ 
1. Click **Create roster**.

diff --git a/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-the-git-and-github-starter-assignment.md b/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-the-git-and-github-starter-assignment.md
new file mode 100644
index 0000000000..74032cdec1
--- /dev/null
+++ b/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-the-git-and-github-starter-assignment.md
@@ -0,0 +1,101 @@
+---
+title: Use the Git and GitHub starter assignment
+intro: You can use the Git & {% data variables.product.company_short %} starter assignment to give students an overview of Git and {% data variables.product.company_short %} fundamentals.
+versions:
+ free-pro-team: '*'
+redirect_from:
+- /education/manage-coursework-with-github-classroom/use-the-git-and-github-starter-assignment
+---
+
+{% note %}
+
+**Note:** The Git & {% data variables.product.company_short %} starter assignment is in beta and subject to change.
+
+{% endnote %}
+
+The Git & {% data variables.product.company_short %} starter assignment is a pre-made course that summarizes the basics of Git and {% data variables.product.company_short %} and links students to resources to learn more about specific topics.
+
+### Prerequisites
+
+{% data reusables.classroom.assignments-classroom-prerequisite %}
+
+### Creating the starter assignment
+
+#### If there are no existing assignments in the classroom
+
+1. Sign into {% data variables.product.prodname_classroom_with_url %}.
+2. Navigate to a classroom.
+3. In the {% octicon "repo" aria-label="The repo icon" %} **Assignments** tab, click **Use starter assignment**.
+
+
+
+
+
+
+
+
diff --git a/data/reusables/secret-scanning/partner-secret-list-private-repo.md b/data/reusables/secret-scanning/partner-secret-list-private-repo.md
index 7ea83ba60d..b80a4d9036 100644
--- a/data/reusables/secret-scanning/partner-secret-list-private-repo.md
+++ b/data/reusables/secret-scanning/partner-secret-list-private-repo.md
@@ -166,6 +166,8 @@ Stripe | Stripe Live API Restricted Key | stripe_live_restricted_key{% endif %}
Stripe | Stripe Test API Restricted Key | stripe_test_restricted_key{% endif %}
{%- if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.1" or currentVersion == "github-ae@next" %}
Stripe | Stripe Webhook Signing Secret | stripe_webhook_signing_secret{% endif %}
+{%- if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.1" or currentVersion == "github-ae@next" %}
+Telegram | Telegram Bot Token | telegram_bot_token{% endif %}
{%- if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" or currentVersion == "github-ae@next" %}
Tencent Cloud | Tencent Cloud Secret ID | tencent_cloud_secret_id{% endif %}
{%- if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" or currentVersion == "github-ae@next" %}
diff --git a/data/reusables/webhooks/sponsorship_webhook_properties.md b/data/reusables/webhooks/sponsorship_webhook_properties.md
index 4f79f070f9..1154daa649 100644
--- a/data/reusables/webhooks/sponsorship_webhook_properties.md
+++ b/data/reusables/webhooks/sponsorship_webhook_properties.md
@@ -1,3 +1,3 @@
Key | Type | Description
----|------|-------------
-`action` |`string` | The action that was performed. This can be one of `created`, `cancelled`, `edited`, `tier_changed`, `pending_cancellation`, or `pending_tier_change`.
+`action` |`string` | The action that was performed. This can be one of `created`, `cancelled`, `edited`, `tier_changed`, `pending_cancellation`, or `pending_tier_change`. Note: The `created` action is only triggered after payment is processed.
diff --git a/lib/rest/static/decorated/github.ae.json b/lib/rest/static/decorated/github.ae.json
index 8a11b072b1..5d09a18675 100644
--- a/lib/rest/static/decorated/github.ae.json
+++ b/lib/rest/static/decorated/github.ae.json
@@ -8049,92 +8049,6 @@
"bodyParameters": [],
"descriptionHTML": "Forces the removal of a self-hosted runner from an enterprise. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
\nYou must authenticate using an access token with the admin:enterprise scope to use this endpoint.
Results per page (max 100).
" - }, - { - "name": "page", - "description": "Page number of the results to fetch.", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - }, - "descriptionHTML": "Page number of the results to fetch.
" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/events", - "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/events"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /events')",
- "html": "await octokit.request('GET /events')\n"
- }
- ],
- "summary": "List public events",
- "description": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-public-events",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-events"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "activity",
- "subcategory": "events"
- },
- "slug": "list-public-events",
- "category": "activity",
- "categoryLabel": "Activity",
- "subcategory": "events",
- "subcategoryLabel": "Events",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "503",
- "httpStatusMessage": "Service Unavailable",
- "description": "Service unavailable"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.
" - }, { "verb": "get", "requestPath": "/feeds", @@ -10995,115 +10909,6 @@ } ] }, - { - "verb": "get", - "requestPath": "/networks/{owner}/{repo}/events", - "serverUrl": "http(s)://api.{hostname}", - "parameters": [ - { - "name": "owner", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "descriptionHTML": "" - }, - { - "name": "repo", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "descriptionHTML": "" - }, - { - "name": "per_page", - "description": "Results per page (max 100).", - "in": "query", - "schema": { - "type": "integer", - "default": 30 - }, - "descriptionHTML": "Results per page (max 100).
" - }, - { - "name": "page", - "description": "Page number of the results to fetch.", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - }, - "descriptionHTML": "Page number of the results to fetch.
" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/networks/octocat/hello-world/events", - "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/networks/octocat/hello-world/events"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /networks/{owner}/{repo}/events', {\n owner: 'octocat',\n repo: 'hello-world'\n})",
- "html": "await octokit.request('GET /networks/{owner}/{repo}/events', {\n owner: 'octocat',\n repo: 'hello-world'\n})\n"
- }
- ],
- "summary": "List public events for a network of repositories",
- "description": "",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-public-events-for-repo-network",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-events-for-a-network-of-repositories"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "activity",
- "subcategory": "events"
- },
- "slug": "list-public-events-for-a-network-of-repositories",
- "category": "activity",
- "categoryLabel": "Activity",
- "subcategory": "events",
- "subcategoryLabel": "Events",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response"
- },
- {
- "httpStatusCode": "301",
- "httpStatusMessage": "Moved Permanently",
- "description": "Moved permanently"
- },
- {
- "httpStatusCode": "304",
- "httpStatusMessage": "Not Modified",
- "description": "Not modified"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Resource not found"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": ""
- },
{
"verb": "get",
"requestPath": "/notifications",
@@ -14483,86 +14288,6 @@
"bodyParameters": [],
"descriptionHTML": "Removes a repository from an organization secret when the visibility for repository access is set to selected. The visibility is set when you Create or update an organization secret. You must authenticate using an access token with the admin:org scope to use this endpoint. GitHub Apps must have the secrets organization permission to use this endpoint.
Results per page (max 100).
" - }, - { - "name": "page", - "description": "Page number of the results to fetch.", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - }, - "descriptionHTML": "Page number of the results to fetch.
" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/events", - "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/events"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /orgs/{org}/events', {\n org: 'org'\n})",
- "html": "await octokit.request('GET /orgs/{org}/events', {\n org: 'org'\n})\n"
- }
- ],
- "summary": "List public organization events",
- "description": "",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-public-org-events",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-organization-events"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "activity",
- "subcategory": "events"
- },
- "slug": "list-public-organization-events",
- "category": "activity",
- "categoryLabel": "Activity",
- "subcategory": "events",
- "subcategoryLabel": "Events",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": ""
- },
{
"verb": "get",
"requestPath": "/orgs/{org}/hooks",
@@ -17382,304 +17107,6 @@
}
]
},
- {
- "verb": "get",
- "requestPath": "/orgs/{org}/public_members",
- "serverUrl": "http(s)://api.{hostname}",
- "parameters": [
- {
- "name": "org",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- },
- "descriptionHTML": ""
- },
- {
- "name": "per_page",
- "description": "Results per page (max 100).",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 30
- },
- "descriptionHTML": "Results per page (max 100).
" - }, - { - "name": "page", - "description": "Page number of the results to fetch.", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - }, - "descriptionHTML": "Page number of the results to fetch.
" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/public_members", - "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/public_members"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /orgs/{org}/public_members', {\n org: 'org'\n})",
- "html": "await octokit.request('GET /orgs/{org}/public_members', {\n org: 'org'\n})\n"
- }
- ],
- "summary": "List public organization members",
- "description": "Members of an organization can choose to have their membership publicized or not.",
- "tags": [
- "orgs"
- ],
- "operationId": "orgs/list-public-members",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/orgs#list-public-organization-members"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "orgs",
- "subcategory": "members"
- },
- "slug": "list-public-organization-members",
- "category": "orgs",
- "categoryLabel": "Orgs",
- "subcategory": "members",
- "subcategoryLabel": "Members",
- "notes": [],
- "bodyParameters": [],
- "descriptionHTML": "Members of an organization can choose to have their membership publicized or not.
", - "responses": [ - { - "httpStatusCode": "200", - "httpStatusMessage": "OK", - "description": "Response", - "payload": "[\n {\n \"login\": \"octocat\",\n \"id\": 1,\n \"node_id\": \"MDQ6VXNlcjE=\",\n \"avatar_url\": \"https://github.com/images/error/octocat_happy.gif\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/octocat\",\n \"html_url\": \"https://github.com/octocat\",\n \"followers_url\": \"https://api.github.com/users/octocat/followers\",\n \"following_url\": \"https://api.github.com/users/octocat/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/octocat/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/octocat/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/octocat/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/octocat/orgs\",\n \"repos_url\": \"https://api.github.com/users/octocat/repos\",\n \"events_url\": \"https://api.github.com/users/octocat/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/octocat/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n]\n"
- }
- ]
- },
- {
- "verb": "get",
- "requestPath": "/orgs/{org}/public_members/{username}",
- "serverUrl": "http(s)://api.{hostname}",
- "parameters": [
- {
- "name": "org",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- },
- "descriptionHTML": ""
- },
- {
- "name": "username",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- },
- "descriptionHTML": ""
- }
- ],
- "x-codeSamples": [
- {
- "lang": "Shell",
- "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/public_members/USERNAME",
- "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/public_members/USERNAME"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /orgs/{org}/public_members/{username}', {\n org: 'org',\n username: 'username'\n})",
- "html": "await octokit.request('GET /orgs/{org}/public_members/{username}', {\n org: 'org',\n username: 'username'\n})\n"
- }
- ],
- "summary": "Check public organization membership for a user",
- "description": "",
- "tags": [
- "orgs"
- ],
- "operationId": "orgs/check-public-membership-for-user",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/orgs#check-public-organization-membership-for-a-user"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "orgs",
- "subcategory": "members"
- },
- "slug": "check-public-organization-membership-for-a-user",
- "category": "orgs",
- "categoryLabel": "Orgs",
- "subcategory": "members",
- "subcategoryLabel": "Members",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "204",
- "httpStatusMessage": "No Content",
- "description": "Response if user is a public member"
- },
- {
- "httpStatusCode": "404",
- "httpStatusMessage": "Not Found",
- "description": "Not Found if user is not a public member"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": ""
- },
- {
- "verb": "put",
- "requestPath": "/orgs/{org}/public_members/{username}",
- "serverUrl": "http(s)://api.{hostname}",
- "parameters": [
- {
- "name": "org",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- },
- "descriptionHTML": ""
- },
- {
- "name": "username",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- },
- "descriptionHTML": ""
- }
- ],
- "x-codeSamples": [
- {
- "lang": "Shell",
- "source": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/public_members/USERNAME",
- "html": "curl \\\n -X PUT \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/public_members/USERNAME"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('PUT /orgs/{org}/public_members/{username}', {\n org: 'org',\n username: 'username'\n})",
- "html": "await octokit.request('PUT /orgs/{org}/public_members/{username}', {\n org: 'org',\n username: 'username'\n})\n"
- }
- ],
- "summary": "Set public organization membership for the authenticated user",
- "description": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)\n\nNote that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://docs.github.com/github-ae@latest/rest/overview/resources-in-the-rest-api#http-verbs).\"",
- "tags": [
- "orgs"
- ],
- "operationId": "orgs/set-public-membership-for-authenticated-user",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/orgs#set-public-organization-membership-for-the-authenticated-user"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": false,
- "previews": [],
- "category": "orgs",
- "subcategory": "members"
- },
- "slug": "set-public-organization-membership-for-the-authenticated-user",
- "category": "orgs",
- "categoryLabel": "Orgs",
- "subcategory": "members",
- "subcategoryLabel": "Members",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "204",
- "httpStatusMessage": "No Content",
- "description": "Response"
- },
- {
- "httpStatusCode": "403",
- "httpStatusMessage": "Forbidden",
- "description": "Forbidden"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": "The user can publicize their own membership. (A user cannot publicize the membership for another user.)
\nNote that you'll need to set Content-Length to zero when calling out to this endpoint. For more information, see \"HTTP verbs.\"
curl \\\n -X DELETE \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/orgs/ORG/public_members/USERNAME"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('DELETE /orgs/{org}/public_members/{username}', {\n org: 'org',\n username: 'username'\n})",
- "html": "await octokit.request('DELETE /orgs/{org}/public_members/{username}', {\n org: 'org',\n username: 'username'\n})\n"
- }
- ],
- "summary": "Remove public organization membership for the authenticated user",
- "description": "",
- "tags": [
- "orgs"
- ],
- "operationId": "orgs/remove-public-membership-for-authenticated-user",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/orgs#remove-public-organization-membership-for-the-authenticated-user"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": false,
- "previews": [],
- "category": "orgs",
- "subcategory": "members"
- },
- "slug": "remove-public-organization-membership-for-the-authenticated-user",
- "category": "orgs",
- "categoryLabel": "Orgs",
- "subcategory": "members",
- "subcategoryLabel": "Members",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "204",
- "httpStatusMessage": "No Content",
- "description": "Response"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": ""
- },
{
"verb": "get",
"requestPath": "/orgs/{org}/repos",
@@ -74720,86 +74147,6 @@
"bodyParameters": [],
"descriptionHTML": "This is the user's organization dashboard. You must be authenticated as the user to view this.
" }, - { - "verb": "get", - "requestPath": "/users/{username}/events/public", - "serverUrl": "http(s)://api.{hostname}", - "parameters": [ - { - "name": "username", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "descriptionHTML": "" - }, - { - "name": "per_page", - "description": "Results per page (max 100).", - "in": "query", - "schema": { - "type": "integer", - "default": 30 - }, - "descriptionHTML": "Results per page (max 100).
" - }, - { - "name": "page", - "description": "Page number of the results to fetch.", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - }, - "descriptionHTML": "Page number of the results to fetch.
" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/users/USERNAME/events/public", - "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/users/USERNAME/events/public"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /users/{username}/events/public', {\n username: 'username'\n})",
- "html": "await octokit.request('GET /users/{username}/events/public', {\n username: 'username'\n})\n"
- }
- ],
- "summary": "List public events for a user",
- "description": "",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-public-events-for-user",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-events-for-a-user"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "activity",
- "subcategory": "events"
- },
- "slug": "list-public-events-for-a-user",
- "category": "activity",
- "categoryLabel": "Activity",
- "subcategory": "events",
- "subcategoryLabel": "Events",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": ""
- },
{
"verb": "get",
"requestPath": "/users/{username}/followers",
@@ -75638,166 +74985,6 @@
}
]
},
- {
- "verb": "get",
- "requestPath": "/users/{username}/received_events",
- "serverUrl": "http(s)://api.{hostname}",
- "parameters": [
- {
- "name": "username",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- },
- "descriptionHTML": ""
- },
- {
- "name": "per_page",
- "description": "Results per page (max 100).",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 30
- },
- "descriptionHTML": "Results per page (max 100).
" - }, - { - "name": "page", - "description": "Page number of the results to fetch.", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - }, - "descriptionHTML": "Page number of the results to fetch.
" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/users/USERNAME/received_events", - "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/users/USERNAME/received_events"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /users/{username}/received_events', {\n username: 'username'\n})",
- "html": "await octokit.request('GET /users/{username}/received_events', {\n username: 'username'\n})\n"
- }
- ],
- "summary": "List events received by the authenticated user",
- "description": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-received-events-for-user",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-events-received-by-the-authenticated-user"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "activity",
- "subcategory": "events"
- },
- "slug": "list-events-received-by-the-authenticated-user",
- "category": "activity",
- "categoryLabel": "Activity",
- "subcategory": "events",
- "subcategoryLabel": "Events",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": "These are events that you've received by watching repos and following users. If you are authenticated as the given user, you will see private events. Otherwise, you'll only see public events.
" - }, - { - "verb": "get", - "requestPath": "/users/{username}/received_events/public", - "serverUrl": "http(s)://api.{hostname}", - "parameters": [ - { - "name": "username", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "descriptionHTML": "" - }, - { - "name": "per_page", - "description": "Results per page (max 100).", - "in": "query", - "schema": { - "type": "integer", - "default": 30 - }, - "descriptionHTML": "Results per page (max 100).
" - }, - { - "name": "page", - "description": "Page number of the results to fetch.", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - }, - "descriptionHTML": "Page number of the results to fetch.
" - } - ], - "x-codeSamples": [ - { - "lang": "Shell", - "source": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/users/USERNAME/received_events/public", - "html": "curl \\\n -H \"Accept: application/vnd.github.v3+json\" \\\n http(s)://api.{hostname}/users/USERNAME/received_events/public"
- },
- {
- "lang": "JavaScript",
- "source": "await octokit.request('GET /users/{username}/received_events/public', {\n username: 'username'\n})",
- "html": "await octokit.request('GET /users/{username}/received_events/public', {\n username: 'username'\n})\n"
- }
- ],
- "summary": "List public events received by a user",
- "description": "",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-received-public-events-for-user",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-events-received-by-a-user"
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [],
- "category": "activity",
- "subcategory": "events"
- },
- "slug": "list-public-events-received-by-a-user",
- "category": "activity",
- "categoryLabel": "Activity",
- "subcategory": "events",
- "subcategoryLabel": "Events",
- "notes": [],
- "responses": [
- {
- "httpStatusCode": "200",
- "httpStatusMessage": "OK",
- "description": "Response"
- }
- ],
- "bodyParameters": [],
- "descriptionHTML": ""
- },
{
"verb": "get",
"requestPath": "/users/{username}/repos",
diff --git a/lib/rest/static/dereferenced/github.ae.deref.json b/lib/rest/static/dereferenced/github.ae.deref.json
index d1a1229823..648467a8bf 100644
--- a/lib/rest/static/dereferenced/github.ae.deref.json
+++ b/lib/rest/static/dereferenced/github.ae.deref.json
@@ -14677,2886 +14677,6 @@
}
}
},
- "/events": {
- "get": {
- "summary": "List public events",
- "description": "We delay the public events feed by five minutes, which means the most recent event returned by the public events API actually occurred at least five minutes ago.",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-public-events",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-events"
- },
- "parameters": [
- {
- "name": "per_page",
- "description": "Results per page (max 100).",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 30
- }
- },
- {
- "name": "page",
- "description": "Page number of the results to fetch.",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 1
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Response",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "title": "Event",
- "description": "Event",
- "type": "object",
- "properties": {
- "id": {
- "type": "string"
- },
- "type": {
- "type": "string",
- "nullable": true
- },
- "actor": {
- "title": "Actor",
- "description": "Actor",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "login": {
- "type": "string"
- },
- "display_login": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri"
- },
- "avatar_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "login",
- "gravatar_id",
- "url",
- "avatar_url"
- ]
- },
- "repo": {
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "name": {
- "type": "string"
- },
- "url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "name",
- "url"
- ]
- },
- "org": {
- "title": "Actor",
- "description": "Actor",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "login": {
- "type": "string"
- },
- "display_login": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri"
- },
- "avatar_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "login",
- "gravatar_id",
- "url",
- "avatar_url"
- ]
- },
- "payload": {
- "type": "object",
- "properties": {
- "action": {
- "type": "string"
- },
- "issue": {
- "title": "Issue Simple",
- "description": "Issue Simple",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDU6SXNzdWUx"
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
- },
- "repository_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World"
- },
- "labels_url": {
- "type": "string",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}"
- },
- "comments_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
- },
- "events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/events"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World/issues/1347"
- },
- "number": {
- "type": "integer",
- "example": 1347
- },
- "state": {
- "type": "string",
- "example": "open"
- },
- "title": {
- "type": "string",
- "example": "Found a bug"
- },
- "body": {
- "type": "string",
- "example": "I'm having a problem with this."
- },
- "user": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "labels": {
- "type": "array",
- "items": {
- "title": "Label",
- "description": "Color-coded labels help you categorize and filter your issues (just like labels in Gmail).",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer",
- "format": "int64",
- "example": 208045946
- },
- "node_id": {
- "type": "string",
- "example": "MDU6TGFiZWwyMDgwNDU5NDY="
- },
- "url": {
- "description": "URL for the label",
- "example": "https://api.github.com/repositories/42/labels/bug",
- "type": "string",
- "format": "uri"
- },
- "name": {
- "description": "The name of the label.",
- "example": "bug",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "Something isn't working",
- "nullable": true
- },
- "color": {
- "description": "6-character hex code, without the leading #, identifying the color",
- "example": "FFFFFF",
- "type": "string"
- },
- "default": {
- "type": "boolean",
- "example": true
- }
- },
- "required": [
- "id",
- "node_id",
- "url",
- "name",
- "description",
- "color",
- "default"
- ]
- }
- },
- "assignee": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "assignees": {
- "type": "array",
- "items": {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- },
- "nullable": true
- },
- "milestone": {
- "nullable": true,
- "allOf": [
- {
- "title": "Milestone",
- "description": "A collection of related issues and pull requests.",
- "type": "object",
- "properties": {
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World/milestones/v1.0"
- },
- "labels_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels"
- },
- "id": {
- "type": "integer",
- "example": 1002604
- },
- "node_id": {
- "type": "string",
- "example": "MDk6TWlsZXN0b25lMTAwMjYwNA=="
- },
- "number": {
- "description": "The number of the milestone.",
- "type": "integer",
- "example": 42
- },
- "state": {
- "description": "The state of the milestone.",
- "example": "open",
- "type": "string",
- "enum": [
- "open",
- "closed"
- ],
- "default": "open"
- },
- "title": {
- "description": "The title of the milestone.",
- "example": "v1.0",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "Tracking milestone for version 1.0",
- "nullable": true
- },
- "creator": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "open_issues": {
- "type": "integer",
- "example": 4
- },
- "closed_issues": {
- "type": "integer",
- "example": 8
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-10T20:09:31Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2014-03-03T18:58:10Z"
- },
- "closed_at": {
- "type": "string",
- "format": "date-time",
- "example": "2013-02-12T13:22:01Z",
- "nullable": true
- },
- "due_on": {
- "type": "string",
- "format": "date-time",
- "example": "2012-10-09T23:39:01Z",
- "nullable": true
- }
- },
- "required": [
- "closed_issues",
- "creator",
- "description",
- "due_on",
- "closed_at",
- "id",
- "node_id",
- "labels_url",
- "html_url",
- "number",
- "open_issues",
- "state",
- "title",
- "url",
- "created_at",
- "updated_at"
- ]
- }
- ]
- },
- "locked": {
- "type": "boolean",
- "example": true
- },
- "active_lock_reason": {
- "type": "string",
- "example": "too heated",
- "nullable": true
- },
- "comments": {
- "type": "integer",
- "example": 0
- },
- "pull_request": {
- "type": "object",
- "properties": {
- "merged_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- },
- "diff_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "patch_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- }
- },
- "required": [
- "diff_url",
- "html_url",
- "patch_url",
- "url"
- ]
- },
- "closed_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-22T13:33:48Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-22T13:33:48Z"
- },
- "author_association": {
- "title": "author_association",
- "type": "string",
- "example": "OWNER",
- "description": "How the author is associated with the repository.",
- "enum": [
- "COLLABORATOR",
- "CONTRIBUTOR",
- "FIRST_TIMER",
- "FIRST_TIME_CONTRIBUTOR",
- "MANNEQUIN",
- "MEMBER",
- "NONE",
- "OWNER"
- ]
- },
- "body_html": {
- "type": "string"
- },
- "body_text": {
- "type": "string"
- },
- "timeline_url": {
- "type": "string",
- "format": "uri"
- },
- "repository": {
- "title": "Repository",
- "description": "A git repository",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the repository",
- "example": 42,
- "type": "integer"
- },
- "node_id": {
- "type": "string",
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
- },
- "name": {
- "description": "The name of the repository.",
- "type": "string",
- "example": "Team Environment"
- },
- "full_name": {
- "type": "string",
- "example": "octocat/Hello-World"
- },
- "license": {
- "nullable": true,
- "allOf": [
- {
- "title": "License Simple",
- "description": "License Simple",
- "type": "object",
- "properties": {
- "key": {
- "type": "string",
- "example": "mit"
- },
- "name": {
- "type": "string",
- "example": "MIT License"
- },
- "url": {
- "type": "string",
- "nullable": true,
- "format": "uri",
- "example": "https://api.github.com/licenses/mit"
- },
- "spdx_id": {
- "type": "string",
- "nullable": true,
- "example": "MIT"
- },
- "node_id": {
- "type": "string",
- "example": "MDc6TGljZW5zZW1pdA=="
- },
- "html_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "key",
- "name",
- "url",
- "spdx_id",
- "node_id"
- ]
- }
- ]
- },
- "organization": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "forks": {
- "type": "integer"
- },
- "permissions": {
- "type": "object",
- "properties": {
- "admin": {
- "type": "boolean"
- },
- "pull": {
- "type": "boolean"
- },
- "triage": {
- "type": "boolean"
- },
- "push": {
- "type": "boolean"
- },
- "maintain": {
- "type": "boolean"
- }
- },
- "required": [
- "admin",
- "pull",
- "push"
- ]
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "private": {
- "description": "Whether the repository is private or public.",
- "default": false,
- "type": "boolean"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World"
- },
- "description": {
- "type": "string",
- "example": "This your first repo!",
- "nullable": true
- },
- "fork": {
- "type": "boolean"
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World"
- },
- "archive_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
- },
- "assignees_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
- },
- "blobs_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
- },
- "branches_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
- },
- "collaborators_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
- },
- "comments_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
- },
- "commits_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
- },
- "compare_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
- },
- "contents_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
- },
- "contributors_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
- },
- "deployments_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
- },
- "downloads_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
- },
- "events_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
- },
- "forks_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
- },
- "git_commits_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
- },
- "git_refs_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
- },
- "git_tags_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
- },
- "git_url": {
- "type": "string",
- "example": "git:github.com/octocat/Hello-World.git"
- },
- "issue_comment_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
- },
- "issue_events_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
- },
- "issues_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
- },
- "keys_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
- },
- "labels_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
- },
- "languages_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
- },
- "merges_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
- },
- "milestones_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
- },
- "notifications_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
- },
- "pulls_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
- },
- "releases_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
- },
- "ssh_url": {
- "type": "string",
- "example": "git@github.com:octocat/Hello-World.git"
- },
- "stargazers_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
- },
- "statuses_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
- },
- "subscribers_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
- },
- "subscription_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
- },
- "tags_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
- },
- "teams_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
- },
- "trees_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
- },
- "clone_url": {
- "type": "string",
- "example": "https://github.com/octocat/Hello-World.git"
- },
- "mirror_url": {
- "type": "string",
- "format": "uri",
- "example": "git:git.example.com/octocat/Hello-World",
- "nullable": true
- },
- "hooks_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
- },
- "svn_url": {
- "type": "string",
- "format": "uri",
- "example": "https://svn.github.com/octocat/Hello-World"
- },
- "homepage": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com",
- "nullable": true
- },
- "language": {
- "type": "string",
- "nullable": true
- },
- "forks_count": {
- "type": "integer",
- "example": 9
- },
- "stargazers_count": {
- "type": "integer",
- "example": 80
- },
- "watchers_count": {
- "type": "integer",
- "example": 80
- },
- "size": {
- "type": "integer",
- "example": 108
- },
- "default_branch": {
- "description": "The default branch of the repository.",
- "type": "string",
- "example": "master"
- },
- "open_issues_count": {
- "type": "integer",
- "example": 0
- },
- "is_template": {
- "description": "Whether this repository acts as a template that can be used to generate new repositories.",
- "default": false,
- "type": "boolean",
- "example": true
- },
- "topics": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "has_issues": {
- "description": "Whether issues are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_projects": {
- "description": "Whether projects are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_wiki": {
- "description": "Whether the wiki is enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_pages": {
- "type": "boolean"
- },
- "has_downloads": {
- "description": "Whether downloads are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "archived": {
- "description": "Whether the repository is archived.",
- "default": false,
- "type": "boolean"
- },
- "disabled": {
- "type": "boolean",
- "description": "Returns whether or not this repository disabled."
- },
- "visibility": {
- "description": "The repository visibility: public, private, or internal.",
- "default": "public",
- "type": "string"
- },
- "pushed_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:06:43Z",
- "nullable": true
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:01:12Z",
- "nullable": true
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:14:43Z",
- "nullable": true
- },
- "allow_rebase_merge": {
- "description": "Whether to allow rebase merges for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "template_repository": {
- "nullable": true,
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "full_name": {
- "type": "string"
- },
- "owner": {
- "type": "object",
- "properties": {
- "login": {
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "avatar_url": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string"
- },
- "url": {
- "type": "string"
- },
- "html_url": {
- "type": "string"
- },
- "followers_url": {
- "type": "string"
- },
- "following_url": {
- "type": "string"
- },
- "gists_url": {
- "type": "string"
- },
- "starred_url": {
- "type": "string"
- },
- "subscriptions_url": {
- "type": "string"
- },
- "organizations_url": {
- "type": "string"
- },
- "repos_url": {
- "type": "string"
- },
- "events_url": {
- "type": "string"
- },
- "received_events_url": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "site_admin": {
- "type": "boolean"
- }
- }
- },
- "private": {
- "type": "boolean"
- },
- "html_url": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "fork": {
- "type": "boolean"
- },
- "url": {
- "type": "string"
- },
- "archive_url": {
- "type": "string"
- },
- "assignees_url": {
- "type": "string"
- },
- "blobs_url": {
- "type": "string"
- },
- "branches_url": {
- "type": "string"
- },
- "collaborators_url": {
- "type": "string"
- },
- "comments_url": {
- "type": "string"
- },
- "commits_url": {
- "type": "string"
- },
- "compare_url": {
- "type": "string"
- },
- "contents_url": {
- "type": "string"
- },
- "contributors_url": {
- "type": "string"
- },
- "deployments_url": {
- "type": "string"
- },
- "downloads_url": {
- "type": "string"
- },
- "events_url": {
- "type": "string"
- },
- "forks_url": {
- "type": "string"
- },
- "git_commits_url": {
- "type": "string"
- },
- "git_refs_url": {
- "type": "string"
- },
- "git_tags_url": {
- "type": "string"
- },
- "git_url": {
- "type": "string"
- },
- "issue_comment_url": {
- "type": "string"
- },
- "issue_events_url": {
- "type": "string"
- },
- "issues_url": {
- "type": "string"
- },
- "keys_url": {
- "type": "string"
- },
- "labels_url": {
- "type": "string"
- },
- "languages_url": {
- "type": "string"
- },
- "merges_url": {
- "type": "string"
- },
- "milestones_url": {
- "type": "string"
- },
- "notifications_url": {
- "type": "string"
- },
- "pulls_url": {
- "type": "string"
- },
- "releases_url": {
- "type": "string"
- },
- "ssh_url": {
- "type": "string"
- },
- "stargazers_url": {
- "type": "string"
- },
- "statuses_url": {
- "type": "string"
- },
- "subscribers_url": {
- "type": "string"
- },
- "subscription_url": {
- "type": "string"
- },
- "tags_url": {
- "type": "string"
- },
- "teams_url": {
- "type": "string"
- },
- "trees_url": {
- "type": "string"
- },
- "clone_url": {
- "type": "string"
- },
- "mirror_url": {
- "type": "string"
- },
- "hooks_url": {
- "type": "string"
- },
- "svn_url": {
- "type": "string"
- },
- "homepage": {
- "type": "string"
- },
- "language": {
- "type": "string"
- },
- "forks_count": {
- "type": "integer"
- },
- "stargazers_count": {
- "type": "integer"
- },
- "watchers_count": {
- "type": "integer"
- },
- "size": {
- "type": "integer"
- },
- "default_branch": {
- "type": "string"
- },
- "open_issues_count": {
- "type": "integer"
- },
- "is_template": {
- "type": "boolean"
- },
- "topics": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "has_issues": {
- "type": "boolean"
- },
- "has_projects": {
- "type": "boolean"
- },
- "has_wiki": {
- "type": "boolean"
- },
- "has_pages": {
- "type": "boolean"
- },
- "has_downloads": {
- "type": "boolean"
- },
- "archived": {
- "type": "boolean"
- },
- "disabled": {
- "type": "boolean"
- },
- "visibility": {
- "type": "string"
- },
- "pushed_at": {
- "type": "string"
- },
- "created_at": {
- "type": "string"
- },
- "updated_at": {
- "type": "string"
- },
- "permissions": {
- "type": "object",
- "properties": {
- "admin": {
- "type": "boolean"
- },
- "push": {
- "type": "boolean"
- },
- "pull": {
- "type": "boolean"
- }
- }
- },
- "allow_rebase_merge": {
- "type": "boolean"
- },
- "temp_clone_token": {
- "type": "string"
- },
- "allow_squash_merge": {
- "type": "boolean"
- },
- "delete_branch_on_merge": {
- "type": "boolean"
- },
- "allow_merge_commit": {
- "type": "boolean"
- },
- "subscribers_count": {
- "type": "integer"
- },
- "network_count": {
- "type": "integer"
- }
- }
- },
- "temp_clone_token": {
- "type": "string"
- },
- "allow_squash_merge": {
- "description": "Whether to allow squash merges for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "delete_branch_on_merge": {
- "description": "Whether to delete head branches when pull requests are merged",
- "default": false,
- "type": "boolean",
- "example": false
- },
- "allow_merge_commit": {
- "description": "Whether to allow merge commits for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "subscribers_count": {
- "type": "integer"
- },
- "network_count": {
- "type": "integer"
- },
- "open_issues": {
- "type": "integer"
- },
- "watchers": {
- "type": "integer"
- },
- "master_branch": {
- "type": "string"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:42Z\""
- }
- },
- "required": [
- "archive_url",
- "assignees_url",
- "blobs_url",
- "branches_url",
- "collaborators_url",
- "comments_url",
- "commits_url",
- "compare_url",
- "contents_url",
- "contributors_url",
- "deployments_url",
- "description",
- "downloads_url",
- "events_url",
- "fork",
- "forks_url",
- "full_name",
- "git_commits_url",
- "git_refs_url",
- "git_tags_url",
- "hooks_url",
- "html_url",
- "id",
- "node_id",
- "issue_comment_url",
- "issue_events_url",
- "issues_url",
- "keys_url",
- "labels_url",
- "languages_url",
- "merges_url",
- "milestones_url",
- "name",
- "notifications_url",
- "owner",
- "private",
- "pulls_url",
- "releases_url",
- "stargazers_url",
- "statuses_url",
- "subscribers_url",
- "subscription_url",
- "tags_url",
- "teams_url",
- "trees_url",
- "url",
- "clone_url",
- "default_branch",
- "forks",
- "forks_count",
- "git_url",
- "has_downloads",
- "has_issues",
- "has_projects",
- "has_wiki",
- "has_pages",
- "homepage",
- "language",
- "archived",
- "disabled",
- "mirror_url",
- "open_issues",
- "open_issues_count",
- "license",
- "pushed_at",
- "size",
- "ssh_url",
- "stargazers_count",
- "svn_url",
- "watchers",
- "watchers_count",
- "created_at",
- "updated_at"
- ]
- },
- "performed_via_github_app": {
- "nullable": true,
- "allOf": [
- {
- "title": "GitHub app",
- "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the GitHub app",
- "example": 37,
- "type": "integer"
- },
- "slug": {
- "description": "The slug name of the GitHub app",
- "example": "probot-owners",
- "type": "string"
- },
- "node_id": {
- "type": "string",
- "example": "MDExOkludGVncmF0aW9uMQ=="
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "name": {
- "description": "The name of the GitHub app",
- "example": "Probot Owners",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "The description of the app.",
- "nullable": true
- },
- "external_url": {
- "type": "string",
- "format": "uri",
- "example": "https://example.com"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/apps/super-ci"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "permissions": {
- "description": "The set of permissions for the GitHub app",
- "type": "object",
- "properties": {
- "issues": {
- "type": "string"
- },
- "checks": {
- "type": "string"
- },
- "metadata": {
- "type": "string"
- },
- "contents": {
- "type": "string"
- },
- "deployments": {
- "type": "string"
- }
- },
- "additionalProperties": {
- "type": "string"
- },
- "example": {
- "issues": "read",
- "deployments": "write"
- }
- },
- "events": {
- "description": "The list of events for the GitHub app",
- "example": [
- "label",
- "deployment"
- ],
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "installations_count": {
- "description": "The number of installations associated with the GitHub app",
- "example": 5,
- "type": "integer"
- },
- "client_id": {
- "type": "string",
- "example": "\"Iv1.25b5d1e65ffc4022\""
- },
- "client_secret": {
- "type": "string",
- "example": "\"1d4b2097ac622ba702d19de498f005747a8b21d3\""
- },
- "webhook_secret": {
- "type": "string",
- "example": "\"6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b\"",
- "nullable": true
- },
- "pem": {
- "type": "string",
- "example": "\"-----BEGIN RSA PRIVATE KEY-----\\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\\n-----END RSA PRIVATE KEY-----\\n\""
- }
- },
- "required": [
- "id",
- "node_id",
- "owner",
- "name",
- "description",
- "external_url",
- "html_url",
- "created_at",
- "updated_at",
- "permissions",
- "events"
- ],
- "additionalProperties": true
- }
- ]
- }
- },
- "required": [
- "assignee",
- "closed_at",
- "comments",
- "comments_url",
- "events_url",
- "html_url",
- "id",
- "node_id",
- "labels",
- "labels_url",
- "milestone",
- "number",
- "repository_url",
- "state",
- "locked",
- "title",
- "url",
- "user",
- "author_association",
- "created_at",
- "updated_at"
- ]
- },
- "comment": {
- "title": "Issue Comment",
- "description": "Comments provide a way for people to collaborate on an issue.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the issue comment",
- "example": 42,
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "url": {
- "description": "URL for the issue comment",
- "example": "https://api.github.com/repositories/42/issues/comments/1",
- "type": "string",
- "format": "uri"
- },
- "body": {
- "description": "Contents of the issue comment",
- "example": "What version of Safari were you using when you observed this bug?",
- "type": "string"
- },
- "body_text": {
- "type": "string"
- },
- "body_html": {
- "type": "string"
- },
- "html_url": {
- "type": "string",
- "format": "uri"
- },
- "user": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-14T16:00:49Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-14T16:00:49Z"
- },
- "issue_url": {
- "type": "string",
- "format": "uri"
- },
- "author_association": {
- "title": "author_association",
- "type": "string",
- "example": "OWNER",
- "description": "How the author is associated with the repository.",
- "enum": [
- "COLLABORATOR",
- "CONTRIBUTOR",
- "FIRST_TIMER",
- "FIRST_TIME_CONTRIBUTOR",
- "MANNEQUIN",
- "MEMBER",
- "NONE",
- "OWNER"
- ]
- },
- "performed_via_github_app": {
- "nullable": true,
- "allOf": [
- {
- "title": "GitHub app",
- "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the GitHub app",
- "example": 37,
- "type": "integer"
- },
- "slug": {
- "description": "The slug name of the GitHub app",
- "example": "probot-owners",
- "type": "string"
- },
- "node_id": {
- "type": "string",
- "example": "MDExOkludGVncmF0aW9uMQ=="
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "name": {
- "description": "The name of the GitHub app",
- "example": "Probot Owners",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "The description of the app.",
- "nullable": true
- },
- "external_url": {
- "type": "string",
- "format": "uri",
- "example": "https://example.com"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/apps/super-ci"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "permissions": {
- "description": "The set of permissions for the GitHub app",
- "type": "object",
- "properties": {
- "issues": {
- "type": "string"
- },
- "checks": {
- "type": "string"
- },
- "metadata": {
- "type": "string"
- },
- "contents": {
- "type": "string"
- },
- "deployments": {
- "type": "string"
- }
- },
- "additionalProperties": {
- "type": "string"
- },
- "example": {
- "issues": "read",
- "deployments": "write"
- }
- },
- "events": {
- "description": "The list of events for the GitHub app",
- "example": [
- "label",
- "deployment"
- ],
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "installations_count": {
- "description": "The number of installations associated with the GitHub app",
- "example": 5,
- "type": "integer"
- },
- "client_id": {
- "type": "string",
- "example": "\"Iv1.25b5d1e65ffc4022\""
- },
- "client_secret": {
- "type": "string",
- "example": "\"1d4b2097ac622ba702d19de498f005747a8b21d3\""
- },
- "webhook_secret": {
- "type": "string",
- "example": "\"6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b\"",
- "nullable": true
- },
- "pem": {
- "type": "string",
- "example": "\"-----BEGIN RSA PRIVATE KEY-----\\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\\n-----END RSA PRIVATE KEY-----\\n\""
- }
- },
- "required": [
- "id",
- "node_id",
- "owner",
- "name",
- "description",
- "external_url",
- "html_url",
- "created_at",
- "updated_at",
- "permissions",
- "events"
- ],
- "additionalProperties": true
- }
- ]
- },
- "reactions": {
- "title": "Reaction Rollup",
- "type": "object",
- "properties": {
- "url": {
- "type": "string",
- "format": "uri"
- },
- "total_count": {
- "type": "integer"
- },
- "+1": {
- "type": "integer"
- },
- "-1": {
- "type": "integer"
- },
- "laugh": {
- "type": "integer"
- },
- "confused": {
- "type": "integer"
- },
- "heart": {
- "type": "integer"
- },
- "hooray": {
- "type": "integer"
- },
- "eyes": {
- "type": "integer"
- },
- "rocket": {
- "type": "integer"
- }
- },
- "required": [
- "url",
- "total_count",
- "+1",
- "-1",
- "laugh",
- "confused",
- "heart",
- "hooray",
- "eyes",
- "rocket"
- ]
- }
- },
- "required": [
- "id",
- "node_id",
- "html_url",
- "issue_url",
- "author_association",
- "user",
- "url",
- "created_at",
- "updated_at"
- ]
- },
- "pages": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "page_name": {
- "type": "string"
- },
- "title": {
- "type": "string"
- },
- "summary": {
- "type": "string",
- "nullable": true
- },
- "action": {
- "type": "string"
- },
- "sha": {
- "type": "string"
- },
- "html_url": {
- "type": "string"
- }
- }
- }
- }
- }
- },
- "public": {
- "type": "boolean"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- }
- },
- "required": [
- "id",
- "type",
- "actor",
- "repo",
- "payload",
- "public",
- "created_at"
- ]
- }
- }
- }
- }
- },
- "304": {
- "description": "Not modified"
- },
- "403": {
- "description": "Forbidden",
- "content": {
- "application/json": {
- "schema": {
- "title": "Basic Error",
- "description": "Basic Error",
- "type": "object",
- "properties": {
- "message": {
- "type": "string"
- },
- "documentation_url": {
- "type": "string"
- },
- "url": {
- "type": "string"
- },
- "status": {
- "type": "string"
- }
- }
- }
- }
- }
- },
- "503": {
- "description": "Service unavailable",
- "content": {
- "application/json": {
- "schema": {
- "type": "object",
- "properties": {
- "code": {
- "type": "string"
- },
- "message": {
- "type": "string"
- },
- "documentation_url": {
- "type": "string"
- }
- }
- }
- }
- }
- }
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [
-
- ],
- "category": "activity",
- "subcategory": "events"
- }
- }
- },
"/feeds": {
"get": {
"summary": "Get feeds",
@@ -30939,2933 +28059,6 @@
}
}
},
- "/networks/{owner}/{repo}/events": {
- "get": {
- "summary": "List public events for a network of repositories",
- "description": "",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-public-events-for-repo-network",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-events-for-a-network-of-repositories"
- },
- "parameters": [
- {
- "name": "owner",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "repo",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "per_page",
- "description": "Results per page (max 100).",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 30
- }
- },
- {
- "name": "page",
- "description": "Page number of the results to fetch.",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 1
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Response",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "title": "Event",
- "description": "Event",
- "type": "object",
- "properties": {
- "id": {
- "type": "string"
- },
- "type": {
- "type": "string",
- "nullable": true
- },
- "actor": {
- "title": "Actor",
- "description": "Actor",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "login": {
- "type": "string"
- },
- "display_login": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri"
- },
- "avatar_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "login",
- "gravatar_id",
- "url",
- "avatar_url"
- ]
- },
- "repo": {
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "name": {
- "type": "string"
- },
- "url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "name",
- "url"
- ]
- },
- "org": {
- "title": "Actor",
- "description": "Actor",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "login": {
- "type": "string"
- },
- "display_login": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri"
- },
- "avatar_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "login",
- "gravatar_id",
- "url",
- "avatar_url"
- ]
- },
- "payload": {
- "type": "object",
- "properties": {
- "action": {
- "type": "string"
- },
- "issue": {
- "title": "Issue Simple",
- "description": "Issue Simple",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDU6SXNzdWUx"
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
- },
- "repository_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World"
- },
- "labels_url": {
- "type": "string",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}"
- },
- "comments_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
- },
- "events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/events"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World/issues/1347"
- },
- "number": {
- "type": "integer",
- "example": 1347
- },
- "state": {
- "type": "string",
- "example": "open"
- },
- "title": {
- "type": "string",
- "example": "Found a bug"
- },
- "body": {
- "type": "string",
- "example": "I'm having a problem with this."
- },
- "user": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "labels": {
- "type": "array",
- "items": {
- "title": "Label",
- "description": "Color-coded labels help you categorize and filter your issues (just like labels in Gmail).",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer",
- "format": "int64",
- "example": 208045946
- },
- "node_id": {
- "type": "string",
- "example": "MDU6TGFiZWwyMDgwNDU5NDY="
- },
- "url": {
- "description": "URL for the label",
- "example": "https://api.github.com/repositories/42/labels/bug",
- "type": "string",
- "format": "uri"
- },
- "name": {
- "description": "The name of the label.",
- "example": "bug",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "Something isn't working",
- "nullable": true
- },
- "color": {
- "description": "6-character hex code, without the leading #, identifying the color",
- "example": "FFFFFF",
- "type": "string"
- },
- "default": {
- "type": "boolean",
- "example": true
- }
- },
- "required": [
- "id",
- "node_id",
- "url",
- "name",
- "description",
- "color",
- "default"
- ]
- }
- },
- "assignee": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "assignees": {
- "type": "array",
- "items": {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- },
- "nullable": true
- },
- "milestone": {
- "nullable": true,
- "allOf": [
- {
- "title": "Milestone",
- "description": "A collection of related issues and pull requests.",
- "type": "object",
- "properties": {
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World/milestones/v1.0"
- },
- "labels_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels"
- },
- "id": {
- "type": "integer",
- "example": 1002604
- },
- "node_id": {
- "type": "string",
- "example": "MDk6TWlsZXN0b25lMTAwMjYwNA=="
- },
- "number": {
- "description": "The number of the milestone.",
- "type": "integer",
- "example": 42
- },
- "state": {
- "description": "The state of the milestone.",
- "example": "open",
- "type": "string",
- "enum": [
- "open",
- "closed"
- ],
- "default": "open"
- },
- "title": {
- "description": "The title of the milestone.",
- "example": "v1.0",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "Tracking milestone for version 1.0",
- "nullable": true
- },
- "creator": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "open_issues": {
- "type": "integer",
- "example": 4
- },
- "closed_issues": {
- "type": "integer",
- "example": 8
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-10T20:09:31Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2014-03-03T18:58:10Z"
- },
- "closed_at": {
- "type": "string",
- "format": "date-time",
- "example": "2013-02-12T13:22:01Z",
- "nullable": true
- },
- "due_on": {
- "type": "string",
- "format": "date-time",
- "example": "2012-10-09T23:39:01Z",
- "nullable": true
- }
- },
- "required": [
- "closed_issues",
- "creator",
- "description",
- "due_on",
- "closed_at",
- "id",
- "node_id",
- "labels_url",
- "html_url",
- "number",
- "open_issues",
- "state",
- "title",
- "url",
- "created_at",
- "updated_at"
- ]
- }
- ]
- },
- "locked": {
- "type": "boolean",
- "example": true
- },
- "active_lock_reason": {
- "type": "string",
- "example": "too heated",
- "nullable": true
- },
- "comments": {
- "type": "integer",
- "example": 0
- },
- "pull_request": {
- "type": "object",
- "properties": {
- "merged_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- },
- "diff_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "patch_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- }
- },
- "required": [
- "diff_url",
- "html_url",
- "patch_url",
- "url"
- ]
- },
- "closed_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-22T13:33:48Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-22T13:33:48Z"
- },
- "author_association": {
- "title": "author_association",
- "type": "string",
- "example": "OWNER",
- "description": "How the author is associated with the repository.",
- "enum": [
- "COLLABORATOR",
- "CONTRIBUTOR",
- "FIRST_TIMER",
- "FIRST_TIME_CONTRIBUTOR",
- "MANNEQUIN",
- "MEMBER",
- "NONE",
- "OWNER"
- ]
- },
- "body_html": {
- "type": "string"
- },
- "body_text": {
- "type": "string"
- },
- "timeline_url": {
- "type": "string",
- "format": "uri"
- },
- "repository": {
- "title": "Repository",
- "description": "A git repository",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the repository",
- "example": 42,
- "type": "integer"
- },
- "node_id": {
- "type": "string",
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
- },
- "name": {
- "description": "The name of the repository.",
- "type": "string",
- "example": "Team Environment"
- },
- "full_name": {
- "type": "string",
- "example": "octocat/Hello-World"
- },
- "license": {
- "nullable": true,
- "allOf": [
- {
- "title": "License Simple",
- "description": "License Simple",
- "type": "object",
- "properties": {
- "key": {
- "type": "string",
- "example": "mit"
- },
- "name": {
- "type": "string",
- "example": "MIT License"
- },
- "url": {
- "type": "string",
- "nullable": true,
- "format": "uri",
- "example": "https://api.github.com/licenses/mit"
- },
- "spdx_id": {
- "type": "string",
- "nullable": true,
- "example": "MIT"
- },
- "node_id": {
- "type": "string",
- "example": "MDc6TGljZW5zZW1pdA=="
- },
- "html_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "key",
- "name",
- "url",
- "spdx_id",
- "node_id"
- ]
- }
- ]
- },
- "organization": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "forks": {
- "type": "integer"
- },
- "permissions": {
- "type": "object",
- "properties": {
- "admin": {
- "type": "boolean"
- },
- "pull": {
- "type": "boolean"
- },
- "triage": {
- "type": "boolean"
- },
- "push": {
- "type": "boolean"
- },
- "maintain": {
- "type": "boolean"
- }
- },
- "required": [
- "admin",
- "pull",
- "push"
- ]
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "private": {
- "description": "Whether the repository is private or public.",
- "default": false,
- "type": "boolean"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World"
- },
- "description": {
- "type": "string",
- "example": "This your first repo!",
- "nullable": true
- },
- "fork": {
- "type": "boolean"
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World"
- },
- "archive_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
- },
- "assignees_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
- },
- "blobs_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
- },
- "branches_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
- },
- "collaborators_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
- },
- "comments_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
- },
- "commits_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
- },
- "compare_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
- },
- "contents_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
- },
- "contributors_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
- },
- "deployments_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
- },
- "downloads_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
- },
- "events_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
- },
- "forks_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
- },
- "git_commits_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
- },
- "git_refs_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
- },
- "git_tags_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
- },
- "git_url": {
- "type": "string",
- "example": "git:github.com/octocat/Hello-World.git"
- },
- "issue_comment_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
- },
- "issue_events_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
- },
- "issues_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
- },
- "keys_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
- },
- "labels_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
- },
- "languages_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
- },
- "merges_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
- },
- "milestones_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
- },
- "notifications_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
- },
- "pulls_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
- },
- "releases_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
- },
- "ssh_url": {
- "type": "string",
- "example": "git@github.com:octocat/Hello-World.git"
- },
- "stargazers_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
- },
- "statuses_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
- },
- "subscribers_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
- },
- "subscription_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
- },
- "tags_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
- },
- "teams_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
- },
- "trees_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
- },
- "clone_url": {
- "type": "string",
- "example": "https://github.com/octocat/Hello-World.git"
- },
- "mirror_url": {
- "type": "string",
- "format": "uri",
- "example": "git:git.example.com/octocat/Hello-World",
- "nullable": true
- },
- "hooks_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
- },
- "svn_url": {
- "type": "string",
- "format": "uri",
- "example": "https://svn.github.com/octocat/Hello-World"
- },
- "homepage": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com",
- "nullable": true
- },
- "language": {
- "type": "string",
- "nullable": true
- },
- "forks_count": {
- "type": "integer",
- "example": 9
- },
- "stargazers_count": {
- "type": "integer",
- "example": 80
- },
- "watchers_count": {
- "type": "integer",
- "example": 80
- },
- "size": {
- "type": "integer",
- "example": 108
- },
- "default_branch": {
- "description": "The default branch of the repository.",
- "type": "string",
- "example": "master"
- },
- "open_issues_count": {
- "type": "integer",
- "example": 0
- },
- "is_template": {
- "description": "Whether this repository acts as a template that can be used to generate new repositories.",
- "default": false,
- "type": "boolean",
- "example": true
- },
- "topics": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "has_issues": {
- "description": "Whether issues are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_projects": {
- "description": "Whether projects are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_wiki": {
- "description": "Whether the wiki is enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_pages": {
- "type": "boolean"
- },
- "has_downloads": {
- "description": "Whether downloads are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "archived": {
- "description": "Whether the repository is archived.",
- "default": false,
- "type": "boolean"
- },
- "disabled": {
- "type": "boolean",
- "description": "Returns whether or not this repository disabled."
- },
- "visibility": {
- "description": "The repository visibility: public, private, or internal.",
- "default": "public",
- "type": "string"
- },
- "pushed_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:06:43Z",
- "nullable": true
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:01:12Z",
- "nullable": true
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:14:43Z",
- "nullable": true
- },
- "allow_rebase_merge": {
- "description": "Whether to allow rebase merges for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "template_repository": {
- "nullable": true,
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "full_name": {
- "type": "string"
- },
- "owner": {
- "type": "object",
- "properties": {
- "login": {
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "avatar_url": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string"
- },
- "url": {
- "type": "string"
- },
- "html_url": {
- "type": "string"
- },
- "followers_url": {
- "type": "string"
- },
- "following_url": {
- "type": "string"
- },
- "gists_url": {
- "type": "string"
- },
- "starred_url": {
- "type": "string"
- },
- "subscriptions_url": {
- "type": "string"
- },
- "organizations_url": {
- "type": "string"
- },
- "repos_url": {
- "type": "string"
- },
- "events_url": {
- "type": "string"
- },
- "received_events_url": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "site_admin": {
- "type": "boolean"
- }
- }
- },
- "private": {
- "type": "boolean"
- },
- "html_url": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "fork": {
- "type": "boolean"
- },
- "url": {
- "type": "string"
- },
- "archive_url": {
- "type": "string"
- },
- "assignees_url": {
- "type": "string"
- },
- "blobs_url": {
- "type": "string"
- },
- "branches_url": {
- "type": "string"
- },
- "collaborators_url": {
- "type": "string"
- },
- "comments_url": {
- "type": "string"
- },
- "commits_url": {
- "type": "string"
- },
- "compare_url": {
- "type": "string"
- },
- "contents_url": {
- "type": "string"
- },
- "contributors_url": {
- "type": "string"
- },
- "deployments_url": {
- "type": "string"
- },
- "downloads_url": {
- "type": "string"
- },
- "events_url": {
- "type": "string"
- },
- "forks_url": {
- "type": "string"
- },
- "git_commits_url": {
- "type": "string"
- },
- "git_refs_url": {
- "type": "string"
- },
- "git_tags_url": {
- "type": "string"
- },
- "git_url": {
- "type": "string"
- },
- "issue_comment_url": {
- "type": "string"
- },
- "issue_events_url": {
- "type": "string"
- },
- "issues_url": {
- "type": "string"
- },
- "keys_url": {
- "type": "string"
- },
- "labels_url": {
- "type": "string"
- },
- "languages_url": {
- "type": "string"
- },
- "merges_url": {
- "type": "string"
- },
- "milestones_url": {
- "type": "string"
- },
- "notifications_url": {
- "type": "string"
- },
- "pulls_url": {
- "type": "string"
- },
- "releases_url": {
- "type": "string"
- },
- "ssh_url": {
- "type": "string"
- },
- "stargazers_url": {
- "type": "string"
- },
- "statuses_url": {
- "type": "string"
- },
- "subscribers_url": {
- "type": "string"
- },
- "subscription_url": {
- "type": "string"
- },
- "tags_url": {
- "type": "string"
- },
- "teams_url": {
- "type": "string"
- },
- "trees_url": {
- "type": "string"
- },
- "clone_url": {
- "type": "string"
- },
- "mirror_url": {
- "type": "string"
- },
- "hooks_url": {
- "type": "string"
- },
- "svn_url": {
- "type": "string"
- },
- "homepage": {
- "type": "string"
- },
- "language": {
- "type": "string"
- },
- "forks_count": {
- "type": "integer"
- },
- "stargazers_count": {
- "type": "integer"
- },
- "watchers_count": {
- "type": "integer"
- },
- "size": {
- "type": "integer"
- },
- "default_branch": {
- "type": "string"
- },
- "open_issues_count": {
- "type": "integer"
- },
- "is_template": {
- "type": "boolean"
- },
- "topics": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "has_issues": {
- "type": "boolean"
- },
- "has_projects": {
- "type": "boolean"
- },
- "has_wiki": {
- "type": "boolean"
- },
- "has_pages": {
- "type": "boolean"
- },
- "has_downloads": {
- "type": "boolean"
- },
- "archived": {
- "type": "boolean"
- },
- "disabled": {
- "type": "boolean"
- },
- "visibility": {
- "type": "string"
- },
- "pushed_at": {
- "type": "string"
- },
- "created_at": {
- "type": "string"
- },
- "updated_at": {
- "type": "string"
- },
- "permissions": {
- "type": "object",
- "properties": {
- "admin": {
- "type": "boolean"
- },
- "push": {
- "type": "boolean"
- },
- "pull": {
- "type": "boolean"
- }
- }
- },
- "allow_rebase_merge": {
- "type": "boolean"
- },
- "temp_clone_token": {
- "type": "string"
- },
- "allow_squash_merge": {
- "type": "boolean"
- },
- "delete_branch_on_merge": {
- "type": "boolean"
- },
- "allow_merge_commit": {
- "type": "boolean"
- },
- "subscribers_count": {
- "type": "integer"
- },
- "network_count": {
- "type": "integer"
- }
- }
- },
- "temp_clone_token": {
- "type": "string"
- },
- "allow_squash_merge": {
- "description": "Whether to allow squash merges for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "delete_branch_on_merge": {
- "description": "Whether to delete head branches when pull requests are merged",
- "default": false,
- "type": "boolean",
- "example": false
- },
- "allow_merge_commit": {
- "description": "Whether to allow merge commits for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "subscribers_count": {
- "type": "integer"
- },
- "network_count": {
- "type": "integer"
- },
- "open_issues": {
- "type": "integer"
- },
- "watchers": {
- "type": "integer"
- },
- "master_branch": {
- "type": "string"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:42Z\""
- }
- },
- "required": [
- "archive_url",
- "assignees_url",
- "blobs_url",
- "branches_url",
- "collaborators_url",
- "comments_url",
- "commits_url",
- "compare_url",
- "contents_url",
- "contributors_url",
- "deployments_url",
- "description",
- "downloads_url",
- "events_url",
- "fork",
- "forks_url",
- "full_name",
- "git_commits_url",
- "git_refs_url",
- "git_tags_url",
- "hooks_url",
- "html_url",
- "id",
- "node_id",
- "issue_comment_url",
- "issue_events_url",
- "issues_url",
- "keys_url",
- "labels_url",
- "languages_url",
- "merges_url",
- "milestones_url",
- "name",
- "notifications_url",
- "owner",
- "private",
- "pulls_url",
- "releases_url",
- "stargazers_url",
- "statuses_url",
- "subscribers_url",
- "subscription_url",
- "tags_url",
- "teams_url",
- "trees_url",
- "url",
- "clone_url",
- "default_branch",
- "forks",
- "forks_count",
- "git_url",
- "has_downloads",
- "has_issues",
- "has_projects",
- "has_wiki",
- "has_pages",
- "homepage",
- "language",
- "archived",
- "disabled",
- "mirror_url",
- "open_issues",
- "open_issues_count",
- "license",
- "pushed_at",
- "size",
- "ssh_url",
- "stargazers_count",
- "svn_url",
- "watchers",
- "watchers_count",
- "created_at",
- "updated_at"
- ]
- },
- "performed_via_github_app": {
- "nullable": true,
- "allOf": [
- {
- "title": "GitHub app",
- "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the GitHub app",
- "example": 37,
- "type": "integer"
- },
- "slug": {
- "description": "The slug name of the GitHub app",
- "example": "probot-owners",
- "type": "string"
- },
- "node_id": {
- "type": "string",
- "example": "MDExOkludGVncmF0aW9uMQ=="
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "name": {
- "description": "The name of the GitHub app",
- "example": "Probot Owners",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "The description of the app.",
- "nullable": true
- },
- "external_url": {
- "type": "string",
- "format": "uri",
- "example": "https://example.com"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/apps/super-ci"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "permissions": {
- "description": "The set of permissions for the GitHub app",
- "type": "object",
- "properties": {
- "issues": {
- "type": "string"
- },
- "checks": {
- "type": "string"
- },
- "metadata": {
- "type": "string"
- },
- "contents": {
- "type": "string"
- },
- "deployments": {
- "type": "string"
- }
- },
- "additionalProperties": {
- "type": "string"
- },
- "example": {
- "issues": "read",
- "deployments": "write"
- }
- },
- "events": {
- "description": "The list of events for the GitHub app",
- "example": [
- "label",
- "deployment"
- ],
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "installations_count": {
- "description": "The number of installations associated with the GitHub app",
- "example": 5,
- "type": "integer"
- },
- "client_id": {
- "type": "string",
- "example": "\"Iv1.25b5d1e65ffc4022\""
- },
- "client_secret": {
- "type": "string",
- "example": "\"1d4b2097ac622ba702d19de498f005747a8b21d3\""
- },
- "webhook_secret": {
- "type": "string",
- "example": "\"6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b\"",
- "nullable": true
- },
- "pem": {
- "type": "string",
- "example": "\"-----BEGIN RSA PRIVATE KEY-----\\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\\n-----END RSA PRIVATE KEY-----\\n\""
- }
- },
- "required": [
- "id",
- "node_id",
- "owner",
- "name",
- "description",
- "external_url",
- "html_url",
- "created_at",
- "updated_at",
- "permissions",
- "events"
- ],
- "additionalProperties": true
- }
- ]
- }
- },
- "required": [
- "assignee",
- "closed_at",
- "comments",
- "comments_url",
- "events_url",
- "html_url",
- "id",
- "node_id",
- "labels",
- "labels_url",
- "milestone",
- "number",
- "repository_url",
- "state",
- "locked",
- "title",
- "url",
- "user",
- "author_association",
- "created_at",
- "updated_at"
- ]
- },
- "comment": {
- "title": "Issue Comment",
- "description": "Comments provide a way for people to collaborate on an issue.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the issue comment",
- "example": 42,
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "url": {
- "description": "URL for the issue comment",
- "example": "https://api.github.com/repositories/42/issues/comments/1",
- "type": "string",
- "format": "uri"
- },
- "body": {
- "description": "Contents of the issue comment",
- "example": "What version of Safari were you using when you observed this bug?",
- "type": "string"
- },
- "body_text": {
- "type": "string"
- },
- "body_html": {
- "type": "string"
- },
- "html_url": {
- "type": "string",
- "format": "uri"
- },
- "user": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-14T16:00:49Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-14T16:00:49Z"
- },
- "issue_url": {
- "type": "string",
- "format": "uri"
- },
- "author_association": {
- "title": "author_association",
- "type": "string",
- "example": "OWNER",
- "description": "How the author is associated with the repository.",
- "enum": [
- "COLLABORATOR",
- "CONTRIBUTOR",
- "FIRST_TIMER",
- "FIRST_TIME_CONTRIBUTOR",
- "MANNEQUIN",
- "MEMBER",
- "NONE",
- "OWNER"
- ]
- },
- "performed_via_github_app": {
- "nullable": true,
- "allOf": [
- {
- "title": "GitHub app",
- "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the GitHub app",
- "example": 37,
- "type": "integer"
- },
- "slug": {
- "description": "The slug name of the GitHub app",
- "example": "probot-owners",
- "type": "string"
- },
- "node_id": {
- "type": "string",
- "example": "MDExOkludGVncmF0aW9uMQ=="
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "name": {
- "description": "The name of the GitHub app",
- "example": "Probot Owners",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "The description of the app.",
- "nullable": true
- },
- "external_url": {
- "type": "string",
- "format": "uri",
- "example": "https://example.com"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/apps/super-ci"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "permissions": {
- "description": "The set of permissions for the GitHub app",
- "type": "object",
- "properties": {
- "issues": {
- "type": "string"
- },
- "checks": {
- "type": "string"
- },
- "metadata": {
- "type": "string"
- },
- "contents": {
- "type": "string"
- },
- "deployments": {
- "type": "string"
- }
- },
- "additionalProperties": {
- "type": "string"
- },
- "example": {
- "issues": "read",
- "deployments": "write"
- }
- },
- "events": {
- "description": "The list of events for the GitHub app",
- "example": [
- "label",
- "deployment"
- ],
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "installations_count": {
- "description": "The number of installations associated with the GitHub app",
- "example": 5,
- "type": "integer"
- },
- "client_id": {
- "type": "string",
- "example": "\"Iv1.25b5d1e65ffc4022\""
- },
- "client_secret": {
- "type": "string",
- "example": "\"1d4b2097ac622ba702d19de498f005747a8b21d3\""
- },
- "webhook_secret": {
- "type": "string",
- "example": "\"6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b\"",
- "nullable": true
- },
- "pem": {
- "type": "string",
- "example": "\"-----BEGIN RSA PRIVATE KEY-----\\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\\n-----END RSA PRIVATE KEY-----\\n\""
- }
- },
- "required": [
- "id",
- "node_id",
- "owner",
- "name",
- "description",
- "external_url",
- "html_url",
- "created_at",
- "updated_at",
- "permissions",
- "events"
- ],
- "additionalProperties": true
- }
- ]
- },
- "reactions": {
- "title": "Reaction Rollup",
- "type": "object",
- "properties": {
- "url": {
- "type": "string",
- "format": "uri"
- },
- "total_count": {
- "type": "integer"
- },
- "+1": {
- "type": "integer"
- },
- "-1": {
- "type": "integer"
- },
- "laugh": {
- "type": "integer"
- },
- "confused": {
- "type": "integer"
- },
- "heart": {
- "type": "integer"
- },
- "hooray": {
- "type": "integer"
- },
- "eyes": {
- "type": "integer"
- },
- "rocket": {
- "type": "integer"
- }
- },
- "required": [
- "url",
- "total_count",
- "+1",
- "-1",
- "laugh",
- "confused",
- "heart",
- "hooray",
- "eyes",
- "rocket"
- ]
- }
- },
- "required": [
- "id",
- "node_id",
- "html_url",
- "issue_url",
- "author_association",
- "user",
- "url",
- "created_at",
- "updated_at"
- ]
- },
- "pages": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "page_name": {
- "type": "string"
- },
- "title": {
- "type": "string"
- },
- "summary": {
- "type": "string",
- "nullable": true
- },
- "action": {
- "type": "string"
- },
- "sha": {
- "type": "string"
- },
- "html_url": {
- "type": "string"
- }
- }
- }
- }
- }
- },
- "public": {
- "type": "boolean"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- }
- },
- "required": [
- "id",
- "type",
- "actor",
- "repo",
- "payload",
- "public",
- "created_at"
- ]
- }
- }
- }
- }
- },
- "404": {
- "description": "Resource not found",
- "content": {
- "application/json": {
- "schema": {
- "title": "Basic Error",
- "description": "Basic Error",
- "type": "object",
- "properties": {
- "message": {
- "type": "string"
- },
- "documentation_url": {
- "type": "string"
- },
- "url": {
- "type": "string"
- },
- "status": {
- "type": "string"
- }
- }
- }
- }
- }
- },
- "403": {
- "description": "Forbidden",
- "content": {
- "application/json": {
- "schema": {
- "title": "Basic Error",
- "description": "Basic Error",
- "type": "object",
- "properties": {
- "message": {
- "type": "string"
- },
- "documentation_url": {
- "type": "string"
- },
- "url": {
- "type": "string"
- },
- "status": {
- "type": "string"
- }
- }
- }
- }
- }
- },
- "304": {
- "description": "Not modified"
- },
- "301": {
- "description": "Moved permanently",
- "content": {
- "application/json": {
- "schema": {
- "title": "Basic Error",
- "description": "Basic Error",
- "type": "object",
- "properties": {
- "message": {
- "type": "string"
- },
- "documentation_url": {
- "type": "string"
- },
- "url": {
- "type": "string"
- },
- "status": {
- "type": "string"
- }
- }
- }
- }
- }
- }
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [
-
- ],
- "category": "activity",
- "subcategory": "events"
- }
- }
- },
"/notifications": {
"get": {
"summary": "List notifications for the authenticated user",
@@ -44070,2844 +38263,6 @@
}
}
},
- "/orgs/{org}/events": {
- "get": {
- "summary": "List public organization events",
- "description": "",
- "tags": [
- "activity"
- ],
- "operationId": "activity/list-public-org-events",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/activity#list-public-organization-events"
- },
- "parameters": [
- {
- "name": "org",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "per_page",
- "description": "Results per page (max 100).",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 30
- }
- },
- {
- "name": "page",
- "description": "Page number of the results to fetch.",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 1
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Response",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "title": "Event",
- "description": "Event",
- "type": "object",
- "properties": {
- "id": {
- "type": "string"
- },
- "type": {
- "type": "string",
- "nullable": true
- },
- "actor": {
- "title": "Actor",
- "description": "Actor",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "login": {
- "type": "string"
- },
- "display_login": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri"
- },
- "avatar_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "login",
- "gravatar_id",
- "url",
- "avatar_url"
- ]
- },
- "repo": {
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "name": {
- "type": "string"
- },
- "url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "name",
- "url"
- ]
- },
- "org": {
- "title": "Actor",
- "description": "Actor",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "login": {
- "type": "string"
- },
- "display_login": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri"
- },
- "avatar_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "id",
- "login",
- "gravatar_id",
- "url",
- "avatar_url"
- ]
- },
- "payload": {
- "type": "object",
- "properties": {
- "action": {
- "type": "string"
- },
- "issue": {
- "title": "Issue Simple",
- "description": "Issue Simple",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDU6SXNzdWUx"
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
- },
- "repository_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World"
- },
- "labels_url": {
- "type": "string",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}"
- },
- "comments_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/comments"
- },
- "events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/issues/1347/events"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World/issues/1347"
- },
- "number": {
- "type": "integer",
- "example": 1347
- },
- "state": {
- "type": "string",
- "example": "open"
- },
- "title": {
- "type": "string",
- "example": "Found a bug"
- },
- "body": {
- "type": "string",
- "example": "I'm having a problem with this."
- },
- "user": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "labels": {
- "type": "array",
- "items": {
- "title": "Label",
- "description": "Color-coded labels help you categorize and filter your issues (just like labels in Gmail).",
- "type": "object",
- "properties": {
- "id": {
- "type": "integer",
- "format": "int64",
- "example": 208045946
- },
- "node_id": {
- "type": "string",
- "example": "MDU6TGFiZWwyMDgwNDU5NDY="
- },
- "url": {
- "description": "URL for the label",
- "example": "https://api.github.com/repositories/42/labels/bug",
- "type": "string",
- "format": "uri"
- },
- "name": {
- "description": "The name of the label.",
- "example": "bug",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "Something isn't working",
- "nullable": true
- },
- "color": {
- "description": "6-character hex code, without the leading #, identifying the color",
- "example": "FFFFFF",
- "type": "string"
- },
- "default": {
- "type": "boolean",
- "example": true
- }
- },
- "required": [
- "id",
- "node_id",
- "url",
- "name",
- "description",
- "color",
- "default"
- ]
- }
- },
- "assignee": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "assignees": {
- "type": "array",
- "items": {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- },
- "nullable": true
- },
- "milestone": {
- "nullable": true,
- "allOf": [
- {
- "title": "Milestone",
- "description": "A collection of related issues and pull requests.",
- "type": "object",
- "properties": {
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World/milestones/v1.0"
- },
- "labels_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World/milestones/1/labels"
- },
- "id": {
- "type": "integer",
- "example": 1002604
- },
- "node_id": {
- "type": "string",
- "example": "MDk6TWlsZXN0b25lMTAwMjYwNA=="
- },
- "number": {
- "description": "The number of the milestone.",
- "type": "integer",
- "example": 42
- },
- "state": {
- "description": "The state of the milestone.",
- "example": "open",
- "type": "string",
- "enum": [
- "open",
- "closed"
- ],
- "default": "open"
- },
- "title": {
- "description": "The title of the milestone.",
- "example": "v1.0",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "Tracking milestone for version 1.0",
- "nullable": true
- },
- "creator": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "open_issues": {
- "type": "integer",
- "example": 4
- },
- "closed_issues": {
- "type": "integer",
- "example": 8
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-10T20:09:31Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2014-03-03T18:58:10Z"
- },
- "closed_at": {
- "type": "string",
- "format": "date-time",
- "example": "2013-02-12T13:22:01Z",
- "nullable": true
- },
- "due_on": {
- "type": "string",
- "format": "date-time",
- "example": "2012-10-09T23:39:01Z",
- "nullable": true
- }
- },
- "required": [
- "closed_issues",
- "creator",
- "description",
- "due_on",
- "closed_at",
- "id",
- "node_id",
- "labels_url",
- "html_url",
- "number",
- "open_issues",
- "state",
- "title",
- "url",
- "created_at",
- "updated_at"
- ]
- }
- ]
- },
- "locked": {
- "type": "boolean",
- "example": true
- },
- "active_lock_reason": {
- "type": "string",
- "example": "too heated",
- "nullable": true
- },
- "comments": {
- "type": "integer",
- "example": 0
- },
- "pull_request": {
- "type": "object",
- "properties": {
- "merged_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- },
- "diff_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "patch_url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "nullable": true
- }
- },
- "required": [
- "diff_url",
- "html_url",
- "patch_url",
- "url"
- ]
- },
- "closed_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-22T13:33:48Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-22T13:33:48Z"
- },
- "author_association": {
- "title": "author_association",
- "type": "string",
- "example": "OWNER",
- "description": "How the author is associated with the repository.",
- "enum": [
- "COLLABORATOR",
- "CONTRIBUTOR",
- "FIRST_TIMER",
- "FIRST_TIME_CONTRIBUTOR",
- "MANNEQUIN",
- "MEMBER",
- "NONE",
- "OWNER"
- ]
- },
- "body_html": {
- "type": "string"
- },
- "body_text": {
- "type": "string"
- },
- "timeline_url": {
- "type": "string",
- "format": "uri"
- },
- "repository": {
- "title": "Repository",
- "description": "A git repository",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the repository",
- "example": 42,
- "type": "integer"
- },
- "node_id": {
- "type": "string",
- "example": "MDEwOlJlcG9zaXRvcnkxMjk2MjY5"
- },
- "name": {
- "description": "The name of the repository.",
- "type": "string",
- "example": "Team Environment"
- },
- "full_name": {
- "type": "string",
- "example": "octocat/Hello-World"
- },
- "license": {
- "nullable": true,
- "allOf": [
- {
- "title": "License Simple",
- "description": "License Simple",
- "type": "object",
- "properties": {
- "key": {
- "type": "string",
- "example": "mit"
- },
- "name": {
- "type": "string",
- "example": "MIT License"
- },
- "url": {
- "type": "string",
- "nullable": true,
- "format": "uri",
- "example": "https://api.github.com/licenses/mit"
- },
- "spdx_id": {
- "type": "string",
- "nullable": true,
- "example": "MIT"
- },
- "node_id": {
- "type": "string",
- "example": "MDc6TGljZW5zZW1pdA=="
- },
- "html_url": {
- "type": "string",
- "format": "uri"
- }
- },
- "required": [
- "key",
- "name",
- "url",
- "spdx_id",
- "node_id"
- ]
- }
- ]
- },
- "organization": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "forks": {
- "type": "integer"
- },
- "permissions": {
- "type": "object",
- "properties": {
- "admin": {
- "type": "boolean"
- },
- "pull": {
- "type": "boolean"
- },
- "triage": {
- "type": "boolean"
- },
- "push": {
- "type": "boolean"
- },
- "maintain": {
- "type": "boolean"
- }
- },
- "required": [
- "admin",
- "pull",
- "push"
- ]
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "private": {
- "description": "Whether the repository is private or public.",
- "default": false,
- "type": "boolean"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat/Hello-World"
- },
- "description": {
- "type": "string",
- "example": "This your first repo!",
- "nullable": true
- },
- "fork": {
- "type": "boolean"
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/repos/octocat/Hello-World"
- },
- "archive_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}"
- },
- "assignees_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/assignees{/user}"
- },
- "blobs_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}"
- },
- "branches_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/branches{/branch}"
- },
- "collaborators_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}"
- },
- "comments_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/comments{/number}"
- },
- "commits_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/commits{/sha}"
- },
- "compare_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}"
- },
- "contents_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/contents/{+path}"
- },
- "contributors_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/contributors"
- },
- "deployments_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/deployments"
- },
- "downloads_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/downloads"
- },
- "events_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/events"
- },
- "forks_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/forks"
- },
- "git_commits_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}"
- },
- "git_refs_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}"
- },
- "git_tags_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}"
- },
- "git_url": {
- "type": "string",
- "example": "git:github.com/octocat/Hello-World.git"
- },
- "issue_comment_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}"
- },
- "issue_events_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues/events{/number}"
- },
- "issues_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/issues{/number}"
- },
- "keys_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/keys{/key_id}"
- },
- "labels_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/labels{/name}"
- },
- "languages_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/languages"
- },
- "merges_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/merges"
- },
- "milestones_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/milestones{/number}"
- },
- "notifications_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}"
- },
- "pulls_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/pulls{/number}"
- },
- "releases_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/releases{/id}"
- },
- "ssh_url": {
- "type": "string",
- "example": "git@github.com:octocat/Hello-World.git"
- },
- "stargazers_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/stargazers"
- },
- "statuses_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/statuses/{sha}"
- },
- "subscribers_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/subscribers"
- },
- "subscription_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/subscription"
- },
- "tags_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/tags"
- },
- "teams_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/teams"
- },
- "trees_url": {
- "type": "string",
- "example": "http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}"
- },
- "clone_url": {
- "type": "string",
- "example": "https://github.com/octocat/Hello-World.git"
- },
- "mirror_url": {
- "type": "string",
- "format": "uri",
- "example": "git:git.example.com/octocat/Hello-World",
- "nullable": true
- },
- "hooks_url": {
- "type": "string",
- "format": "uri",
- "example": "http://api.github.com/repos/octocat/Hello-World/hooks"
- },
- "svn_url": {
- "type": "string",
- "format": "uri",
- "example": "https://svn.github.com/octocat/Hello-World"
- },
- "homepage": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com",
- "nullable": true
- },
- "language": {
- "type": "string",
- "nullable": true
- },
- "forks_count": {
- "type": "integer",
- "example": 9
- },
- "stargazers_count": {
- "type": "integer",
- "example": 80
- },
- "watchers_count": {
- "type": "integer",
- "example": 80
- },
- "size": {
- "type": "integer",
- "example": 108
- },
- "default_branch": {
- "description": "The default branch of the repository.",
- "type": "string",
- "example": "master"
- },
- "open_issues_count": {
- "type": "integer",
- "example": 0
- },
- "is_template": {
- "description": "Whether this repository acts as a template that can be used to generate new repositories.",
- "default": false,
- "type": "boolean",
- "example": true
- },
- "topics": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "has_issues": {
- "description": "Whether issues are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_projects": {
- "description": "Whether projects are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_wiki": {
- "description": "Whether the wiki is enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "has_pages": {
- "type": "boolean"
- },
- "has_downloads": {
- "description": "Whether downloads are enabled.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "archived": {
- "description": "Whether the repository is archived.",
- "default": false,
- "type": "boolean"
- },
- "disabled": {
- "type": "boolean",
- "description": "Returns whether or not this repository disabled."
- },
- "visibility": {
- "description": "The repository visibility: public, private, or internal.",
- "default": "public",
- "type": "string"
- },
- "pushed_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:06:43Z",
- "nullable": true
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:01:12Z",
- "nullable": true
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-01-26T19:14:43Z",
- "nullable": true
- },
- "allow_rebase_merge": {
- "description": "Whether to allow rebase merges for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "template_repository": {
- "nullable": true,
- "type": "object",
- "properties": {
- "id": {
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "full_name": {
- "type": "string"
- },
- "owner": {
- "type": "object",
- "properties": {
- "login": {
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "avatar_url": {
- "type": "string"
- },
- "gravatar_id": {
- "type": "string"
- },
- "url": {
- "type": "string"
- },
- "html_url": {
- "type": "string"
- },
- "followers_url": {
- "type": "string"
- },
- "following_url": {
- "type": "string"
- },
- "gists_url": {
- "type": "string"
- },
- "starred_url": {
- "type": "string"
- },
- "subscriptions_url": {
- "type": "string"
- },
- "organizations_url": {
- "type": "string"
- },
- "repos_url": {
- "type": "string"
- },
- "events_url": {
- "type": "string"
- },
- "received_events_url": {
- "type": "string"
- },
- "type": {
- "type": "string"
- },
- "site_admin": {
- "type": "boolean"
- }
- }
- },
- "private": {
- "type": "boolean"
- },
- "html_url": {
- "type": "string"
- },
- "description": {
- "type": "string"
- },
- "fork": {
- "type": "boolean"
- },
- "url": {
- "type": "string"
- },
- "archive_url": {
- "type": "string"
- },
- "assignees_url": {
- "type": "string"
- },
- "blobs_url": {
- "type": "string"
- },
- "branches_url": {
- "type": "string"
- },
- "collaborators_url": {
- "type": "string"
- },
- "comments_url": {
- "type": "string"
- },
- "commits_url": {
- "type": "string"
- },
- "compare_url": {
- "type": "string"
- },
- "contents_url": {
- "type": "string"
- },
- "contributors_url": {
- "type": "string"
- },
- "deployments_url": {
- "type": "string"
- },
- "downloads_url": {
- "type": "string"
- },
- "events_url": {
- "type": "string"
- },
- "forks_url": {
- "type": "string"
- },
- "git_commits_url": {
- "type": "string"
- },
- "git_refs_url": {
- "type": "string"
- },
- "git_tags_url": {
- "type": "string"
- },
- "git_url": {
- "type": "string"
- },
- "issue_comment_url": {
- "type": "string"
- },
- "issue_events_url": {
- "type": "string"
- },
- "issues_url": {
- "type": "string"
- },
- "keys_url": {
- "type": "string"
- },
- "labels_url": {
- "type": "string"
- },
- "languages_url": {
- "type": "string"
- },
- "merges_url": {
- "type": "string"
- },
- "milestones_url": {
- "type": "string"
- },
- "notifications_url": {
- "type": "string"
- },
- "pulls_url": {
- "type": "string"
- },
- "releases_url": {
- "type": "string"
- },
- "ssh_url": {
- "type": "string"
- },
- "stargazers_url": {
- "type": "string"
- },
- "statuses_url": {
- "type": "string"
- },
- "subscribers_url": {
- "type": "string"
- },
- "subscription_url": {
- "type": "string"
- },
- "tags_url": {
- "type": "string"
- },
- "teams_url": {
- "type": "string"
- },
- "trees_url": {
- "type": "string"
- },
- "clone_url": {
- "type": "string"
- },
- "mirror_url": {
- "type": "string"
- },
- "hooks_url": {
- "type": "string"
- },
- "svn_url": {
- "type": "string"
- },
- "homepage": {
- "type": "string"
- },
- "language": {
- "type": "string"
- },
- "forks_count": {
- "type": "integer"
- },
- "stargazers_count": {
- "type": "integer"
- },
- "watchers_count": {
- "type": "integer"
- },
- "size": {
- "type": "integer"
- },
- "default_branch": {
- "type": "string"
- },
- "open_issues_count": {
- "type": "integer"
- },
- "is_template": {
- "type": "boolean"
- },
- "topics": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "has_issues": {
- "type": "boolean"
- },
- "has_projects": {
- "type": "boolean"
- },
- "has_wiki": {
- "type": "boolean"
- },
- "has_pages": {
- "type": "boolean"
- },
- "has_downloads": {
- "type": "boolean"
- },
- "archived": {
- "type": "boolean"
- },
- "disabled": {
- "type": "boolean"
- },
- "visibility": {
- "type": "string"
- },
- "pushed_at": {
- "type": "string"
- },
- "created_at": {
- "type": "string"
- },
- "updated_at": {
- "type": "string"
- },
- "permissions": {
- "type": "object",
- "properties": {
- "admin": {
- "type": "boolean"
- },
- "push": {
- "type": "boolean"
- },
- "pull": {
- "type": "boolean"
- }
- }
- },
- "allow_rebase_merge": {
- "type": "boolean"
- },
- "temp_clone_token": {
- "type": "string"
- },
- "allow_squash_merge": {
- "type": "boolean"
- },
- "delete_branch_on_merge": {
- "type": "boolean"
- },
- "allow_merge_commit": {
- "type": "boolean"
- },
- "subscribers_count": {
- "type": "integer"
- },
- "network_count": {
- "type": "integer"
- }
- }
- },
- "temp_clone_token": {
- "type": "string"
- },
- "allow_squash_merge": {
- "description": "Whether to allow squash merges for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "delete_branch_on_merge": {
- "description": "Whether to delete head branches when pull requests are merged",
- "default": false,
- "type": "boolean",
- "example": false
- },
- "allow_merge_commit": {
- "description": "Whether to allow merge commits for pull requests.",
- "default": true,
- "type": "boolean",
- "example": true
- },
- "subscribers_count": {
- "type": "integer"
- },
- "network_count": {
- "type": "integer"
- },
- "open_issues": {
- "type": "integer"
- },
- "watchers": {
- "type": "integer"
- },
- "master_branch": {
- "type": "string"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:42Z\""
- }
- },
- "required": [
- "archive_url",
- "assignees_url",
- "blobs_url",
- "branches_url",
- "collaborators_url",
- "comments_url",
- "commits_url",
- "compare_url",
- "contents_url",
- "contributors_url",
- "deployments_url",
- "description",
- "downloads_url",
- "events_url",
- "fork",
- "forks_url",
- "full_name",
- "git_commits_url",
- "git_refs_url",
- "git_tags_url",
- "hooks_url",
- "html_url",
- "id",
- "node_id",
- "issue_comment_url",
- "issue_events_url",
- "issues_url",
- "keys_url",
- "labels_url",
- "languages_url",
- "merges_url",
- "milestones_url",
- "name",
- "notifications_url",
- "owner",
- "private",
- "pulls_url",
- "releases_url",
- "stargazers_url",
- "statuses_url",
- "subscribers_url",
- "subscription_url",
- "tags_url",
- "teams_url",
- "trees_url",
- "url",
- "clone_url",
- "default_branch",
- "forks",
- "forks_count",
- "git_url",
- "has_downloads",
- "has_issues",
- "has_projects",
- "has_wiki",
- "has_pages",
- "homepage",
- "language",
- "archived",
- "disabled",
- "mirror_url",
- "open_issues",
- "open_issues_count",
- "license",
- "pushed_at",
- "size",
- "ssh_url",
- "stargazers_count",
- "svn_url",
- "watchers",
- "watchers_count",
- "created_at",
- "updated_at"
- ]
- },
- "performed_via_github_app": {
- "nullable": true,
- "allOf": [
- {
- "title": "GitHub app",
- "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the GitHub app",
- "example": 37,
- "type": "integer"
- },
- "slug": {
- "description": "The slug name of the GitHub app",
- "example": "probot-owners",
- "type": "string"
- },
- "node_id": {
- "type": "string",
- "example": "MDExOkludGVncmF0aW9uMQ=="
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "name": {
- "description": "The name of the GitHub app",
- "example": "Probot Owners",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "The description of the app.",
- "nullable": true
- },
- "external_url": {
- "type": "string",
- "format": "uri",
- "example": "https://example.com"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/apps/super-ci"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "permissions": {
- "description": "The set of permissions for the GitHub app",
- "type": "object",
- "properties": {
- "issues": {
- "type": "string"
- },
- "checks": {
- "type": "string"
- },
- "metadata": {
- "type": "string"
- },
- "contents": {
- "type": "string"
- },
- "deployments": {
- "type": "string"
- }
- },
- "additionalProperties": {
- "type": "string"
- },
- "example": {
- "issues": "read",
- "deployments": "write"
- }
- },
- "events": {
- "description": "The list of events for the GitHub app",
- "example": [
- "label",
- "deployment"
- ],
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "installations_count": {
- "description": "The number of installations associated with the GitHub app",
- "example": 5,
- "type": "integer"
- },
- "client_id": {
- "type": "string",
- "example": "\"Iv1.25b5d1e65ffc4022\""
- },
- "client_secret": {
- "type": "string",
- "example": "\"1d4b2097ac622ba702d19de498f005747a8b21d3\""
- },
- "webhook_secret": {
- "type": "string",
- "example": "\"6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b\"",
- "nullable": true
- },
- "pem": {
- "type": "string",
- "example": "\"-----BEGIN RSA PRIVATE KEY-----\\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\\n-----END RSA PRIVATE KEY-----\\n\""
- }
- },
- "required": [
- "id",
- "node_id",
- "owner",
- "name",
- "description",
- "external_url",
- "html_url",
- "created_at",
- "updated_at",
- "permissions",
- "events"
- ],
- "additionalProperties": true
- }
- ]
- }
- },
- "required": [
- "assignee",
- "closed_at",
- "comments",
- "comments_url",
- "events_url",
- "html_url",
- "id",
- "node_id",
- "labels",
- "labels_url",
- "milestone",
- "number",
- "repository_url",
- "state",
- "locked",
- "title",
- "url",
- "user",
- "author_association",
- "created_at",
- "updated_at"
- ]
- },
- "comment": {
- "title": "Issue Comment",
- "description": "Comments provide a way for people to collaborate on an issue.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the issue comment",
- "example": 42,
- "type": "integer"
- },
- "node_id": {
- "type": "string"
- },
- "url": {
- "description": "URL for the issue comment",
- "example": "https://api.github.com/repositories/42/issues/comments/1",
- "type": "string",
- "format": "uri"
- },
- "body": {
- "description": "Contents of the issue comment",
- "example": "What version of Safari were you using when you observed this bug?",
- "type": "string"
- },
- "body_text": {
- "type": "string"
- },
- "body_html": {
- "type": "string"
- },
- "html_url": {
- "type": "string",
- "format": "uri"
- },
- "user": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-14T16:00:49Z"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2011-04-14T16:00:49Z"
- },
- "issue_url": {
- "type": "string",
- "format": "uri"
- },
- "author_association": {
- "title": "author_association",
- "type": "string",
- "example": "OWNER",
- "description": "How the author is associated with the repository.",
- "enum": [
- "COLLABORATOR",
- "CONTRIBUTOR",
- "FIRST_TIMER",
- "FIRST_TIME_CONTRIBUTOR",
- "MANNEQUIN",
- "MEMBER",
- "NONE",
- "OWNER"
- ]
- },
- "performed_via_github_app": {
- "nullable": true,
- "allOf": [
- {
- "title": "GitHub app",
- "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
- "type": "object",
- "properties": {
- "id": {
- "description": "Unique identifier of the GitHub app",
- "example": 37,
- "type": "integer"
- },
- "slug": {
- "description": "The slug name of the GitHub app",
- "example": "probot-owners",
- "type": "string"
- },
- "node_id": {
- "type": "string",
- "example": "MDExOkludGVncmF0aW9uMQ=="
- },
- "owner": {
- "nullable": true,
- "allOf": [
- {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- ]
- },
- "name": {
- "description": "The name of the GitHub app",
- "example": "Probot Owners",
- "type": "string"
- },
- "description": {
- "type": "string",
- "example": "The description of the app.",
- "nullable": true
- },
- "external_url": {
- "type": "string",
- "format": "uri",
- "example": "https://example.com"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/apps/super-ci"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "updated_at": {
- "type": "string",
- "format": "date-time",
- "example": "2017-07-08T16:18:44-04:00"
- },
- "permissions": {
- "description": "The set of permissions for the GitHub app",
- "type": "object",
- "properties": {
- "issues": {
- "type": "string"
- },
- "checks": {
- "type": "string"
- },
- "metadata": {
- "type": "string"
- },
- "contents": {
- "type": "string"
- },
- "deployments": {
- "type": "string"
- }
- },
- "additionalProperties": {
- "type": "string"
- },
- "example": {
- "issues": "read",
- "deployments": "write"
- }
- },
- "events": {
- "description": "The list of events for the GitHub app",
- "example": [
- "label",
- "deployment"
- ],
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "installations_count": {
- "description": "The number of installations associated with the GitHub app",
- "example": 5,
- "type": "integer"
- },
- "client_id": {
- "type": "string",
- "example": "\"Iv1.25b5d1e65ffc4022\""
- },
- "client_secret": {
- "type": "string",
- "example": "\"1d4b2097ac622ba702d19de498f005747a8b21d3\""
- },
- "webhook_secret": {
- "type": "string",
- "example": "\"6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b\"",
- "nullable": true
- },
- "pem": {
- "type": "string",
- "example": "\"-----BEGIN RSA PRIVATE KEY-----\\nMIIEogIBAAKCAQEArYxrNYD/iT5CZVpRJu4rBKmmze3PVmT/gCo2ATUvDvZTPTey\\nxcGJ3vvrJXazKk06pN05TN29o98jrYz4cengG3YGsXPNEpKsIrEl8NhbnxapEnM9\\nJCMRe0P5JcPsfZlX6hmiT7136GRWiGOUba2X9+HKh8QJVLG5rM007TBER9/z9mWm\\nrJuNh+m5l320oBQY/Qq3A7wzdEfZw8qm/mIN0FCeoXH1L6B8xXWaAYBwhTEh6SSn\\nZHlO1Xu1JWDmAvBCi0RO5aRSKM8q9QEkvvHP4yweAtK3N8+aAbZ7ovaDhyGz8r6r\\nzhU1b8Uo0Z2ysf503WqzQgIajr7Fry7/kUwpgQIDAQABAoIBADwJp80Ko1xHPZDy\\nfcCKBDfIuPvkmSW6KumbsLMaQv1aGdHDwwTGv3t0ixSay8CGlxMRtRDyZPib6SvQ\\n6OH/lpfpbMdW2ErkksgtoIKBVrDilfrcAvrNZu7NxRNbhCSvN8q0s4ICecjbbVQh\\nnueSdlA6vGXbW58BHMq68uRbHkP+k+mM9U0mDJ1HMch67wlg5GbayVRt63H7R2+r\\nVxcna7B80J/lCEjIYZznawgiTvp3MSanTglqAYi+m1EcSsP14bJIB9vgaxS79kTu\\noiSo93leJbBvuGo8QEiUqTwMw4tDksmkLsoqNKQ1q9P7LZ9DGcujtPy4EZsamSJT\\ny8OJt0ECgYEA2lxOxJsQk2kI325JgKFjo92mQeUObIvPfSNWUIZQDTjniOI6Gv63\\nGLWVFrZcvQBWjMEQraJA9xjPbblV8PtfO87MiJGLWCHFxmPz2dzoedN+2Coxom8m\\nV95CLz8QUShuao6u/RYcvUaZEoYs5bHcTmy5sBK80JyEmafJPtCQVxMCgYEAy3ar\\nZr3yv4xRPEPMat4rseswmuMooSaK3SKub19WFI5IAtB/e7qR1Rj9JhOGcZz+OQrl\\nT78O2OFYlgOIkJPvRMrPpK5V9lslc7tz1FSh3BZMRGq5jSyD7ETSOQ0c8T2O/s7v\\nbeEPbVbDe4mwvM24XByH0GnWveVxaDl51ABD65sCgYB3ZAspUkOA5egVCh8kNpnd\\nSd6SnuQBE3ySRlT2WEnCwP9Ph6oPgn+oAfiPX4xbRqkL8q/k0BdHQ4h+zNwhk7+h\\nWtPYRAP1Xxnc/F+jGjb+DVaIaKGU18MWPg7f+FI6nampl3Q0KvfxwX0GdNhtio8T\\nTj1E+SnFwh56SRQuxSh2gwKBgHKjlIO5NtNSflsUYFM+hyQiPiqnHzddfhSG+/3o\\nm5nNaSmczJesUYreH5San7/YEy2UxAugvP7aSY2MxB+iGsiJ9WD2kZzTUlDZJ7RV\\nUzWsoqBR+eZfVJ2FUWWvy8TpSG6trh4dFxImNtKejCR1TREpSiTV3Zb1dmahK9GV\\nrK9NAoGAbBxRLoC01xfxCTgt5BDiBcFVh4fp5yYKwavJPLzHSpuDOrrI9jDn1oKN\\nonq5sDU1i391zfQvdrbX4Ova48BN+B7p63FocP/MK5tyyBoT8zQEk2+vWDOw7H/Z\\nu5dTCPxTIsoIwUw1I+7yIxqJzLPFgR2gVBwY1ra/8iAqCj+zeBw=\\n-----END RSA PRIVATE KEY-----\\n\""
- }
- },
- "required": [
- "id",
- "node_id",
- "owner",
- "name",
- "description",
- "external_url",
- "html_url",
- "created_at",
- "updated_at",
- "permissions",
- "events"
- ],
- "additionalProperties": true
- }
- ]
- },
- "reactions": {
- "title": "Reaction Rollup",
- "type": "object",
- "properties": {
- "url": {
- "type": "string",
- "format": "uri"
- },
- "total_count": {
- "type": "integer"
- },
- "+1": {
- "type": "integer"
- },
- "-1": {
- "type": "integer"
- },
- "laugh": {
- "type": "integer"
- },
- "confused": {
- "type": "integer"
- },
- "heart": {
- "type": "integer"
- },
- "hooray": {
- "type": "integer"
- },
- "eyes": {
- "type": "integer"
- },
- "rocket": {
- "type": "integer"
- }
- },
- "required": [
- "url",
- "total_count",
- "+1",
- "-1",
- "laugh",
- "confused",
- "heart",
- "hooray",
- "eyes",
- "rocket"
- ]
- }
- },
- "required": [
- "id",
- "node_id",
- "html_url",
- "issue_url",
- "author_association",
- "user",
- "url",
- "created_at",
- "updated_at"
- ]
- },
- "pages": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "page_name": {
- "type": "string"
- },
- "title": {
- "type": "string"
- },
- "summary": {
- "type": "string",
- "nullable": true
- },
- "action": {
- "type": "string"
- },
- "sha": {
- "type": "string"
- },
- "html_url": {
- "type": "string"
- }
- }
- }
- }
- }
- },
- "public": {
- "type": "boolean"
- },
- "created_at": {
- "type": "string",
- "format": "date-time",
- "nullable": true
- }
- },
- "required": [
- "id",
- "type",
- "actor",
- "repo",
- "payload",
- "public",
- "created_at"
- ]
- }
- }
- }
- }
- }
- },
- "x-github": {
- "githubCloudOnly": false,
- "enabledForGitHubApps": true,
- "previews": [
-
- ],
- "category": "activity",
- "subcategory": "events"
- }
- }
- },
"/orgs/{org}/hooks": {
"get": {
"summary": "List organization webhooks",
@@ -54796,378 +46151,6 @@
}
}
},
- "/orgs/{org}/public_members": {
- "get": {
- "summary": "List public organization members",
- "description": "Members of an organization can choose to have their membership publicized or not.",
- "tags": [
- "orgs"
- ],
- "operationId": "orgs/list-public-members",
- "externalDocs": {
- "description": "API method documentation",
- "url": "https://docs.github.com/github-ae@latest/rest/reference/orgs#list-public-organization-members"
- },
- "parameters": [
- {
- "name": "org",
- "in": "path",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "per_page",
- "description": "Results per page (max 100).",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 30
- }
- },
- {
- "name": "page",
- "description": "Page number of the results to fetch.",
- "in": "query",
- "schema": {
- "type": "integer",
- "default": 1
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Response",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "title": "Simple User",
- "description": "Simple User",
- "type": "object",
- "properties": {
- "login": {
- "type": "string",
- "example": "octocat"
- },
- "id": {
- "type": "integer",
- "example": 1
- },
- "node_id": {
- "type": "string",
- "example": "MDQ6VXNlcjE="
- },
- "avatar_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/images/error/octocat_happy.gif"
- },
- "gravatar_id": {
- "type": "string",
- "example": "41d064eb2195891e12d0413f63227ea7",
- "nullable": true
- },
- "url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat"
- },
- "html_url": {
- "type": "string",
- "format": "uri",
- "example": "https://github.com/octocat"
- },
- "followers_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/followers"
- },
- "following_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/following{/other_user}"
- },
- "gists_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/gists{/gist_id}"
- },
- "starred_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/starred{/owner}{/repo}"
- },
- "subscriptions_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/subscriptions"
- },
- "organizations_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/orgs"
- },
- "repos_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/repos"
- },
- "events_url": {
- "type": "string",
- "example": "https://api.github.com/users/octocat/events{/privacy}"
- },
- "received_events_url": {
- "type": "string",
- "format": "uri",
- "example": "https://api.github.com/users/octocat/received_events"
- },
- "type": {
- "type": "string",
- "example": "User"
- },
- "site_admin": {
- "type": "boolean"
- },
- "starred_at": {
- "type": "string",
- "example": "\"2020-07-09T00:17:55Z\""
- }
- },
- "required": [
- "avatar_url",
- "events_url",
- "followers_url",
- "following_url",
- "gists_url",
- "gravatar_id",
- "html_url",
- "id",
- "node_id",
- "login",
- "organizations_url",
- "received_events_url",
- "repos_url",
- "site_admin",
- "starred_url",
- "subscriptions_url",
- "type",
- "url"
- ],
- "nullable": true
- }
- },
- "examples": {
- "default": {
- "value": [
- {
- "login": "octocat",
- "id": 1,
- "node_id": "MDQ6VXNlcjE=",
- "avatar_url": "https://github.com/images/error/octocat_happy.gif",
- "gravatar_id": "",
- "url": "https://api.github.com/users/octocat",
- "html_url": "https://github.com/octocat",
- "followers_url": "https://api.github.com/users/octocat/followers",
- "following_url": "https://api.github.com/users/octocat/following{/other_user}",
- "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
- "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
- "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
- "organizations_url": "https://api.github.com/users/octocat/orgs",
- "repos_url": "https://api.github.com/users/octocat/repos",
- "events_url": "https://api.github.com/users/octocat/events{/privacy}",
- "received_events_url": "https://api.github.com/users/octocat/received_events",
- "type": "User",
- "site_admin": false
- }
- ]
- }
- }
- }
- },
- "headers": {
- "Link": {
- "example": "