[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Desktop (please complete the following information):**\n - OS: [e.g. iOS]\n - Browser [e.g. chrome, safari]\n - Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n - Device: [e.g. iPhone6]\n - OS: [e.g. iOS8.1]\n - Browser [e.g. stock browser, safari]\n - Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "# Description\n\nPlease include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.\n\nFixes # (issue)\n\n### Type of change\n\nPlease delete options that are not relevant.\n\n- [ ] Bug fix (non-breaking change which fixes an issue)\n- [ ] New feature (non-breaking change which adds functionality)\n- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)\n- [ ] This change requires a documentation update\n\n### Checklist:\n\n- [ ] My code follows the style guidelines of this project\n- [ ] I have performed a self-review of my own code\n- [ ] I have commented my code in hard-to-understand areas\n- [ ] I have made corresponding changes to the documentation\n- [ ] My changes generate no new warnings\n- [ ] Any dependent changes have been merged and published in downstream modules\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"npm\"\n    directory: \"/\"\n    schedule:\n      interval: \"daily\"\n    assignees:\n      - \"r4wizard\"\n    pull-request-branch-name:\n      separator: \"-\"\n"
  },
  {
    "path": ".github/labeler.yml",
    "content": "documentation:\n  - \"**/*.md\"\n\nengine:\n  - \"src/**/*\"\n\ntemplate:\n  - \"src-nuxt/**/*\"\n"
  },
  {
    "path": ".github/workflows/codeql-analysis.yml",
    "content": "name: \"CodeQL\"\n\non:\n  push:\n    branches: [master]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [master]\n  schedule:\n    - cron: '0 19 * * 2'\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n\n    strategy:\n      fail-fast: false\n      matrix:\n        # Override automatic language detection by changing the below list\n        # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']\n        language: ['javascript']\n        # Learn more...\n        # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v2\n      with:\n        # We must fetch at least the immediate parents so that if this is\n        # a pull request then we can checkout the head.\n        fetch-depth: 2\n\n    # If this run was triggered by a pull request event, then checkout\n    # the head of the pull request instead of the merge commit.\n    - run: git checkout HEAD^2\n      if: ${{ github.event_name == 'pull_request' }}\n\n    # Initializes the CodeQL tools for scanning.\n    - name: Initialize CodeQL\n      uses: github/codeql-action/init@v1\n      with:\n         languages: ${{ matrix.language }}\n\n    # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).\n    # If this step fails, then you should remove it and run the build manually (see below)\n    - name: Autobuild\n      uses: github/codeql-action/autobuild@v1\n\n    # ℹ️ Command-line programs to run using the OS shell.\n    # 📚 https://git.io/JvXDl\n\n    # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines\n    #    and modify them (or add more) to build your code if your project\n    #    uses a compiled language\n\n    #- run: |\n    #   make bootstrap\n    #   make release\n\n    - name: Perform CodeQL Analysis\n      uses: github/codeql-action/analyze@v1\n"
  },
  {
    "path": ".github/workflows/greetings.yml",
    "content": "name: Greetings\n\non: [pull_request, issues]\n\njobs:\n  greeting:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/first-interaction@v1\n      with:\n        repo-token: ${{ secrets.GITHUB_TOKEN }}\n        issue-message: 'Thank you for opening your first issue! Please ensure you''ve read the [CONTRIBUTING.md](https://github.com/ouropencode/OpenDocumenter/blob/master/CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](https://github.com/ouropencode/OpenDocumenter/blob/master/CODE_OF_CONDUCT.md) files.'\n        pr-message: 'Thank you for opening your first pull request! Please ensure you''ve read the [CONTRIBUTING.md](https://github.com/ouropencode/OpenDocumenter/blob/master/CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](https://github.com/ouropencode/OpenDocumenter/blob/master/CODE_OF_CONDUCT.md) files.'\n"
  },
  {
    "path": ".github/workflows/label.yml",
    "content": "name: Labeler\n\non: [pull_request]\n\njobs:\n  label:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/labeler@v2\n      with:\n        repo-token: \"${{ secrets.GITHUB_TOKEN }}\"\n"
  },
  {
    "path": ".github/workflows/quisque.yml",
    "content": "name: Quisque API Build\n\non:\n  push:\n    branches: [\"master\"]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n    - name: Setup Node.js Environment\n      uses: actions/setup-node@v2.1.1\n      with:\n        node-version: '>=14.6'\n    - name: Checkout Git Repository\n      uses: actions/checkout@master\n    - name: Install Dependencies (with caching)\n      uses: bahmutov/npm-install@v1\n    - name: Generate Documentation\n      run: npm run dev-generate\n    - name: Upload Build Artifact\n      uses: actions/upload-artifact@v2\n      with:\n        name: documentation\n        path: example/docs/\n        if-no-files-found: error\n    - name: Deploy to GitHub Pages\n      uses: crazy-max/ghaction-github-pages@v2.1.1\n      with:\n        target_branch: gh-pages\n        build_dir: example/docs/\n      env:\n        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".gitignore",
    "content": "node_modules/\n.nuxt/\ndist/\ndocs/\ntmp/\n*.log\npackage-lock.json\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or\n advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic\n address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at ouropencode@shadowacre.ltd. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see\nhttps://www.contributor-covenant.org/faq\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nWe love pull requests from everyone.\n\nWhen contributing to this repository, please first discuss the change you wish to make by opening an issue. Please note we have a [code of conduct](CODE_OF_CONDUCT.md), please follow it in all your interactions with the project.\n\n## Development Setup\n\n### Fork the repository\n```bash\n> git clone git@github.com:ouropencode/opendocumenter.git\n```\n\n### Set up your machine\n```bash\n> yarn install\n```\n\n### Execute\n```bash\n> yarn start         # run the example 'openapi.yml' in  ./example\n> yarn dev           # watch the filesystem for changes and exec `yarn start`\n```\n\n## Pull Request Process\nWhen your feature is ready to show to others, you should follow the below process to allow for an easy contribution flow.\n\n1. Make your changes.\n2. If applicable, Update the [README.md](README.md).\n3. If applicable, Update the `./example/config.json` file.\n4. If applicable, Update the `./example/openapi.yml` file.\n5. Push to a new branch.\n6. Create a [draft pull request](https://github.blog/2019-02-14-introducing-draft-pull-requests/).\n7. When ready to merge, update pull request to 'Ready for Review'.\n8. Wait for us, we try to comment on pull requests within a reasonable timeframe. We may suggest changes before accepting the pull request.\n\n## Internationalization\nAny contributions should consider the existing i18n support available through the `$i18n()` method. Any new strings added to the project should use this method for string internationalization. When adding a new string you will need to edit the `./src/index.js` file, and the `./example/config.json` file.\n\n## Configuration\nAll configuration is handled through a `.json` file provided by the end-user. Provided throughout the project via the `$config.*` variable. When adding a new parameter you will need to edit the `./src/index.js` file, the `./src/environment.json` file, and the `./example/config.json` file.\n\nCare should be taken when altering the `environment.json` file - the intention if to provide enough structure for the documentation to display even if no env is available to inject (this happens when running `yarn dev-nuxt`). Ideally, this means purely structural elements such as `{}` and `[]` although this isn't a hard requirement.\n\n## Versions\nFor versioning we use the [Semantic Versioning](https://semver.org) versioning scheme. Versioning will be managed by the $ourOpenCode team and contributors should leave all versions at the version forked.\n"
  },
  {
    "path": "LICENSE.md",
    "content": "# Copyright (c) 2020+ OurOpenCode\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "<h1 align=\"center\">OpenDocumenter</h1>\n\n<p align=\"center\">\n  <img alt=\"Version\" src=\"https://img.shields.io/github/package-json/v/ouropencode/OpenDocumenter\" />\n  <img alt=\"npm\" src=\"https://img.shields.io/npm/v/opendocumenter\" />\n  <img alt=\"License\" src=\"https://img.shields.io/github/license/ouropencode/OpenDocumenter\" />\n  <img alt=\"Dependencies\" src=\"https://img.shields.io/librariesio/release/npm/opendocumenter\" />\n  <img alt=\"Issues\" src=\"https://img.shields.io/github/issues/ouropencode/OpenDocumenter\" />\n  <img alt=\"Node Version\" src=\"https://img.shields.io/node/v/opendocumenter\" />\n  <img alt=\"Build Status\" src=\"https://github.com/ouropencode/OpenDocumenter/workflows/Quisque%20API%20Build/badge.svg\" />\n</p>\n\n<p align=\"center\">\n  <a href=\"https://ouropencode.github.io/OpenDocumenter/\" target=\"_blank\">\n    <img alt=\"Node Version\" src=\"https://raw.githubusercontent.com/ouropencode/OpenDocumenter/master/example/example.gif\" />\n  </a>\n</p>\n\nOpenDocumenter is a automatic documentation generator for [OpenAPI v3](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md) schemas. Simply provide your schema file in JSON or YAML, then sit back and enjoy the documentation.\n\nPowered by [nuxt.js](https://nuxtjs.org/https://nuxtjs.org/) and [swagger-parser](https://github.com/swagger-api/swagger-parser).\n\n## Example\nFor a live preview of documentation generated with OpenDocumenter you can view our demo documentation \"**[Quisque API](https://ouropencode.github.io/OpenDocumenter/)**\". This example uses lorem-ipsum for all content to provide placeholder text used to demonstrate the form of a document without relying on meaningful content.\n\n## Installation\n\n```bash\n> npm install -g opendocumenter\n```\nor\n```bash\n> yarn global add opendocumenter\n```\n\n## Usage\n```\n> opendocumenter --help\n\n   _____             ____                            _\n  |     |___ ___ ___|    \\ ___ ___ _ _ _____ ___ ___| |_ ___ ___\n  |  |  | . | -_|   |  |  | . |  _| | |     | -_|   |  _| -_|  _|\n  |_____|  _|___|_|_|____/|___|___|___|_|_|_|___|_|_|_| |___|_|\n        |_|                                                                      \n\n  OpenDocumenter is a automatic documentation generator for OpenAPI v3 schemas.\n  Simply provide your schema file in JSON or YAML, then sit back and enjoy the documentation.\n\n  Powered by nuxt.js and swagger-parser.\n\n  Usage:\n\n    opendocumenter --schema=<file> --output=<dir>\n\n  Arguments:\n\n    --schema=<file>    (required) The OpenAPI 3 format file to generate documentation from.\n    --output=<dir>     (required) The output destination directory.\n    --config=<file>    A configuration file to load advanced options from.\n```\n\n## Configuration\nOpenDocumenter can be configured using a `.json` file stored alongside your schema file.\n\n### Merge From Directory\nThe `mergeFromDirectory` parameter allows you to specify a directory that will be copied over the base template before building. This allows customization of any part of OpenDocumenter to suit your needs.\n\n```json\n{\n  \"mergeFromDirectory\": \"./overrides\"\n}\n```\n\nAny part of the OpenDocumenter vue source (see: [./src](./src)) can be overridden, just ensure to follow the same directory structure!\n```\noverrides\n |- assets\n | '- theme.less\n '- components\n   |- DocHeader.vue\n   '- DocEntry.vue\n```\n\n### 'Generated Using' Footer\nBy default, a small 'Generated Using' message is included on the footer of the generated documentation. Although we'd love you to keep it, you can disable this by setting the `disableGeneratedUsingFooter` parameter to true.\n\n```json\n{\n  \"disableGeneratedUsingFooter\": true\n}\n```\n\n### Aborting on Invalid Schema\nOpenDocumenter is capable of generating documentation for OpenAPI schemas that don't match the OpenAPI Specification entirely. When generating we attempt to validate your schema, display any validation warnings, and then continue to generate. If you would like the generation to abort when a schema is invalid you can set the `abortOnInvalidSchema` parameter to true.\n\n```json\n{\n  \"abortOnInvalidSchema\": true\n}\n```\n\n### Shields / Badges\nVarious shields are included in the generated documentation header, such as the API version. Additional shields can be added using the `shields` parameter. Each shield is an object containing either the `url` key, or a combination of `left`, `right` and `color`. The `translate` parameter can be used (`left`, `right`, `both`) to run the text through the internationalization handler. An optional link can provided with the `href` parameter. All shields are generated using [shields.io](https://shields.io) unless a URL is provided.\n\n```json\n{\n  \"shields\": [\n    { \"url\": \"https://img.shields.io/badge/test-1.2.3--test-blue\" },\n    { \"left\": \"test\", \"right\": \"1.2.3-test\", \"color\": \"blue\" },\n    {\n      \"left\": \"test\",\n      \"right\": \"1.2.3-test\",\n      \"color\": \"blue\",\n      \"href\": \"https://www.example.com\"\n    }\n  ]\n}\n```\n\n### Build: Modern Mode\nBy default, the build-chain produces \"Modern Mode\"  output, shipping native ES2015 code to modern browsers that support it, with auto fallback to a legacy bundle. This can be turned off by setting `vueModernMode` parameter, afterwards the build-chain produces \"Legacy\" output for older browser compatibility.\n\n```json\n{\n  \"vueModernMode\": false\n}\n```\n\n### Build: Reporting\nYou can control the reporting output from the build-chain with the `vueReport` parameter. This defaults to `none` and can be set to `json`, `html` or `both`. With this enabled the build-chain will output a report file describing the webpack bundle.\n\n```json\n{\n  \"vueReport\": \"html\"\n}\n```\n\n### Internationalization\nMost of the documentation text is taken directly from the OpenAPI schema file, however, there are various strings throughout the project that cannot be stored within the schema file. All of these strings are customizable by editing the `i18n` parameter.\n```json\n{\n  \"i18n\": {\n    \"API_SDK_DOCUMENTATION\": \"API and SDK Documentation\",\n    \"VERSION\": \"version\",\n    \"NO_INDEPTH_DOCS_AVAILABLE_ENDPOINT\": \"No in-depth API documentation is available for this endpoint.\",\n    \"NO_INDEPTH_DOCS_AVAILABLE_TAG\": \"No in-depth API documentation is available for this section.\",\n    \"CLICK_TO_COPY\": \"click to copy\",\n    \"COPIED\": \"copied\",\n    \"REQUEST_BODY\": \"Request Body\",\n    \"REQUEST_RESPONSES\": \"Request Responses\",\n    \"DEFINITION\": \"Definition\",\n    \"DEFINITIONS\": \"Definitions\",\n    \"SERVER\": \"Server\",\n    \"LANGUAGE\": \"Language\",\n    \"GENERATED_USING\": \"Generated using OpenDocumenter by $ourOpenCode\",\n    \"HAVE_ANY_QUESTIONS_CONTACT\": \"Have any questions? Please contact\",\n    \"US\": \"us\",\n    \"OR\": \"or\",\n    \"VIA_EMAIL\": \"via email\",\n    \"VIA_OUR_WEBSITE\": \"via our website\",\n    \"TERMS_OF_SERVICE\": \"Terms of Service\",\n    \"SEND_US_AN_EMAIL\": \"Send us an email\",\n    \"VISIT_OUR_WEBSITE\": \"Visit our website\",\n    \"EXTERNAL_DOCUMENTATION\": \"External Documentation\",\n    \"DOCUMENTATION\": \"Documentation\"\n  }\n}\n```\n\n> There is a single end-user visible string that isn't configurable in this config. The \"Loading Documentation...\" text in the page title, briefly shown during page load, is only configurable using the \"Merge From Directory\" parameter.\n\n## License\nLicensed under the MIT license. Please see [LICENSE](LICENSE) for more details.\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security Policy\n\n## Supported Versions\nOnly the latest version is supported and actively maintained while the project is pre-v1.\n\n| Version | Supported          |\n| ------- | ------------------ |\n| 0.5.x   | :white_check_mark: |\n| < 0.5   | :x:                |\n\n## Reporting a vulnerability\nTo report any vulnerabilities please create an issue, you can expect to get an update on a reported vulnerability\nwithin a reasonable timeframe. If you have the time you can additionally create a patch for the vulnerability and\ncreate a pull request - this may speed up the process.\n"
  },
  {
    "path": "example/config.json",
    "content": "{\n  \"mergeFromDirectory\": null,\n  \"disableGeneratedUsingFooter\": false,\n  \"abortOnInvalidSchema\": false,\n  \"vueModernMode\": true,\n  \"vueReport\": \"none\",\n  \"shields\": [],\n  \"i18n\": {\n    \"API_SDK_DOCUMENTATION\": \"API and SDK Documentation\",\n    \"VERSION\": \"version\",\n    \"NO_INDEPTH_DOCS_AVAILABLE_ENDPOINT\": \"No in-depth API documentation is available for this endpoint.\",\n    \"NO_INDEPTH_DOCS_AVAILABLE_TAG\": \"No in-depth API documentation is available for this section.\",\n    \"CLICK_TO_COPY\": \"click to copy\",\n    \"COPIED\": \"copied\",\n    \"REQUEST_BODY\": \"Request Body\",\n    \"REQUEST_RESPONSES\": \"Request Responses\",\n    \"DEFINITION\": \"Definition\",\n    \"DEFINITIONS\": \"Definitions\",\n    \"SERVER\": \"Server\",\n    \"LANGUAGE\": \"Language\",\n    \"GENERATED_USING\": \"Generated using OpenDocumenter by $ourOpenCode\",\n    \"HAVE_ANY_QUESTIONS_CONTACT\": \"Have any questions? Please contact\",\n    \"US\": \"us\",\n    \"OR\": \"or\",\n    \"VIA_EMAIL\": \"via email\",\n    \"VIA_OUR_WEBSITE\": \"via our website\",\n    \"TERMS_OF_SERVICE\": \"Terms of Service\",\n    \"SEND_US_AN_EMAIL\": \"Send us an email\",\n    \"VISIT_OUR_WEBSITE\": \"Visit our website\",\n    \"EXTERNAL_DOCUMENTATION\": \"External Documentation\",\n    \"DOCUMENTATION\": \"Documentation\"\n  }\n}\n"
  },
  {
    "path": "example/ghes-2.20.yml",
    "content": "---\nopenapi: 3.0.3\ninfo:\n  version: 0.0.4\n  title: GitHub v3 REST API\n  description: GitHub's v3 REST API.\n  license:\n    name: MIT\n    url: https://spdx.org/licenses/MIT\n  termsOfService: https://docs.github.com/articles/github-terms-of-service\n  contact:\n    name: Support\n    url: https://support.github.com\ntags:\n- name: actions\n  description: Endpoints to manage GitHub Actions using the REST API.\n- name: activity\n  description: Activity APIs provide access to notifications, subscriptions, and timelines.\n- name: apps\n  description: Information for integrations and installations.\n- name: billing\n  description: Monitor charges and usage from Actions and Packages.\n- name: checks\n  description: Rich interactions with checks run by your integrations.\n- name: code-scanning\n  description: Retrieve code scanning alerts from a repository.\n- name: codes-of-conduct\n  description: Insight into codes of conduct for your communities.\n- name: emojis\n  description: List emojis available to use on GitHub.\n- name: gists\n  description: View, modify your gists.\n- name: git\n  description: Raw Git functionality.\n- name: gitignore\n  description: View gitignore templates\n- name: interactions\n  description: Owner or admin management of users interactons.\n- name: issues\n  description: Interact with GitHub Issues.\n- name: licenses\n  description: View various OSS licenses.\n- name: markdown\n  description: Render Github flavored markdown\n- name: meta\n  description: Endpoints that give information about the API.\n- name: migrations\n  description: Move projects to or from GitHub.\n- name: oauth-authorizations\n  description: Manage access of OAuth applications\n- name: orgs\n  description: Interact with GitHub Orgs.\n- name: projects\n  description: Interact with GitHub Projects.\n- name: pulls\n  description: Interact with GitHub Pull Requests.\n- name: rate-limit\n  description: Check your current rate limit status\n- name: reactions\n  description: Interact with reactions to various GitHub entities.\n- name: repos\n  description: Interact with GitHub Repos.\n- name: scim\n  description: Provisioning of GitHub organization membership for SCIM-enabled providers.\n- name: search\n  description: Look for stuff on GitHub.\n- name: teams\n  description: Interact with GitHub Teams.\n- name: users\n  description: Interact with and view information about users and also current user.\nservers:\n- url: \"{protocol}://{hostname}\"\n  variables:\n    hostname:\n      description: Self-hosted Enterprise Server or Enterprise Cloud hostname\n      default: HOSTNAME\n    protocol:\n      description: Self-hosted Enterprise Server or Enterprise Cloud protocol\n      default: http\nexternalDocs:\n  description: GitHub Enterprise Developer Docs\n  url: https://developer.github.com/enterprise/2.20/v3/\npaths:\n  \"/orgs/{org}/repos\":\n    get:\n      summary: List organization repositories\n      description: Lists repositories for the specified organization.\n      tags:\n      - repos\n      operationId: repos/list-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-organization-repositories\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - name: type\n        description: 'Specifies the types of repositories you want returned. Can be\n          one of `all`, `public`, `private`, `forks`, `sources`, `member`, `internal`.\n          Default: `all`. If your organization is associated with an enterprise account\n          using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+, `type`\n          can also be `internal`.'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - all\n          - public\n          - private\n          - forks\n          - sources\n          - member\n          - internal\n      - name: sort\n        description: Can be one of `created`, `updated`, `pushed`, `full_name`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - pushed\n          - full_name\n          default: created\n      - name: direction\n        description: 'Can be one of `asc` or `desc`. Default: when using `full_name`:\n          `asc`, otherwise `desc`'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: nebula\n          note: |-\n            You can set the visibility of a repository using the new `visibility` parameter in the [Repositories API](https://developer.github.com/v3/repos/), and get a repository's visibility with a new response key. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes/).\n\n            To access repository visibility during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.nebula-preview+json\n            ```\n        - required: false\n          name: baptiste\n          note: |-\n            The `is_template` and `template_repository` keys are currently available for developer to preview. See [Create a repository using a template](https://developer.github.com/v3/repos/#create-a-repository-using-a-template) to learn how to create template repositories. To access these new response keys during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.baptiste-preview+json\n            ```\n    post:\n      summary: Create an organization repository\n      description: |-\n        Creates a new repository in the specified organization. The authenticated user must be a member of the organization.\n\n        **OAuth scope requirements**\n\n        When using [OAuth](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/), authorizations must include:\n\n        *   `public_repo` scope or `repo` scope to create a public repository\n        *   `repo` scope to create a private repository\n      tags:\n      - repos\n      operationId: repos/create-in-org\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#create-an-organization-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the repository.\n                description:\n                  type: string\n                  description: A short description of the repository.\n                homepage:\n                  type: string\n                  description: A URL with more information about the repository.\n                private:\n                  type: boolean\n                  description: Either `true` to create a private repository or `false`\n                    to create a public one.\n                  default: false\n                visibility:\n                  type: string\n                  description: \"Can be `public` or `private`. If your organization\n                    is associated with an enterprise account using GitHub Enterprise\n                    Cloud or GitHub Enterprise Server 2.20+, `visibility` can also\n                    be `internal`. For more information, see \\\"[Creating an internal\n                    repository](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-repository-visibility#about-internal-repositories)\\\"\n                    in the GitHub Help documentation.  \\nThe `visibility` parameter\n                    overrides the `private` parameter when you use both parameters\n                    with the `nebula-preview` preview header.\"\n                  enum:\n                  - public\n                  - private\n                  - visibility\n                  - internal\n                has_issues:\n                  type: boolean\n                  description: Either `true` to enable issues for this repository\n                    or `false` to disable them.\n                  default: true\n                has_projects:\n                  type: boolean\n                  description: Either `true` to enable projects for this repository\n                    or `false` to disable them. **Note:** If you're creating a repository\n                    in an organization that has disabled repository projects, the\n                    default is `false`, and if you pass `true`, the API returns an\n                    error.\n                  default: true\n                has_wiki:\n                  type: boolean\n                  description: Either `true` to enable the wiki for this repository\n                    or `false` to disable it.\n                  default: true\n                is_template:\n                  type: boolean\n                  description: Either `true` to make this repo available as a template\n                    repository or `false` to prevent it.\n                  default: false\n                team_id:\n                  type: integer\n                  description: The id of the team that will be granted access to this\n                    repository. This is only valid when creating a repository in an\n                    organization.\n                auto_init:\n                  type: boolean\n                  description: Pass `true` to create an initial commit with empty\n                    README.\n                  default: false\n                gitignore_template:\n                  type: string\n                  description: Desired language or platform [.gitignore template](https://github.com/github/gitignore)\n                    to apply. Use the name of the template without the extension.\n                    For example, \"Haskell\".\n                license_template:\n                  type: string\n                  description: Choose an [open source license template](https://choosealicense.com/)\n                    that best suits your needs, and then use the [license keyword](https://help.github.com/articles/licensing-a-repository/#searching-github-by-license-type)\n                    as the `license_template` string. For example, \"mit\" or \"mpl-2.0\".\n                allow_squash_merge:\n                  type: boolean\n                  description: Either `true` to allow squash-merging pull requests,\n                    or `false` to prevent squash-merging.\n                  default: true\n                allow_merge_commit:\n                  type: boolean\n                  description: Either `true` to allow merging pull requests with a\n                    merge commit, or `false` to prevent merging pull requests with\n                    merge commits.\n                  default: true\n                allow_rebase_merge:\n                  type: boolean\n                  description: Either `true` to allow rebase-merging pull requests,\n                    or `false` to prevent rebase-merging.\n                  default: true\n                delete_branch_on_merge:\n                  type: boolean\n                  description: Either `true` to allow automatically deleting head\n                    branches when pull requests are merged, or `false` to prevent\n                    automatic deletion.\n                  default: false\n              required:\n              - name\n            example:\n              name: Hello-World\n              description: This is your first repository\n              homepage: https://github.com\n              private: false\n              has_issues: true\n              has_projects: true\n              has_wiki: true\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World\n              schema:\n                type: string\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: nebula\n          note: |-\n            You can set the visibility of a repository using the new `visibility` parameter in the [Repositories API](https://developer.github.com/v3/repos/), and get a repository's visibility with a new response key. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes/).\n\n            To access repository visibility during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.nebula-preview+json\n            ```\n        - required: false\n          name: baptiste\n          note: |-\n            The `is_template` and `template_repository` keys are currently available for developer to preview. See [Create a repository using a template](https://developer.github.com/v3/repos/#create-a-repository-using-a-template) to learn how to create template repositories. To access these new response keys during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.baptiste-preview+json\n            ```\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams\":\n    delete:\n      summary: Remove team access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Removes the ability of a team to push to this branch. You can also remove push access for child teams.\n\n        | Type    | Description                                                                                                                                         |\n        | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |\n        | `array` | Teams that should no longer have push access. Use the team's `slug`. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/remove-team-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#remove-team-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: teams parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: teams\n    put:\n      summary: Set team access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Replaces the list of teams that have push access to this branch. This removes all teams that previously had push access and grants push access to the new list of teams. Team restrictions include child teams.\n\n        | Type    | Description                                                                                                                                |\n        | ------- | ------------------------------------------------------------------------------------------------------------------------------------------ |\n        | `array` | The teams that can have push access. Use the team's `slug`. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/set-team-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#set-team-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: teams parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: teams\n    post:\n      summary: Add team access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Grants the specified teams push access for this branch. You can also give push access to child teams.\n\n        | Type    | Description                                                                                                                                |\n        | ------- | ------------------------------------------------------------------------------------------------------------------------------------------ |\n        | `array` | The teams that can have push access. Use the team's `slug`. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/add-team-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#add-team-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: teams parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: teams\n    get:\n      summary: Get teams with access to the protected branch\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Lists the teams who have push access to this branch. The list includes child teams.\n      tags:\n      - repos\n      operationId: repos/get-teams-with-access-to-protected-branch\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#list-teams-with-access-to-the-protected-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-items\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/commits/{commit_sha}/branches-where-head\":\n    get:\n      summary: List branches for HEAD commit\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Returns all branches where the given commit SHA is the HEAD, or latest commit for the branch.\n      tags:\n      - repos\n      operationId: repos/list-branches-for-head-commit\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/commits/#list-branches-for-head-commit\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/commit_sha\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/branch-short\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/branch-short-items\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: groot\n          note: |-\n            Listing branches or pull requests for a commit in the Commits API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2019-04-11-pulls-branches-for-commit/) for more details. To access the new endpoints during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.groot-preview+json\n            ```\n  \"/repos/{owner}/{repo}/releases/assets/{asset_id}\":\n    patch:\n      summary: Update a release asset\n      description: Users with push access to the repository can edit a release asset.\n      tags:\n      - repos\n      operationId: repos/update-release-asset\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#update-a-release-asset\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/asset_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The file name of the asset.\n                label:\n                  type: string\n                  description: An alternate short description of the asset. Used in\n                    place of the filename.\n                state:\n                  type: string\n                  example: '\"uploaded\"'\n            example:\n              name: foo-1.0.0-osx.zip\n              label: Mac binary\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release-asset\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release-asset\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get a release asset\n      description: To download the asset's binary content, set the `Accept` header\n        of the request to [`application/octet-stream`](https://developer.github.com/enterprise/2.20/v3/media/#media-types).\n        The API will either redirect the client to the location, or stream it directly\n        if possible. API clients should handle both a `200` or `302` response.\n      tags:\n      - repos\n      operationId: repos/get-release-asset\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#get-a-release-asset\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/asset_id\"\n      responses:\n        '200':\n          description: To download the asset's binary content, set the `Accept` header\n            of the request to [`application/octet-stream`](https://developer.github.com/enterprise/2.20/v3/media/#media-types).\n            The API will either redirect the client to the location, or stream it\n            directly if possible. API clients should handle both a `200` or `302`\n            response.\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release-asset\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release-asset\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '302':\n          \"$ref\": \"#/components/responses/found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete a release asset\n      description: ''\n      tags:\n      - repos\n      operationId: repos/delete-release-asset\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#delete-a-release-asset\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/asset_id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks/contexts\":\n    delete:\n      summary: Remove status check contexts\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/remove-status-check-contexts\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#remove-status-check-contexts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: contexts parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  type: string\n              example:\n              - continuous-integration/travis-ci\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: contexts\n    put:\n      summary: Set status check contexts\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/set-status-check-contexts\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#set-status-check-contexts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: contexts parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  type: string\n              example:\n              - continuous-integration/travis-ci\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: contexts\n    get:\n      summary: Get all status check contexts\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/get-all-status-check-contexts\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-all-status-check-contexts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  type: string\n              example:\n              - continuous-integration/travis-ci\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Add status check contexts\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/add-status-check-contexts\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#add-status-check-contexts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: contexts parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  type: string\n              example:\n              - continuous-integration/travis-ci\n              - continuous-integration/jenkins\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: contexts\n  \"/repos/{owner}/{repo}/contents/{path}\":\n    get:\n      summary: Get repository content\n      description: \"Gets the contents of a file or directory in a repository. Specify\n        the file path or directory in `:path`. If you omit\\n`:path`, you will receive\n        the contents of all files in the repository.\\n\\nFiles and symlinks support\n        [a custom media type](https://developer.github.com/enterprise/2.20/v3/repos/contents/#custom-media-types)\n        for\\nretrieving the raw content or rendered HTML (when supported). All content\n        types support [a custom media\\ntype](https://developer.github.com/enterprise/2.20/v3/repos/contents/#custom-media-types)\n        to ensure the content is returned in a consistent\\nobject format.\\n\\n**Note**:\\n*\n        \\  To get a repository's contents recursively, you can [recursively get the\n        tree](https://developer.github.com/enterprise/2.20/v3/git/trees/).\\n*   This\n        API has an upper limit of 1,000 files for a directory. If you need to retrieve\n        more files, use the [Git Trees\\nAPI](https://developer.github.com/enterprise/2.20/v3/git/trees/#get-a-tree).\\n*\n        \\  This API supports files up to 1 megabyte in size.\\n\\n#### If the content\n        is a directory\\nThe response will be an array of objects, one object for each\n        item in the directory.\\nWhen listing the contents of a directory, submodules\n        have their \\\"type\\\" specified as \\\"file\\\". Logically, the value\\n_should_\n        be \\\"submodule\\\". This behavior exists in API v3 [for backwards compatibility\n        purposes](https://git.io/v1YCW).\\nIn the next major version of the API, the\n        type will be returned as \\\"submodule\\\".\\n\\n#### If the content is a symlink\n        \\nIf the requested `:path` points to a symlink, and the symlink's target is\n        a normal file in the repository, then the\\nAPI responds with the content of\n        the file (in the format shown in the example. Otherwise, the API responds\n        with an object \\ndescribing the symlink itself.\\n\\n#### If the content is\n        a submodule\\nThe `submodule_git_url` identifies the location of the submodule\n        repository, and the `sha` identifies a specific\\ncommit within the submodule\n        repository. Git uses the given URL when cloning the submodule repository,\n        and checks out\\nthe submodule at that specific commit.\\n\\nIf the submodule\n        repository is not hosted on github.com, the Git URLs (`git_url` and `_links[\\\"git\\\"]`)\n        and the\\ngithub.com URLs (`html_url` and `_links[\\\"html\\\"]`) will have null\n        values.\"\n      tags:\n      - repos\n      operationId: repos/get-content\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/contents/#get-repository-content\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: path\n        description: path+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: ref\n        description: 'The name of the commit/branch/tag. Default: the repository’s\n          default branch (usually `master`)'\n        in: query\n        required: false\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/vnd.github.v3.object:\n              schema:\n                \"$ref\": \"#/components/schemas/content-tree\"\n            application/json:\n              schema:\n                oneOf:\n                - \"$ref\": \"#/components/schemas/content-directory\"\n                - \"$ref\": \"#/components/schemas/content-file\"\n                - \"$ref\": \"#/components/schemas/content-symlink\"\n                - \"$ref\": \"#/components/schemas/content-submodule\"\n              examples:\n                response-if-content-is-a-file:\n                  \"$ref\": \"#/components/examples/content-file-response-if-content-is-a-file\"\n                response-if-content-is-a-directory:\n                  \"$ref\": \"#/components/examples/content-file-response-if-content-is-a-directory\"\n                response-if-content-is-a-symlink:\n                  \"$ref\": \"#/components/examples/content-file-response-if-content-is-a-symlink\"\n                response-if-content-is-a-submodule:\n                  \"$ref\": \"#/components/examples/content-file-response-if-content-is-a-submodule\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '302':\n          \"$ref\": \"#/components/responses/found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    put:\n      summary: Create or update file contents\n      description: Creates a new file or replaces an existing file in a repository.\n      tags:\n      - repos\n      operationId: repos/create-or-update-file-contents\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/contents/#create-or-update-file-contents\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: path\n        description: path+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                message:\n                  type: string\n                  description: The commit message.\n                content:\n                  type: string\n                  description: The new file content, using Base64 encoding.\n                sha:\n                  type: string\n                  description: \"**Required if you are updating a file**. The blob\n                    SHA of the file being replaced.\"\n                branch:\n                  type: string\n                  description: 'The branch name. Default: the repository’s default\n                    branch (usually `master`)'\n                committer:\n                  type: object\n                  description: 'The person that committed the file. Default: the authenticated\n                    user.'\n                  properties:\n                    name:\n                      type: string\n                      description: The name of the author or committer of the commit.\n                        You'll receive a `422` status code if `name` is omitted.\n                    email:\n                      type: string\n                      description: The email of the author or committer of the commit.\n                        You'll receive a `422` status code if `email` is omitted.\n                    date:\n                      type: string\n                      example: '\"2013-01-05T13:13:22+05:00\"'\n                  required:\n                  - name\n                  - email\n                author:\n                  type: object\n                  description: 'The author of the file. Default: The `committer` or\n                    the authenticated user if you omit `committer`.'\n                  properties:\n                    name:\n                      type: string\n                      description: The name of the author or committer of the commit.\n                        You'll receive a `422` status code if `name` is omitted.\n                    email:\n                      type: string\n                      description: The email of the author or committer of the commit.\n                        You'll receive a `422` status code if `email` is omitted.\n                    date:\n                      type: string\n                      example: '\"2013-01-15T17:13:22+05:00\"'\n                  required:\n                  - name\n                  - email\n              required:\n              - message\n              - content\n            examples:\n              example-for-creating-a-file:\n                summary: Example for creating a file\n                value:\n                  message: my commit message\n                  committer:\n                    name: Monalisa Octocat\n                    email: octocat@github.com\n                  content: bXkgbmV3IGZpbGUgY29udGVudHM=\n              example-for-updating-a-file:\n                summary: Example for updating a file\n                value:\n                  message: a new commit message\n                  committer:\n                    name: Monalisa Octocat\n                    email: octocat@github.com\n                  content: bXkgdXBkYXRlZCBmaWxlIGNvbnRlbnRz\n                  sha: 95b966ae1c166bd92f8ae7d1c313e738c731dfc3\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/file-commit\"\n              examples:\n                example-for-updating-a-file:\n                  \"$ref\": \"#/components/examples/file-commit-example-for-updating-a-file\"\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/file-commit\"\n              examples:\n                example-for-creating-a-file:\n                  \"$ref\": \"#/components/examples/file-commit-example-for-creating-a-file\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete a file\n      description: |-\n        Deletes a file in a repository.\n\n        You can provide an additional `committer` parameter, which is an object containing information about the committer. Or, you can provide an `author` parameter, which is an object containing information about the author.\n\n        The `author` section is optional and is filled in with the `committer` information if omitted. If the `committer` information is omitted, the authenticated user's information is used.\n\n        You must provide values for both `name` and `email`, whether you choose to use `author` or `committer`. Otherwise, you'll receive a `422` status code.\n      tags:\n      - repos\n      operationId: repos/delete-file\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/contents/#delete-a-file\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: path\n        description: path+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                message:\n                  type: string\n                  description: The commit message.\n                sha:\n                  type: string\n                  description: The blob SHA of the file being replaced.\n                branch:\n                  type: string\n                  description: 'The branch name. Default: the repository’s default\n                    branch (usually `master`)'\n                committer:\n                  type: object\n                  description: object containing information about the committer.\n                  properties:\n                    name:\n                      type: string\n                      description: The name of the author (or committer) of the commit\n                    email:\n                      type: string\n                      description: The email of the author (or committer) of the commit\n                author:\n                  type: object\n                  description: object containing information about the author.\n                  properties:\n                    name:\n                      type: string\n                      description: The name of the author (or committer) of the commit\n                    email:\n                      type: string\n                      description: The email of the author (or committer) of the commit\n              required:\n              - message\n              - sha\n            example:\n              message: my commit message\n              committer:\n                name: Monalisa Octocat\n                email: octocat@github.com\n              sha: 329688480d39049927147c162b9d2deaf885005f\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/file-commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/file-commit\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/topics\":\n    get:\n      summary: Get all repository topics\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-all-topics\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#get-all-repository-topics\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/topic\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/topic\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: mercy\n          note: |-\n            The `topics` property for repositories on GitHub is currently available for developers to preview. To view the `topics` property in calls that return repository results, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.mercy-preview+json\n            ```\n    put:\n      summary: Replace all repository topics\n      description: ''\n      tags:\n      - repos\n      operationId: repos/replace-all-topics\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#replace-all-repository-topics\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                names:\n                  type: array\n                  description: An array of topics to add to the repository. Pass one\n                    or more topics to _replace_ the set of existing topics. Send an\n                    empty array (`[]`) to clear all topics from the repository. **Note:**\n                    Topic `names` cannot contain uppercase letters.\n                  items:\n                    type: string\n              required:\n              - names\n            example:\n              names:\n              - octocat\n              - atom\n              - electron\n              - api\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/topic\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/topic\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: mercy\n          note: |-\n            The `topics` property for repositories on GitHub is currently available for developers to preview. To view the `topics` property in calls that return repository results, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.mercy-preview+json\n            ```\n  \"/repos/{owner}/{repo}/vulnerability-alerts\":\n    put:\n      summary: Enable vulnerability alerts\n      description: Enables dependency alerts and the dependency graph for a repository.\n        The authenticated user must have admin access to the repository. For more\n        information, see \"[About security alerts for vulnerable dependencies](https://help.github.com/en/articles/about-security-alerts-for-vulnerable-dependencies)\".\n      tags:\n      - repos\n      operationId: repos/enable-vulnerability-alerts\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#enable-vulnerability-alerts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: dorian\n          note: |-\n            Enabling and disabling dependency alerts for a repository using the REST API is currently available for developers to preview. To access these new endpoints during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.dorian-preview+json\n            ```\n    delete:\n      summary: Disable vulnerability alerts\n      description: Disables dependency alerts and the dependency graph for a repository.\n        The authenticated user must have admin access to the repository. For more\n        information, see \"[About security alerts for vulnerable dependencies](https://help.github.com/en/articles/about-security-alerts-for-vulnerable-dependencies)\".\n      tags:\n      - repos\n      operationId: repos/disable-vulnerability-alerts\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#disable-vulnerability-alerts\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: dorian\n          note: |-\n            Enabling and disabling dependency alerts for a repository using the REST API is currently available for developers to preview. To access these new endpoints during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.dorian-preview+json\n            ```\n  \"/repos/{owner}/{repo}/deployments\":\n    post:\n      summary: Create a deployment\n      description: |-\n        Deployments offer a few configurable parameters with certain defaults.\n\n        The `ref` parameter can be any named branch, tag, or SHA. At GitHub Enterprise Server we often deploy branches and verify them\n        before we merge a pull request.\n\n        The `environment` parameter allows deployments to be issued to different runtime environments. Teams often have\n        multiple environments for verifying their applications, such as `production`, `staging`, and `qa`. This parameter\n        makes it easier to track which environments have requested deployments. The default environment is `production`.\n\n        The `auto_merge` parameter is used to ensure that the requested ref is not behind the repository's default branch. If\n        the ref _is_ behind the default branch for the repository, we will attempt to merge it for you. If the merge succeeds,\n        the API will return a successful merge commit. If merge conflicts prevent the merge from succeeding, the API will\n        return a failure response.\n\n        By default, [commit statuses](https://developer.github.com/enterprise/2.20/v3/repos/statuses) for every submitted context must be in a `success`\n        state. The `required_contexts` parameter allows you to specify a subset of contexts that must be `success`, or to\n        specify contexts that have not yet been submitted. You are not required to use commit statuses to deploy. If you do\n        not require any contexts or create any commit statuses, the deployment will always succeed.\n\n        The `payload` parameter is available for any extra information that a deployment system might need. It is a JSON text\n        field that will be passed on when a deployment event is dispatched.\n\n        The `task` parameter is used by the deployment system to allow different execution paths. In the web world this might\n        be `deploy:migrations` to run schema changes on the system. In the compiled world this could be a flag to compile an\n        application with debugging enabled.\n\n        Users with `repo` or `repo_deployment` scopes can create a deployment for a given ref.\n\n        #### Merged branch response\n        You will see this response when GitHub automatically merges the base branch into the topic branch instead of creating\n        a deployment. This auto-merge happens when:\n        *   Auto-merge option is enabled in the repository\n        *   Topic branch does not include the latest changes on the base branch, which is `master` in the response example\n        *   There are no merge conflicts\n\n        If there are no new commits in the base branch, a new request to create a deployment should give a successful\n        response.\n\n        #### Merge conflict response\n        This error happens when the `auto_merge` option is enabled and when the default branch (in this case `master`), can't\n        be merged into the branch that's being deployed (in this case `topic-branch`), due to merge conflicts.\n\n        #### Failed commit status checks\n        This error happens when the `required_contexts` parameter indicates that one or more contexts need to have a `success`\n        status for the commit to be deployed, but one or more of the required contexts do not have a state of `success`.\n      tags:\n      - repos\n      operationId: repos/create-deployment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/deployments/#create-a-deployment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                ref:\n                  type: string\n                  description: The ref to deploy. This can be a branch, tag, or SHA.\n                task:\n                  type: string\n                  description: Specifies a task to execute (e.g., `deploy` or `deploy:migrations`).\n                  default: deploy\n                auto_merge:\n                  type: boolean\n                  description: Attempts to automatically merge the default branch\n                    into the requested ref, if it's behind the default branch.\n                  default: true\n                required_contexts:\n                  type: array\n                  description: The [status](https://developer.github.com/enterprise/2.20/v3/repos/statuses/)\n                    contexts to verify against commit status checks. If you omit this\n                    parameter, GitHub verifies all unique contexts before creating\n                    a deployment. To bypass checking entirely, pass an empty array.\n                    Defaults to all unique contexts.\n                  items:\n                    type: string\n                payload:\n                  type: string\n                  description: JSON payload with extra information about the deployment.\n                  default: ''\n                environment:\n                  type: string\n                  description: Name for the target deployment environment (e.g., `production`,\n                    `staging`, `qa`).\n                  default: production\n                description:\n                  type: string\n                  description: Short description of the deployment.\n                  default: ''\n                  nullable: true\n                transient_environment:\n                  type: boolean\n                  description: \"Specifies if the given environment is specific to\n                    the deployment and will no longer exist at some point in the future.\n                    Default: `false`  \\n**Note:** This parameter requires you to use\n                    the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type. **Note:** This parameter requires you to use\n                    the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type.\"\n                  default: false\n                production_environment:\n                  type: boolean\n                  description: \"Specifies if the given environment is one that end-users\n                    directly interact with. Default: `true` when `environment` is\n                    `production` and `false` otherwise.  \\n**Note:** This parameter\n                    requires you to use the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type.\"\n                created_at:\n                  type: string\n                  example: '\"1776-07-04T00:00:00.000-07:52\"'\n              required:\n              - ref\n            examples:\n              simple-example:\n                summary: Simple example\n                value:\n                  ref: topic-branch\n                  payload: '{ \"deploy\": \"migrate\" }'\n                  description: Deploy request from hubot\n              advanced-example:\n                summary: Advanced example\n                value:\n                  ref: topic-branch\n                  auto_merge: false\n                  payload: '{ \"deploy\": \"migrate\" }'\n                  description: Deploy request from hubot\n                  required_contexts:\n                  - ci/janky\n                  - security/brakeman\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/deployment\"\n              examples:\n                simple-example:\n                  \"$ref\": \"#/components/examples/deployment-simple-example\"\n                advanced-example:\n                  \"$ref\": \"#/components/examples/deployment-advanced-example\"\n        '202':\n          description: Merged branch response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n              examples:\n                merged-branch-response:\n                  value:\n                    message: Auto-merged master into topic-branch on deployment.\n        '409':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                    example: '\"https://developer.github.com/enterprise/2.20/v3/repos/deployments/#create-a-deployment\"'\n              examples:\n                merge-conflict-response:\n                  summary: Merge conflict response\n                  value:\n                    message: Conflict merging master into topic-branch\n                failed-commit-status-checks:\n                  summary: Failed commit status checks\n                  value:\n                    message: 'Conflict: Commit status checks failed for topic-branch.'\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: ant-man\n          note: |-\n            The `inactive` state and the `log_url`, `environment_url`, and `auto_inactive` parameters are currently available for developers to preview. Please see the [blog post](https://developer.github.com/changes/2016-04-06-deployment-and-deployment-status-enhancements) for full details.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.ant-man-preview+json\n            ```\n    get:\n      summary: List deployments\n      description: 'Simple filtering of deployments is available via query parameters:'\n      tags:\n      - repos\n      operationId: repos/list-deployments\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/deployments/#list-deployments\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: sha\n        description: The SHA recorded at creation time.\n        in: query\n        required: false\n        schema:\n          type: string\n          default: none\n      - name: ref\n        description: The name of the ref. This can be a branch, tag, or SHA.\n        in: query\n        required: false\n        schema:\n          type: string\n          default: none\n      - name: task\n        description: The name of the task for the deployment (e.g., `deploy` or `deploy:migrations`).\n        in: query\n        required: false\n        schema:\n          type: string\n          default: none\n      - name: environment\n        description: The name of the environment that was deployed to (e.g., `staging`\n          or `production`).\n        in: query\n        required: false\n        schema:\n          type: string\n          default: none\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/deployment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deployment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: ant-man\n          note: |-\n            The `inactive` state and the `log_url`, `environment_url`, and `auto_inactive` parameters are currently available for developers to preview. Please see the [blog post](https://developer.github.com/changes/2016-04-06-deployment-and-deployment-status-enhancements) for full details.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.ant-man-preview+json\n            ```\n  \"/repos/{owner}/{repo}/pages\":\n    delete:\n      summary: Delete a GitHub Enterprise Server Pages site\n      description: ''\n      tags:\n      - repos\n      operationId: repos/delete-pages-site\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#delete-a-github-pages-site\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: switcheroo\n          note: |-\n            Enabling and disabling Pages in the Pages API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2019-03-14-enabling-disabling-pages/) preview for more details. To access the new endpoints during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.switcheroo-preview+json\n            ```\n    post:\n      summary: Create a GitHub Enterprise Server Pages site\n      description: ''\n      tags:\n      - repos\n      operationId: repos/create-pages-site\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#create-a-github-pages-site\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                source:\n                  type: object\n                  properties:\n                    branch:\n                      type: string\n                      description: The repository branch used to publish your [site's\n                        source files](https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/).\n                        Can be either `master` or `gh-pages`.\n                      enum:\n                      - master\n                      - gh-pages\n                    path:\n                      type: string\n                      description: The repository directory that includes the source\n                        files for the Pages site. When `branch` is `master`, you can\n                        change `path` to `/docs`. When `branch` is `gh-pages`, you\n                        are unable to specify a `path` other than `/`.\n            example:\n              source:\n                branch: master\n                path: \"/docs\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/page\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/page\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: switcheroo\n          note: |-\n            Enabling and disabling Pages in the Pages API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2019-03-14-enabling-disabling-pages/) preview for more details. To access the new endpoints during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.switcheroo-preview+json\n            ```\n    get:\n      summary: Get a GitHub Enterprise Server Pages site\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-pages\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#get-a-github-pages-site\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/page\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/page\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    put:\n      summary: Update information about a GitHub Enterprise Server Pages site\n      description: ''\n      tags:\n      - repos\n      operationId: repos/update-information-about-pages-site\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#update-information-about-a-github-pages-site\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                cname:\n                  type: string\n                  description: Specify a custom domain for the repository. Sending\n                    a `null` value will remove the custom domain. For more about custom\n                    domains, see \"[Using a custom domain with GitHub Pages](https://help.github.com/articles/using-a-custom-domain-with-github-pages/).\"\n                  nullable: true\n                source:\n                  anyOf:\n                  - type: string\n                    description: Update the source for the repository. Must include\n                      the branch name, and may optionally specify the subdirectory\n                      `/docs`. Possible values are `\"gh-pages\"`, `\"master\"`, and `\"master\n                      /docs\"`.\n                    enum:\n                    - gh-pages\n                    - master\n                    - master /docs\n                  - type: object\n                    properties:\n                      branch:\n                        type: string\n                      path:\n                        type: string\n            example:\n              cname: octocatblog.com\n              source: master /docs\n      responses:\n        '204':\n          description: Empty response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/required_pull_request_reviews\":\n    get:\n      summary: Get pull request review protection\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/get-pull-request-review-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-pull-request-review-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/vnd.github.luke-cage-preview+json:\n              schema:\n                \"$ref\": \"#/components/schemas/protected-branch-pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/protected-branch-pull-request-review\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: luke-cage\n          note: |-\n            The Protected Branches API now has a setting for requiring a specified number of approving pull request reviews before merging. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-03-16-protected-branches-required-approving-reviews) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.luke-cage-preview+json\n            ```\n    delete:\n      summary: Delete pull request review protection\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/delete-pull-request-review-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#delete-pull-request-review-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '204':\n          description: No Content\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update pull request review protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Updating pull request review enforcement requires admin or owner permissions to the repository and branch protection to be enabled.\n\n        **Note**: Passing new arrays of `users` and `teams` replaces their previous values.\n      tags:\n      - repos\n      operationId: repos/update-pull-request-review-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#update-pull-request-review-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                dismissal_restrictions:\n                  type: object\n                  description: Specify which users and teams can dismiss pull request\n                    reviews. Pass an empty `dismissal_restrictions` object to disable.\n                    User and team `dismissal_restrictions` are only available for\n                    organization-owned repositories. Omit this parameter for personal\n                    repositories.\n                  properties:\n                    users:\n                      type: array\n                      description: The list of user `login`s with dismissal access\n                      items:\n                        type: string\n                    teams:\n                      type: array\n                      description: The list of team `slug`s with dismissal access\n                      items:\n                        type: string\n                dismiss_stale_reviews:\n                  type: boolean\n                  description: Set to `true` if you want to automatically dismiss\n                    approving reviews when someone pushes a new commit.\n                require_code_owner_reviews:\n                  type: boolean\n                  description: Blocks merging pull requests until [code owners](https://help.github.com/articles/about-code-owners/)\n                    have reviewed.\n                required_approving_review_count:\n                  type: integer\n                  description: Specifies the number of reviewers required to approve\n                    pull requests. Use a number between 1 and 6.\n            example:\n              dismissal_restrictions:\n                users:\n                - octocat\n                teams:\n                - justice-league\n              dismiss_stale_reviews: true\n              require_code_owner_reviews: true\n              required_approving_review_count: 2\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/protected-branch-pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/protected-branch-pull-request-review\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: luke-cage\n          note: |-\n            The Protected Branches API now has a setting for requiring a specified number of approving pull request reviews before merging. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-03-16-protected-branches-required-approving-reviews) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.luke-cage-preview+json\n            ```\n  \"/repos/{owner}/{repo}/commits/{ref}/statuses\":\n    get:\n      summary: List commit statuses for a reference\n      description: |-\n        Users with pull access in a repository can view commit statuses for a given ref. The ref can be a SHA, a branch name, or a tag name. Statuses are returned in reverse chronological order. The first status in the list will be the latest one.\n\n        This resource is also available via a legacy route: `GET /repos/:owner/:repo/statuses/:ref`.\n      tags:\n      - repos\n      operationId: repos/list-commit-statuses-for-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statuses/#list-commit-statuses-for-a-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/status-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/compare/{base}...{head}\":\n    get:\n      summary: Compare two commits\n      description: |-\n        Both `:base` and `:head` must be branch names in `:repo`. To compare branches across other repositories in the same network as `:repo`, use the format `<USERNAME>:branch`.\n\n        The response from the API is equivalent to running the `git log base..head` command; however, commits are returned in chronological order. Pass the appropriate [media type](https://developer.github.com/enterprise/2.20/v3/media/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.\n\n        The response also includes details on the files that were changed between the two commits. This includes the status of the change (for example, if a file was added, removed, modified, or renamed), and details of the change itself. For example, files with a `renamed` status have a `previous_filename` field showing the previous filename of the file, and files with a `modified` status have a `patch` field showing the changes made to the file.\n\n        **Working with large comparisons**\n\n        The response will include a comparison of up to 250 commits. If you are working with a larger commit range, you can use the [List commits](https://developer.github.com/enterprise/2.20/v3/repos/commits/#list-commits) to enumerate all commits in the range.\n\n        For comparisons with extremely large diffs, you may receive an error response indicating that the diff took too long to generate. You can typically resolve this error by using a smaller commit range.\n\n        **Signature verification object**\n\n        The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:\n\n        These are the possible values for `reason` in the `verification` object:\n\n        | Value                    | Description                                                                                                                       |\n        | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n        | `expired_key`            | The key that made the signature is expired.                                                                                       |\n        | `not_signing_key`        | The \"signing\" flag is not among the usage flags in the GPG key that made the signature.                                           |\n        | `gpgverify_error`        | There was an error communicating with the signature verification service.                                                         |\n        | `gpgverify_unavailable`  | The signature verification service is currently unavailable.                                                                      |\n        | `unsigned`               | The object does not include a signature.                                                                                          |\n        | `unknown_signature_type` | A non-PGP signature was found in the commit.                                                                                      |\n        | `no_user`                | No user was associated with the `committer` email address in the commit.                                                          |\n        | `unverified_email`       | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |\n        | `bad_email`              | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature.             |\n        | `unknown_key`            | The key that made the signature has not been registered with any user's account.                                                  |\n        | `malformed_signature`    | There was an error parsing the signature.                                                                                         |\n        | `invalid`                | The signature could not be cryptographically verified using the key whose key-id was found in the signature.                      |\n        | `valid`                  | None of the above errors applied, so the signature is considered to be verified.                                                  |\n      tags:\n      - repos\n      operationId: repos/compare-commits\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/commits/#compare-two-commits\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: base\n        description: base parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: head\n        description: head parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/commit-comparison\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-comparison\"\n        '500':\n          \"$ref\": \"#/components/responses/internal_error\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/commits/{commit_sha}/pulls\":\n    get:\n      summary: List pull requests associated with a commit\n      description: Lists all pull requests containing the provided commit SHA, which\n        can be from any point in the commit history. The results will include open\n        and closed pull requests. Additional preview headers may be required to see\n        certain details for associated pull requests, such as whether a pull request\n        is in a draft state. For more information about previews that might affect\n        this endpoint, see the [List pull requests](https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests)\n        endpoint.\n      tags:\n      - repos\n      operationId: repos/list-pull-requests-associated-with-commit\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/commits/#list-pull-requests-associated-with-a-commit\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/commit_sha\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pull-request-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-simple-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: groot\n          note: |-\n            Listing branches or pull requests for a commit in the Commits API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2019-04-11-pulls-branches-for-commit/) for more details. To access the new endpoints during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.groot-preview+json\n            ```\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins\":\n    delete:\n      summary: Delete admin branch protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Removing admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.\n      tags:\n      - repos\n      operationId: repos/delete-admin-branch-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#delete-admin-branch-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '204':\n          description: No Content\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get admin branch protection\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/get-admin-branch-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-admin-branch-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/protected-branch-admin-enforced\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/protected-branch-admin-enforced-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Set admin branch protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Adding admin enforcement requires admin or owner permissions to the repository and branch protection to be enabled.\n      tags:\n      - repos\n      operationId: repos/set-admin-branch-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#set-admin-branch-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/protected-branch-admin-enforced\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/protected-branch-admin-enforced-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/deployments/{deployment_id}/statuses/{status_id}\":\n    get:\n      summary: Get a deployment status\n      description: 'Users with pull access can view a deployment status for a deployment:'\n      tags:\n      - repos\n      operationId: repos/get-deployment-status\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/deployments/#get-a-deployment-status\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/deployment_id\"\n      - name: status_id\n        description: status_id parameter\n        in: path\n        required: true\n        schema:\n          type: integer\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/deployment-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deployment-status\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: flash\n          note: |-\n            New features in the Deployments API on GitHub are currently available during a public beta. Please see the [blog post](https://developer.github.com/changes/2018-10-16-deployments-environments-states-and-auto-inactive-updates/) for full details.\n\n            To access the new `environment` parameter, the two new values for the `state` parameter (`in_progress` and `queued`), and use `auto_inactive` on production deployments during the public beta period, you must provide the following custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.flash-preview+json\n            ```\n        - required: false\n          name: ant-man\n          note: |-\n            The `inactive` state and the `log_url`, `environment_url`, and `auto_inactive` parameters are currently available for developers to preview. Please see the [blog post](https://developer.github.com/changes/2016-04-06-deployment-and-deployment-status-enhancements) for full details.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.ant-man-preview+json\n            ```\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/required_signatures\":\n    delete:\n      summary: Delete commit signature protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        When authenticated with admin or owner permissions to the repository, you can use this endpoint to disable required signed commits on a branch. You must enable branch protection to require signed commits.\n      tags:\n      - repos\n      operationId: repos/delete-commit-signature-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#delete-commit-signature-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '204':\n          description: No Content\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: zzzax\n          note: |-\n            Protected Branches API can now manage a setting for requiring signed commits. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-22-protected-branches-required-signatures) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.zzzax-preview+json\n            ```\n    get:\n      summary: Get commit signature protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        When authenticated with admin or owner permissions to the repository, you can use this endpoint to check whether a branch requires signed commits. An enabled status of `true` indicates you must sign commits on this branch. For more information, see [Signing commits with GPG](https://help.github.com/articles/signing-commits-with-gpg) in GitHub Help.\n\n        **Note**: You must enable branch protection to require signed commits.\n      tags:\n      - repos\n      operationId: repos/get-commit-signature-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-commit-signature-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/protected-branch-admin-enforced\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/protected-branch-admin-enforced\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: zzzax\n          note: |-\n            Protected Branches API can now manage a setting for requiring signed commits. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-22-protected-branches-required-signatures) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.zzzax-preview+json\n            ```\n    post:\n      summary: Create commit signature protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        When authenticated with admin or owner permissions to the repository, you can use this endpoint to require signed commits on a branch. You must enable branch protection to require signed commits.\n      tags:\n      - repos\n      operationId: repos/create-commit-signature-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#create-commit-signature-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/protected-branch-admin-enforced\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/protected-branch-admin-enforced\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: zzzax\n          note: |-\n            Protected Branches API can now manage a setting for requiring signed commits. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-22-protected-branches-required-signatures) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.zzzax-preview+json\n            ```\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users\":\n    delete:\n      summary: Remove user access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Removes the ability of a user to push to this branch.\n\n        | Type    | Description                                                                                                                                   |\n        | ------- | --------------------------------------------------------------------------------------------------------------------------------------------- |\n        | `array` | Usernames of the people who should no longer have push access. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/remove-user-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#remove-user-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: users parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: users\n    put:\n      summary: Set user access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Replaces the list of people that have push access to this branch. This removes all people that previously had push access and grants push access to the new list of people.\n\n        | Type    | Description                                                                                                                   |\n        | ------- | ----------------------------------------------------------------------------------------------------------------------------- |\n        | `array` | Usernames for people who can have push access. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/set-user-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#set-user-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: users parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: users\n    post:\n      summary: Add user access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Grants the specified people push access for this branch.\n\n        | Type    | Description                                                                                                                   |\n        | ------- | ----------------------------------------------------------------------------------------------------------------------------- |\n        | `array` | Usernames for people who can have push access. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/add-user-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#add-user-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: users parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: users\n    get:\n      summary: Get users with access to the protected branch\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Lists the people who have push access to this branch.\n      tags:\n      - repos\n      operationId: repos/get-users-with-access-to-protected-branch\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#list-users-with-access-to-the-protected-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/deployments/{deployment_id}\":\n    get:\n      summary: Get a deployment\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-deployment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/deployments/#get-a-deployment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/deployment_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/deployment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deployment\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: ant-man\n          note: |-\n            The `inactive` state and the `log_url`, `environment_url`, and `auto_inactive` parameters are currently available for developers to preview. Please see the [blog post](https://developer.github.com/changes/2016-04-06-deployment-and-deployment-status-enhancements) for full details.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.ant-man-preview+json\n            ```\n  \"/repositories\":\n    get:\n      summary: List public repositories\n      description: |-\n        Lists all public repositories in the order that they were created.\n\n        Note: Pagination is powered exclusively by the `since` parameter. Use the [Link header](https://developer.github.com/enterprise/2.20/v3/#link-header) to get the URL for the next page of repositories.\n      tags:\n      - repos\n      operationId: repos/list-public\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-public-repositories\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - name: visibility\n        in: query\n        required: false\n        schema:\n          type: string\n          example: all\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/public-repository-items\"\n          headers:\n            Link:\n              example: <https://api.github.com/repositories?since=364>; rel=\"next\"\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/branches\":\n    get:\n      summary: List branches\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-branches\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#list-branches\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: protected\n        description: Setting to `true` returns only protected branches. When set to\n          `false`, only unprotected branches are returned. Omitting this parameter\n          returns all branches.\n        in: query\n        required: false\n        schema:\n          type: boolean\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/short-branch\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/short-branch-items\"\n                with-protection:\n                  \"$ref\": \"#/components/examples/short-branch-with-protection-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/repository_invitations\":\n    get:\n      summary: List repository invitations for the authenticated user\n      description: When authenticating as a user, this endpoint will list all currently\n        open repository invitations for that user.\n      tags:\n      - repos\n      operationId: repos/list-invitations-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/invitations/#list-repository-invitations-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/repository-invitation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-invitation-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/repos/{owner}/{repo}/branches/{branch}\":\n    get:\n      summary: Get a branch\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-branch\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-a-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/branch-with-protection\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/branch-with-protection\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/keys\":\n    get:\n      summary: List deploy keys\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-deploy-keys\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/keys/#list-deploy-keys\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/deploy-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deploy-key-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Create a deploy key\n      description: You can create a read-only deploy key.\n      tags:\n      - repos\n      operationId: repos/create-deploy-key\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/keys/#create-a-deploy-key\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: A name for the key.\n                key:\n                  type: string\n                  description: The contents of the key.\n                read_only:\n                  type: boolean\n                  description: \"If `true`, the key will only be able to read repository\n                    contents. Otherwise, the key will be able to read and write.  \\n\n                    \\ \\nDeploy keys with write access can perform the same actions\n                    as an organization member with admin access, or a collaborator\n                    on a personal repository. For more information, see \\\"[Repository\n                    permission levels for an organization](https://help.github.com/articles/repository-permission-levels-for-an-organization/)\\\"\n                    and \\\"[Permission levels for a user account repository](https://help.github.com/articles/permission-levels-for-a-user-account-repository/).\\\"\"\n              required:\n              - key\n            example:\n              title: octocat@octomac\n              key: ssh-rsa AAA...\n              read_only: true\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/deploy-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deploy-key\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/keys/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pages/builds/{build_id}\":\n    get:\n      summary: Get GitHub Enterprise Server Pages build\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-pages-build\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#get-github-pages-build\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: build_id\n        description: build_id parameter\n        in: path\n        required: true\n        schema:\n          type: integer\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/page-build\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/page-build\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/hooks/{hook_id}\":\n    get:\n      summary: Get a repository webhook\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/hooks/#get-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete a repository webhook\n      description: ''\n      tags:\n      - repos\n      operationId: repos/delete-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/hooks/#delete-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update a repository webhook\n      description: ''\n      tags:\n      - repos\n      operationId: repos/update-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/hooks/#update-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                config:\n                  type: object\n                  description: Key/value pairs to provide settings for this webhook.\n                    [These are defined below](https://developer.github.com/enterprise/2.20/v3/repos/hooks/#create-hook-config-params).\n                  properties:\n                    url:\n                      type: string\n                      description: The URL to which the payloads will be delivered.\n                    content_type:\n                      type: string\n                      description: The media type used to serialize the payloads.\n                        Supported values include `json` and `form`. The default is\n                        `form`.\n                    secret:\n                      type: string\n                      description: If provided, the `secret` will be used as the `key`\n                        to generate the HMAC hex digest value in the [`X-Hub-Signature`](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#delivery-headers)\n                        header.\n                    insecure_ssl:\n                      type: string\n                      description: Determines whether the SSL certificate of the host\n                        for `url` will be verified when delivering payloads. Supported\n                        values include `0` (verification is performed) and `1` (verification\n                        is not performed). The default is `0`. **We strongly recommend\n                        not setting this to `1` as you are subject to man-in-the-middle\n                        and other attacks.**\n                    address:\n                      type: string\n                      example: '\"bar@example.com\"'\n                    room:\n                      type: string\n                      example: '\"The Serious Room\"'\n                  required:\n                  - url\n                events:\n                  type: array\n                  description: Determines what [events](https://developer.github.com/enterprise/2.20/webhooks/event-payloads)\n                    the hook is triggered for. This replaces the entire array of events.\n                  default:\n                  - push\n                  items:\n                    type: string\n                add_events:\n                  type: array\n                  description: Determines a list of events to be added to the list\n                    of events that the Hook triggers for.\n                  items:\n                    type: string\n                remove_events:\n                  type: array\n                  description: Determines a list of events to be removed from the\n                    list of events that the Hook triggers for.\n                  items:\n                    type: string\n                active:\n                  type: boolean\n                  description: Determines if notifications are sent when the webhook\n                    is triggered. Set to `true` to send notifications.\n                  default: true\n            example:\n              active: true\n              add_events:\n              - pull_request\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/releases\":\n    get:\n      summary: List releases\n      description: |-\n        This returns a list of releases, which does not include regular Git tags that have not been associated with a release. To get a list of Git tags, use the [Repository Tags API](https://developer.github.com/enterprise/2.20/v3/repos/#list-repository-tags).\n\n        Information about published releases are available to everyone. Only users with push access will receive listings for draft releases.\n      tags:\n      - repos\n      operationId: repos/list-releases\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#list-releases\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/release\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Create a release\n      description: |-\n        Users with push access to the repository can create a release.\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n      tags:\n      - repos\n      operationId: repos/create-release\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#create-a-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                tag_name:\n                  type: string\n                  description: The name of the tag.\n                target_commitish:\n                  type: string\n                  description: 'Specifies the commitish value that determines where\n                    the Git tag is created from. Can be any branch or commit SHA.\n                    Unused if the Git tag already exists. Default: the repository''s\n                    default branch (usually `master`).'\n                name:\n                  type: string\n                  description: The name of the release.\n                body:\n                  type: string\n                  description: Text describing the contents of the tag.\n                draft:\n                  type: boolean\n                  description: \"`true` to create a draft (unpublished) release, `false`\n                    to create a published one.\"\n                  default: false\n                prerelease:\n                  type: boolean\n                  description: \"`true` to identify the release as a prerelease. `false`\n                    to identify the release as a full release.\"\n                  default: false\n              required:\n              - tag_name\n            example:\n              tag_name: v1.0.0\n              target_commitish: master\n              name: v1.0.0\n              body: Description of the release\n              draft: false\n              prerelease: false\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/releases/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{template_owner}/{template_repo}/generate\":\n    post:\n      summary: Create a repository using a template\n      description: |-\n        Creates a new repository using a repository template. Use the `template_owner` and `template_repo` route parameters to specify the repository to use as the template. The authenticated user must own or be a member of an organization that owns the repository. To check if a repository is available to use as a template, get the repository's information using the [Get a repository](https://developer.github.com/enterprise/2.20/v3/repos/#get-a-repository) endpoint and check that the `is_template` key is `true`.\n\n        **OAuth scope requirements**\n\n        When using [OAuth](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/), authorizations must include:\n\n        *   `public_repo` scope or `repo` scope to create a public repository\n        *   `repo` scope to create a private repository\n      tags:\n      - repos\n      operationId: repos/create-using-template\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#create-a-repository-using-a-template\n      parameters:\n      - name: template_owner\n        description: template_owner parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: template_repo\n        description: template_repo parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                owner:\n                  type: string\n                  description: The organization or person who will own the new repository.\n                    To create a new repository in an organization, the authenticated\n                    user must be a member of the specified organization.\n                name:\n                  type: string\n                  description: The name of the new repository.\n                description:\n                  type: string\n                  description: A short description of the new repository.\n                private:\n                  type: boolean\n                  description: Either `true` to create a new private repository or\n                    `false` to create a new public one.\n                  default: false\n              required:\n              - name\n            example:\n              owner: octocat\n              name: Hello-World\n              description: This is your first repository\n              private: false\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-3\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World\n              schema:\n                type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: baptiste\n          note: |-\n            The `is_template` and `template_repository` keys are currently available for developer to preview. See [Create a repository using a template](https://developer.github.com/v3/repos/#create-a-repository-using-a-template) to learn how to create template repositories. To access these new response keys during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.baptiste-preview+json\n            ```\n  \"/users/{username}/repos\":\n    get:\n      summary: List repositories for a user\n      description: Lists public repositories for the specified user.\n      tags:\n      - repos\n      operationId: repos/list-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-repositories-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - name: type\n        description: Can be one of `all`, `owner`, `member`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - all\n          - owner\n          - member\n          default: owner\n      - name: sort\n        description: Can be one of `created`, `updated`, `pushed`, `full_name`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - pushed\n          - full_name\n          default: full_name\n      - name: direction\n        description: 'Can be one of `asc` or `desc`. Default: `asc` when using `full_name`,\n          otherwise `desc`'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: nebula\n          note: |-\n            You can set the visibility of a repository using the new `visibility` parameter in the [Repositories API](https://developer.github.com/v3/repos/), and get a repository's visibility with a new response key. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes/).\n\n            To access repository visibility during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.nebula-preview+json\n            ```\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/required_status_checks\":\n    delete:\n      summary: Remove status check protection\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/remove-status-check-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#remove-status-check-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '204':\n          description: No Content\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update status check protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Updating required status checks requires admin or owner permissions to the repository and branch protection to be enabled.\n      tags:\n      - repos\n      operationId: repos/update-status-check-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#update-status-check-potection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                strict:\n                  type: boolean\n                  description: Require branches to be up to date before merging.\n                contexts:\n                  type: array\n                  description: The list of status checks to require in order to merge\n                    into this branch\n                  items:\n                    type: string\n            example:\n              strict: true\n              contexts:\n              - continuous-integration/travis-ci\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/status-check-policy\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/status-check-policy\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get status checks protection\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/get-status-checks-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-status-checks-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/status-check-policy\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/status-check-policy\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}\":\n    delete:\n      summary: Delete a repository\n      description: |-\n        Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required.\n\n        If an organization owner has configured the organization to prevent members from deleting organization-owned\n        repositories, you will get a `403 Forbidden` response.\n      tags:\n      - repos\n      operationId: repos/delete\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#delete-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          description: 'If an organization owner has configured the organization to\n            prevent members from deleting organization-owned repositories, a member\n            will get this response:'\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n              example:\n                message: Organization members cannot delete repositories.\n                documentation_url: https://developer.github.com/enterprise/2.20/v3/repos/#delete-a-repository\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get a repository\n      description: |-\n        When you pass the `scarlet-witch-preview` media type, requests to get a repository will also return the repository's code of conduct if it can be detected from the repository's code of conduct file.\n\n        The `parent` and `source` objects are present when the repository is a fork. `parent` is the repository this repository was forked from, `source` is the ultimate source for the network.\n      tags:\n      - repos\n      operationId: repos/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#get-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/full-repository\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/full-repository-default-response\"\n                response-with-scarlet-witch-preview-media-type:\n                  \"$ref\": \"#/components/examples/full-repository-response-with-scarlet-witch-preview-media-type\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: nebula\n          note: |-\n            You can set the visibility of a repository using the new `visibility` parameter in the [Repositories API](https://developer.github.com/v3/repos/), and get a repository's visibility with a new response key. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes/).\n\n            To access repository visibility during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.nebula-preview+json\n            ```\n        - required: false\n          name: scarlet-witch\n          note: |-\n            The Codes of Conduct API is currently available for developers to preview.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.scarlet-witch-preview+json\n            ```\n    patch:\n      summary: Update a repository\n      description: \"**Note**: To edit a repository's topics, use the [Replace all\n        repository topics](https://developer.github.com/enterprise/2.20/v3/repos/#replace-all-repository-topics)\n        endpoint.\"\n      tags:\n      - repos\n      operationId: repos/update\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#update-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the repository.\n                description:\n                  type: string\n                  description: A short description of the repository.\n                homepage:\n                  type: string\n                  description: A URL with more information about the repository.\n                private:\n                  type: boolean\n                  description: \"Either `true` to make the repository private or `false`\n                    to make it public. Default: `false`.  \\n**Note**: You will get\n                    a `422` error if the organization restricts [changing repository\n                    visibility](https://help.github.com/articles/repository-permission-levels-for-an-organization#changing-the-visibility-of-repositories)\n                    to organization owners and a non-owner tries to change the value\n                    of private. **Note**: You will get a `422` error if the organization\n                    restricts [changing repository visibility](https://help.github.com/articles/repository-permission-levels-for-an-organization#changing-the-visibility-of-repositories)\n                    to organization owners and a non-owner tries to change the value\n                    of private.\"\n                  default: false\n                visibility:\n                  type: string\n                  description: Can be `public` or `private`. If your organization\n                    is associated with an enterprise account using GitHub Enterprise\n                    Cloud or GitHub Enterprise Server 2.20+, `visibility` can also\n                    be `internal`. The `visibility` parameter overrides the `private`\n                    parameter when you use both along with the `nebula-preview` preview\n                    header.\n                  enum:\n                  - public\n                  - private\n                  - visibility\n                  - internal\n                has_issues:\n                  type: boolean\n                  description: Either `true` to enable issues for this repository\n                    or `false` to disable them.\n                  default: true\n                has_projects:\n                  type: boolean\n                  description: Either `true` to enable projects for this repository\n                    or `false` to disable them. **Note:** If you're creating a repository\n                    in an organization that has disabled repository projects, the\n                    default is `false`, and if you pass `true`, the API returns an\n                    error.\n                  default: true\n                has_wiki:\n                  type: boolean\n                  description: Either `true` to enable the wiki for this repository\n                    or `false` to disable it.\n                  default: true\n                is_template:\n                  type: boolean\n                  description: Either `true` to make this repo available as a template\n                    repository or `false` to prevent it.\n                  default: false\n                default_branch:\n                  type: string\n                  description: Updates the default branch for this repository.\n                allow_squash_merge:\n                  type: boolean\n                  description: Either `true` to allow squash-merging pull requests,\n                    or `false` to prevent squash-merging.\n                  default: true\n                allow_merge_commit:\n                  type: boolean\n                  description: Either `true` to allow merging pull requests with a\n                    merge commit, or `false` to prevent merging pull requests with\n                    merge commits.\n                  default: true\n                allow_rebase_merge:\n                  type: boolean\n                  description: Either `true` to allow rebase-merging pull requests,\n                    or `false` to prevent rebase-merging.\n                  default: true\n                delete_branch_on_merge:\n                  type: boolean\n                  description: Either `true` to allow automatically deleting head\n                    branches when pull requests are merged, or `false` to prevent\n                    automatic deletion.\n                  default: false\n                archived:\n                  type: boolean\n                  description: \"`true` to archive this repository. **Note**: You cannot\n                    unarchive repositories through the API.\"\n                  default: false\n            example:\n              name: Hello-World\n              description: This is your first repository\n              homepage: https://github.com\n              private: true\n              has_issues: true\n              has_projects: true\n              has_wiki: true\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/full-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/full-repository\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: nebula\n          note: |-\n            You can set the visibility of a repository using the new `visibility` parameter in the [Repositories API](https://developer.github.com/v3/repos/), and get a repository's visibility with a new response key. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes/).\n\n            To access repository visibility during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.nebula-preview+json\n            ```\n        - required: false\n          name: baptiste\n          note: |-\n            The `is_template` and `template_repository` keys are currently available for developer to preview. See [Create a repository using a template](https://developer.github.com/v3/repos/#create-a-repository-using-a-template) to learn how to create template repositories. To access these new response keys during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.baptiste-preview+json\n            ```\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions\":\n    delete:\n      summary: Delete access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Disables the ability to restrict who can push to this branch.\n      tags:\n      - repos\n      operationId: repos/delete-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#delete-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '204':\n          description: No Content\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Lists who has access to this protected branch.\n\n        **Note**: Users, apps, and teams `restrictions` are only available for organization-owned repositories.\n      tags:\n      - repos\n      operationId: repos/get-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/branch-restriction-policy\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/branch-restriction-policy\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/keys/{key_id}\":\n    get:\n      summary: Get a deploy key\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-deploy-key\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/keys/#get-a-deploy-key\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/key_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/deploy-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deploy-key\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete a deploy key\n      description: Deploy keys are immutable. If you need to update a key, remove\n        the key and create a new one instead.\n      tags:\n      - repos\n      operationId: repos/delete-deploy-key\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/keys/#delete-a-deploy-key\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/key_id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/releases/{release_id}\":\n    patch:\n      summary: Update a release\n      description: Users with push access to the repository can edit a release.\n      tags:\n      - repos\n      operationId: repos/update-release\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#update-a-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/release_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                tag_name:\n                  type: string\n                  description: The name of the tag.\n                target_commitish:\n                  type: string\n                  description: 'Specifies the commitish value that determines where\n                    the Git tag is created from. Can be any branch or commit SHA.\n                    Unused if the Git tag already exists. Default: the repository''s\n                    default branch (usually `master`).'\n                name:\n                  type: string\n                  description: The name of the release.\n                body:\n                  type: string\n                  description: Text describing the contents of the tag.\n                draft:\n                  type: boolean\n                  description: \"`true` makes the release a draft, and `false` publishes\n                    the release.\"\n                prerelease:\n                  type: boolean\n                  description: \"`true` to identify the release as a prerelease, `false`\n                    to identify the release as a full release.\"\n            example:\n              tag_name: v1.0.0\n              target_commitish: master\n              name: v1.0.0\n              body: Description of the release\n              draft: false\n              prerelease: false\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get a release\n      description: \"**Note:** This returns an `upload_url` key corresponding to the\n        endpoint for uploading release assets. This key is a [hypermedia resource](https://developer.github.com/enterprise/2.20/v3/#hypermedia).\"\n      tags:\n      - repos\n      operationId: repos/get-release\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#get-a-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/release_id\"\n      responses:\n        '200':\n          description: \"**Note:** This returns an `upload_url` key corresponding to\n            the endpoint for uploading release assets. This key is a [hypermedia resource](https://developer.github.com/enterprise/2.20/v3/#hypermedia).\"\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete a release\n      description: Users with push access to the repository can delete a release.\n      tags:\n      - repos\n      operationId: repos/delete-release\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#delete-a-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/release_id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/branches/{branch}/protection\":\n    delete:\n      summary: Delete branch protection\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/delete-branch-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#delete-branch-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    put:\n      summary: Update branch protection\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Protecting a branch requires admin or owner permissions to the repository.\n\n        **Note**: Passing new arrays of `users` and `teams` replaces their previous values.\n\n        **Note**: The list of users, apps, and teams in total is limited to 100 items.\n      tags:\n      - repos\n      operationId: repos/update-branch-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#update-branch-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                required_status_checks:\n                  type: object\n                  description: Require status checks to pass before merging. Set to\n                    `null` to disable.\n                  nullable: true\n                  properties:\n                    strict:\n                      type: boolean\n                      description: Require branches to be up to date before merging.\n                    contexts:\n                      type: array\n                      description: The list of status checks to require in order to\n                        merge into this branch\n                      items:\n                        type: string\n                  required:\n                  - strict\n                  - contexts\n                enforce_admins:\n                  type: boolean\n                  description: Enforce all configured restrictions for administrators.\n                    Set to `true` to enforce required status checks for repository\n                    administrators. Set to `null` to disable.\n                  nullable: true\n                required_pull_request_reviews:\n                  type: object\n                  description: Require at least one approving review on a pull request,\n                    before merging. Set to `null` to disable.\n                  nullable: true\n                  properties:\n                    dismissal_restrictions:\n                      type: object\n                      description: Specify which users and teams can dismiss pull\n                        request reviews. Pass an empty `dismissal_restrictions` object\n                        to disable. User and team `dismissal_restrictions` are only\n                        available for organization-owned repositories. Omit this parameter\n                        for personal repositories.\n                      properties:\n                        users:\n                          type: array\n                          description: The list of user `login`s with dismissal access\n                          items:\n                            type: string\n                        teams:\n                          type: array\n                          description: The list of team `slug`s with dismissal access\n                          items:\n                            type: string\n                    dismiss_stale_reviews:\n                      type: boolean\n                      description: Set to `true` if you want to automatically dismiss\n                        approving reviews when someone pushes a new commit.\n                    require_code_owner_reviews:\n                      type: boolean\n                      description: Blocks merging pull requests until [code owners](https://help.github.com/articles/about-code-owners/)\n                        review them.\n                    required_approving_review_count:\n                      type: integer\n                      description: Specify the number of reviewers required to approve\n                        pull requests. Use a number between 1 and 6.\n                restrictions:\n                  type: object\n                  description: Restrict who can push to the protected branch. User,\n                    app, and team `restrictions` are only available for organization-owned\n                    repositories. Set to `null` to disable.\n                  nullable: true\n                  properties:\n                    users:\n                      type: array\n                      description: The list of user `login`s with push access\n                      items:\n                        type: string\n                    teams:\n                      type: array\n                      description: The list of team `slug`s with push access\n                      items:\n                        type: string\n                    apps:\n                      type: array\n                      description: The list of app `slug`s with push access\n                      items:\n                        type: string\n                  required:\n                  - users\n                  - teams\n                required_linear_history:\n                  type: boolean\n                  description: 'Enforces a linear commit Git history, which prevents\n                    anyone from pushing merge commits to a branch. Set to `true` to\n                    enforce a linear commit history. Set to `false` to disable a linear\n                    commit Git history. Your repository must allow squash merging\n                    or rebase merging before you can enable a linear commit history.\n                    Default: `false`. For more information, see \"[Requiring a linear\n                    commit history](https://help.github.com/github/administering-a-repository/requiring-a-linear-commit-history)\"\n                    in the GitHub Help documentation.'\n                allow_force_pushes:\n                  type: boolean\n                  description: 'Permits force pushes to the protected branch by anyone\n                    with write access to the repository. Set to `true` to allow force\n                    pushes. Set to `false` or `null` to block force pushes. Default:\n                    `false`. For more information, see \"[Enabling force pushes to\n                    a protected branch](https://help.github.com/en/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch)\"\n                    in the GitHub Help documentation.\"'\n                  nullable: true\n                allow_deletions:\n                  type: boolean\n                  description: 'Allows deletion of the protected branch by anyone\n                    with write access to the repository. Set to `false` to prevent\n                    deletion of the protected branch. Default: `false`. For more information,\n                    see \"[Enabling force pushes to a protected branch](https://help.github.com/en/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch)\"\n                    in the GitHub Help documentation.'\n              required:\n              - required_status_checks\n              - enforce_admins\n              - required_pull_request_reviews\n              - restrictions\n            example:\n              required_status_checks:\n                strict: true\n                contexts:\n                - continuous-integration/travis-ci\n              enforce_admins: true\n              required_pull_request_reviews:\n                dismissal_restrictions:\n                  users:\n                  - octocat\n                  teams:\n                  - justice-league\n                dismiss_stale_reviews: true\n                require_code_owner_reviews: true\n                required_approving_review_count: 2\n              restrictions:\n                users:\n                - octocat\n                teams:\n                - justice-league\n                apps:\n                - super-ci\n              required_linear_history: true\n              allow_force_pushes: true\n              allow_deletions: true\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/protected-branch\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: luke-cage\n          note: |-\n            The Protected Branches API now has a setting for requiring a specified number of approving pull request reviews before merging. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-03-16-protected-branches-required-approving-reviews) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.luke-cage-preview+json\n            ```\n    get:\n      summary: Get branch protection\n      description: Protected branches are available in public repositories with GitHub\n        Free and GitHub Free for organizations, and in public and private repositories\n        with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise\n        Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - repos\n      operationId: repos/get-branch-protection\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#get-branch-protection\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/branch-protection\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/branch-protection\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: luke-cage\n          note: |-\n            The Protected Branches API now has a setting for requiring a specified number of approving pull request reviews before merging. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-03-16-protected-branches-required-approving-reviews) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.luke-cage-preview+json\n            ```\n  \"/repos/{owner}/{repo}/invitations\":\n    get:\n      summary: List repository invitations\n      description: When authenticating as a user with admin rights to a repository,\n        this endpoint will list all currently open repository invitations.\n      tags:\n      - repos\n      operationId: repos/list-invitations\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/invitations/#list-repository-invitations\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/repository-invitation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-invitation-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/repository_invitations/{invitation_id}\":\n    delete:\n      summary: Decline a repository invitation\n      description: ''\n      tags:\n      - repos\n      operationId: repos/decline-invitation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/invitations/#decline-a-repository-invitation\n      parameters:\n      - \"$ref\": \"#/components/parameters/invitation_id\"\n      responses:\n        '204':\n          description: Empty response\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    patch:\n      summary: Accept a repository invitation\n      description: ''\n      tags:\n      - repos\n      operationId: repos/accept-invitation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/invitations/#accept-a-repository-invitation\n      parameters:\n      - \"$ref\": \"#/components/parameters/invitation_id\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/repos/{owner}/{repo}/hooks/{hook_id}/pings\":\n    post:\n      summary: Ping a repository webhook\n      description: This will trigger a [ping event](https://developer.github.com/enterprise/2.20/webhooks/#ping-event)\n        to be sent to the hook.\n      tags:\n      - repos\n      operationId: repos/ping-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/hooks/#ping-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/tags\":\n    get:\n      summary: List repository tags\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-tags\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-repository-tags\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/tag\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/tag-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/teams\":\n    get:\n      summary: List repository teams\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-repository-teams\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/stats/commit_activity\":\n    get:\n      summary: Get the last year of commit activity\n      description: Returns the last year of commit activity grouped by week. The `days`\n        array is a group of commits per day, starting on `Sunday`.\n      tags:\n      - repos\n      operationId: repos/get-commit-activity-stats\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statistics/#get-the-last-year-of-commit-activity\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/commit-activity\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-activity-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/languages\":\n    get:\n      summary: List repository languages\n      description: Lists languages for the specified repository. The value shown for\n        each language is the number of bytes of code written in that language.\n      tags:\n      - repos\n      operationId: repos/list-languages\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-repository-languages\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/language\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/language\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/stats/punch_card\":\n    get:\n      summary: Get the hourly commit count for each day\n      description: |-\n        Each array contains the day number, hour number, and number of commits:\n\n        *   `0-6`: Sunday - Saturday\n        *   `0-23`: Hour of day\n        *   Number of commits\n\n        For example, `[2, 14, 25]` indicates that there were 25 total commits, during the 2:00pm hour on Tuesdays. All times are based on the time zone of individual commits.\n      tags:\n      - repos\n      operationId: repos/get-punch-card-stats\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statistics/#get-the-hourly-commit-count-for-each-day\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: For example, `[2, 14, 25]` indicates that there were 25 total\n            commits, during the 2:00pm hour on Tuesdays. All times are based on the\n            time zone of individual commits.\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/code-frequency-stat\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-frequency-stat-items-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/transfer\":\n    post:\n      summary: Transfer a repository\n      description: A transfer request will need to be accepted by the new owner when\n        transferring a personal repository to another user. The response will contain\n        the original `owner`, and the transfer will continue asynchronously. For more\n        details on the requirements to transfer personal and organization-owned repositories,\n        see [about repository transfers](https://help.github.com/articles/about-repository-transfers/).\n      tags:\n      - repos\n      operationId: repos/transfer\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#transfer-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                new_owner:\n                  type: string\n                  description: \"**Required:** The username or organization name the\n                    repository will be transferred to.\"\n                team_ids:\n                  type: array\n                  description: ID of the team or teams to add to the repository. Teams\n                    can only be added to organization-owned repositories.\n                  items:\n                    type: integer\n            example:\n              new_owner: github\n              team_ids:\n              - 12\n              - 345\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/repos\":\n    post:\n      summary: Create a repository for the authenticated user\n      description: |-\n        Creates a new repository for the authenticated user.\n\n        **OAuth scope requirements**\n\n        When using [OAuth](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/), authorizations must include:\n\n        *   `public_repo` scope or `repo` scope to create a public repository\n        *   `repo` scope to create a private repository\n      tags:\n      - repos\n      operationId: repos/create-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#create-a-repository-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                name:\n                  description: The name of the repository.\n                  type: string\n                  example: Team Environment\n                description:\n                  description: A short description of the repository.\n                  type: string\n                homepage:\n                  description: A URL with more information about the repository.\n                  type: string\n                private:\n                  description: Whether the repository is private or public.\n                  default: false\n                  type: boolean\n                has_issues:\n                  description: Whether issues are enabled.\n                  default: true\n                  type: boolean\n                  example: true\n                has_projects:\n                  description: Whether projects are enabled.\n                  default: true\n                  type: boolean\n                  example: true\n                has_wiki:\n                  description: Whether the wiki is enabled.\n                  default: true\n                  type: boolean\n                  example: true\n                team_id:\n                  description: The id of the team that will be granted access to this\n                    repository. This is only valid when creating a repository in an\n                    organization.\n                  type: integer\n                auto_init:\n                  description: Whether the repository is initialized with a minimal\n                    README.\n                  default: false\n                  type: boolean\n                gitignore_template:\n                  description: The desired language or platform to apply to the .gitignore.\n                  example: Haskell\n                  type: string\n                license_template:\n                  description: The license keyword of the open source license for\n                    this repository.\n                  example: mit\n                  type: string\n                allow_squash_merge:\n                  description: Whether to allow squash merges for pull requests.\n                  default: true\n                  type: boolean\n                  example: true\n                allow_merge_commit:\n                  description: Whether to allow merge commits for pull requests.\n                  default: true\n                  type: boolean\n                  example: true\n                allow_rebase_merge:\n                  description: Whether to allow rebase merges for pull requests.\n                  default: true\n                  type: boolean\n                  example: true\n                delete_branch_on_merge:\n                  description: Whether to delete head branches when pull requests\n                    are merged\n                  default: false\n                  type: boolean\n                  example: false\n                has_downloads:\n                  description: Whether downloads are enabled.\n                  default: true\n                  type: boolean\n                  example: true\n                is_template:\n                  description: Whether this repository acts as a template that can\n                    be used to generate new repositories.\n                  default: false\n                  type: boolean\n                  example: true\n              required:\n              - name\n              type: object\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World\n              schema:\n                type: string\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: false\n          name: nebula\n          note: |-\n            You can set the visibility of a repository using the new `visibility` parameter in the [Repositories API](https://developer.github.com/v3/repos/), and get a repository's visibility with a new response key. For more information, see the [blog post](https://developer.github.com/changes/2019-12-03-internal-visibility-changes/).\n\n            To access repository visibility during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.nebula-preview+json\n            ```\n        - required: false\n          name: baptiste\n          note: |-\n            The `is_template` and `template_repository` keys are currently available for developer to preview. See [Create a repository using a template](https://developer.github.com/v3/repos/#create-a-repository-using-a-template) to learn how to create template repositories. To access these new response keys during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.baptiste-preview+json\n            ```\n    get:\n      summary: List repositories for the authenticated user\n      description: |-\n        Lists repositories that the authenticated user has explicit permission (`:read`, `:write`, or `:admin`) to access.\n\n        The authenticated user has explicit permission to access repositories they own, repositories where they are a collaborator, and repositories that they can access through an organization membership.\n      tags:\n      - repos\n      operationId: repos/list-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-repositories-for-the-authenticated-user\n      parameters:\n      - name: visibility\n        description: Can be one of `all`, `public`, or `private`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - all\n          - public\n          - private\n          default: all\n      - name: affiliation\n        description: \"Comma-separated list of values. Can include:  \\n\\\\* `owner`:\n          Repositories that are owned by the authenticated user.  \\n\\\\* `collaborator`:\n          Repositories that the user has been added to as a collaborator.  \\n\\\\* `organization_member`:\n          Repositories that the user has access to through being a member of an organization.\n          This includes every repository on every team that the user is on.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          default: owner,collaborator,organization_member\n      - name: type\n        description: \"Can be one of `all`, `owner`, `public`, `private`, `member`.\n          Default: `all`  \\n  \\nWill cause a `422` error if used in the same request\n          as **visibility** or **affiliation**. Will cause a `422` error if used in\n          the same request as **visibility** or **affiliation**.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - all\n          - owner\n          - public\n          - private\n          - member\n          default: all\n      - name: sort\n        description: Can be one of `created`, `updated`, `pushed`, `full_name`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - pushed\n          - full_name\n          default: full_name\n      - name: direction\n        description: 'Can be one of `asc` or `desc`. Default: `asc` when using `full_name`,\n          otherwise `desc`'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/before\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-items-default-response\"\n        '418':\n          description: Response definition missing\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/repos/{owner}/{repo}/pages/builds\":\n    post:\n      summary: Request a GitHub Enterprise Server Pages build\n      description: |-\n        You can request that your site be built from the latest revision on the default branch. This has the same effect as pushing a commit to your default branch, but does not require an additional commit. Manually triggering page builds can be helpful when diagnosing build warnings and failures.\n\n        Build requests are limited to one concurrent build per repository and one concurrent build per requester. If you request a build while another is still in progress, the second request will be queued until the first completes.\n      tags:\n      - repos\n      operationId: repos/request-pages-build\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#request-a-github-pages-build\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/page-build-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/page-build-status\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List GitHub Enterprise Server Pages builds\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-pages-builds\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#list-github-pages-builds\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/page-build\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/page-build-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/collaborators/{username}\":\n    delete:\n      summary: Remove a repository collaborator\n      description: ''\n      tags:\n      - repos\n      operationId: repos/remove-collaborator\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/collaborators/#remove-a-repository-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Check if a user is a repository collaborator\n      description: |-\n        For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.\n\n        Team members will include the members of child teams.\n      tags:\n      - repos\n      operationId: repos/check-collaborator\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/collaborators/#check-if-a-user-is-a-repository-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response if user is a collaborator\n        '404':\n          description: Response if user is not a collaborator\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    put:\n      summary: Add a repository collaborator\n      description: |-\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n\n        For more information the permission levels, see \"[Repository permission levels for an organization](https://help.github.com/en/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization#permission-levels-for-repositories-owned-by-an-organization)\".\n\n        Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n\n        The invitee will receive a notification that they have been invited to the repository, which they must accept or decline. They may do this via the notifications page, the email they receive, or by using the [repository invitations API endpoints](https://developer.github.com/enterprise/2.20/v3/repos/invitations/).\n\n        **Rate limits**\n\n        To prevent abuse, you are limited to sending 50 invitations to a repository per 24 hour period. Note there is no limit if you are inviting organization members to an organization repository.\n      tags:\n      - repos\n      operationId: repos/add-collaborator\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/collaborators/#add-a-repository-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                permission:\n                  type: string\n                  description: \"The permission to grant the collaborator. **Only valid\n                    on organization-owned repositories.** Can be one of:  \\n\\\\* `pull`\n                    - can pull, but not push to or administer this repository.  \\n\\\\*\n                    `push` - can pull and push, but not administer this repository.\n                    \\ \\n\\\\* `admin` - can pull, push and administer this repository.\n                    \\ \\n\\\\* `maintain` - Recommended for project managers who need\n                    to manage the repository without access to sensitive or destructive\n                    actions.  \\n\\\\* `triage` - Recommended for contributors who need\n                    to proactively manage issues and pull requests without write access.\"\n                  enum:\n                  - pull\n                  - push\n                  - admin\n                  - maintain\n                  - triage\n                  default: push\n                permissions:\n                  type: string\n                  example: '\"push\"'\n      responses:\n        '201':\n          description: Response when a new invitation is created\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-invitation\"\n              examples:\n                response-when-a-new-invitation-is-created:\n                  \"$ref\": \"#/components/examples/repository-invitation-response-when-a-new-invitation-is-created\"\n        '204':\n          description: Response when person is already a collaborator\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/forks\":\n    post:\n      summary: Create a fork\n      description: |-\n        Create a fork for the authenticated user.\n\n        **Note**: Forking a Repository happens asynchronously. You may have to wait a short period of time before you can access the git objects. If this takes longer than 5 minutes, be sure to contact [GitHub Enterprise Server Support](https://github.com/contact) or [GitHub Enterprise Server Premium Support](https://premium.githubsupport.com).\n      tags:\n      - repos\n      operationId: repos/create-fork\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/forks/#create-a-fork\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                organization:\n                  type: string\n                  description: Optional parameter to specify the organization name\n                    if forking into an organization.\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List forks\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-forks\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/forks/#list-forks\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: sort\n        description: The sort order. Can be either `newest`, `oldest`, or `stargazers`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - newest\n          - oldest\n          - stargazers\n          default: newest\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository-items-2\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/releases/{release_id}/assets\":\n    post:\n      summary: Upload a release asset\n      description: \"This endpoint makes use of [a Hypermedia relation](https://developer.github.com/enterprise/2.20/v3/#hypermedia)\n        to determine which URL to access. The endpoint you call to upload release\n        assets is specific to your release. Use the `upload_url` returned in\\nthe\n        response of the [Create a release endpoint](https://developer.github.com/enterprise/2.20/v3/repos/releases/#create-a-release)\n        to upload a release asset.\\n\\nYou need to use an HTTP client which supports\n        [SNI](http://en.wikipedia.org/wiki/Server_Name_Indication) to make calls to\n        this endpoint.\\n\\nMost libraries will set the required `Content-Length` header\n        automatically. Use the required `Content-Type` header to provide the media\n        type of the asset. For a list of media types, see [Media Types](https://www.iana.org/assignments/media-types/media-types.xhtml).\n        For example: \\n\\n`application/zip`\\n\\nGitHub Enterprise Server expects the\n        asset data in its raw binary form, rather than JSON. You will send the raw\n        binary content of the asset as the request body. Everything else about the\n        endpoint is the same as the rest of the API. For example,\\nyou'll still need\n        to pass your authentication to be able to upload an asset.\\n\\nWhen an upstream\n        failure occurs, you will receive a `502 Bad Gateway` status. This may leave\n        an empty asset with a state of `starter`. It can be safely deleted.\\n\\n**Notes:**\\n*\n        \\  GitHub Enterprise Server renames asset filenames that have special characters,\n        non-alphanumeric characters, and leading or trailing periods. The \\\"[List\n        assets for a release](https://developer.github.com/enterprise/2.20/v3/repos/releases/#list-assets-for-a-release)\\\"\\nendpoint\n        lists the renamed filenames. For more information and help, contact [GitHub\n        Enterprise Server Support](https://github.com/contact).\\n*   If you upload\n        an asset with the same filename as another uploaded asset, you'll receive\n        an error and must delete the old file before you can re-upload the new asset.\"\n      tags:\n      - repos\n      operationId: repos/upload-release-asset\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#upload-a-release-asset\n      servers:\n      - url: \"{origin}\"\n        variables:\n          origin:\n            default: https://uploads.github.com\n            description: The URL origin (protocol + host name + port) is included\n              in `upload_url` returned in the response of the \"Create a release\" endpoint\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/release_id\"\n      - name: name\n        in: query\n        schema:\n          type: string\n        description: name parameter\n      - name: label\n        in: query\n        schema:\n          type: string\n        description: label parameter\n      requestBody:\n        content:\n          \"*/*\":\n            schema:\n              type: string\n              description: The raw file data\n      responses:\n        '201':\n          description: Response for successful upload\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release-asset\"\n              examples:\n                response-for-successful-upload:\n                  \"$ref\": \"#/components/examples/release-asset-response-for-successful-upload\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List release assets\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-release-assets\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#list-release-assets\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/release_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/release-asset\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release-asset-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/comments/{comment_id}\":\n    delete:\n      summary: Delete a commit comment\n      description: ''\n      tags:\n      - repos\n      operationId: repos/delete-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/comments/#delete-a-commit-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get a commit comment\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/comments/#get-a-commit-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/commit-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-comment\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    patch:\n      summary: Update a commit comment\n      description: ''\n      tags:\n      - repos\n      operationId: repos/update-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/comments/#update-a-commit-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The contents of the comment\n              required:\n              - body\n            example:\n              body: Nice change\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/commit-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-comment-2\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/hooks/{hook_id}/tests\":\n    post:\n      summary: Test the push repository webhook\n      description: |-\n        This will trigger the hook with the latest push to the current repository if the hook is subscribed to `push` events. If the hook is not subscribed to `push` events, the server will respond with 204 but no test POST will be generated.\n\n        **Note**: Previously `/repos/:owner/:repo/hooks/:hook_id/test`\n      tags:\n      - repos\n      operationId: repos/test-push-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/hooks/#test-the-push-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/hooks\":\n    get:\n      summary: List repository webhooks\n      description: ''\n      tags:\n      - repos\n      operationId: repos/list-webhooks\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/hooks/#list-repository-webhooks\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Create a repository webhook\n      description: |-\n        Repositories can have multiple webhooks installed. Each webhook should have a unique `config`. Multiple webhooks can\n        share the same `config` as long as those webhooks do not have any `events` that overlap.\n      tags:\n      - repos\n      operationId: repos/create-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/hooks/#create-a-repository-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: 'Use `web` to create a webhook. Default: `web`. This\n                    parameter only accepts the value `web`.'\n                config:\n                  type: object\n                  description: Key/value pairs to provide settings for this webhook.\n                    [These are defined below](https://developer.github.com/enterprise/2.20/v3/repos/hooks/#create-hook-config-params).\n                  properties:\n                    url:\n                      type: string\n                      description: The URL to which the payloads will be delivered.\n                    content_type:\n                      type: string\n                      description: The media type used to serialize the payloads.\n                        Supported values include `json` and `form`. The default is\n                        `form`.\n                    secret:\n                      type: string\n                      description: If provided, the `secret` will be used as the `key`\n                        to generate the HMAC hex digest value in the [`X-Hub-Signature`](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#delivery-headers)\n                        header.\n                    insecure_ssl:\n                      type: string\n                      description: Determines whether the SSL certificate of the host\n                        for `url` will be verified when delivering payloads. Supported\n                        values include `0` (verification is performed) and `1` (verification\n                        is not performed). The default is `0`. **We strongly recommend\n                        not setting this to `1` as you are subject to man-in-the-middle\n                        and other attacks.**\n                    token:\n                      type: string\n                      example: '\"abc\"'\n                    digest:\n                      type: string\n                      example: '\"md5\"'\n                  required:\n                  - url\n                events:\n                  type: array\n                  description: Determines what [events](https://developer.github.com/enterprise/2.20/webhooks/event-payloads)\n                    the hook is triggered for.\n                  default:\n                  - push\n                  items:\n                    type: string\n                active:\n                  type: boolean\n                  description: Determines if notifications are sent when the webhook\n                    is triggered. Set to `true` to send notifications.\n                  default: true\n              required:\n              - config\n            example:\n              name: web\n              active: true\n              events:\n              - push\n              - pull_request\n              config:\n                url: https://example.com/webhook\n                content_type: json\n                insecure_ssl: '0'\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hook\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/hooks/12345678\n              schema:\n                type: string\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pages/builds/latest\":\n    get:\n      summary: Get latest Pages build\n      description: ''\n      tags:\n      - repos\n      operationId: repos/get-latest-pages-build\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/pages/#get-latest-pages-build\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/page-build\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/page-build\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/commits/{commit_sha}/comments\":\n    post:\n      summary: Create a commit comment\n      description: |-\n        Create a comment for a commit using its `:commit_sha`.\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n      tags:\n      - repos\n      operationId: repos/create-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/comments/#create-a-commit-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/commit_sha\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The contents of the comment.\n                path:\n                  type: string\n                  description: Relative path of the file to comment on.\n                position:\n                  type: integer\n                  description: Line index in the diff to comment on.\n                line:\n                  type: integer\n                  description: \"**Deprecated**. Use **position** parameter instead.\n                    Line number in the file to comment on.\"\n              required:\n              - body\n            example:\n              body: Great stuff\n              path: file1.txt\n              position: 4\n              line: 1\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/commit-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-comment\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/comments/1\n              schema:\n                type: string\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List commit comments\n      description: Use the `:commit_sha` to specify the commit that will have its\n        comments listed.\n      tags:\n      - repos\n      operationId: repos/list-comments-for-commit\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/comments/#list-commit-comments\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/commit_sha\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/commit-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/stats/participation\":\n    get:\n      summary: Get the weekly commit count\n      description: |-\n        Returns the total commit counts for the `owner` and total commit counts in `all`. `all` is everyone combined, including the `owner` in the last 52 weeks. If you'd like to get the commit counts for non-owners, you can subtract `owner` from `all`.\n\n        The array order is oldest week (index 0) to most recent week.\n      tags:\n      - repos\n      operationId: repos/get-participation-stats\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statistics/#get-the-weekly-commit-count\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: The array order is oldest week (index 0) to most recent week.\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/participation-stats\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/participation-stats\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/commits\":\n    get:\n      summary: List commits\n      description: |-\n        **Signature verification object**\n\n        The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:\n\n        These are the possible values for `reason` in the `verification` object:\n\n        | Value                    | Description                                                                                                                       |\n        | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n        | `expired_key`            | The key that made the signature is expired.                                                                                       |\n        | `not_signing_key`        | The \"signing\" flag is not among the usage flags in the GPG key that made the signature.                                           |\n        | `gpgverify_error`        | There was an error communicating with the signature verification service.                                                         |\n        | `gpgverify_unavailable`  | The signature verification service is currently unavailable.                                                                      |\n        | `unsigned`               | The object does not include a signature.                                                                                          |\n        | `unknown_signature_type` | A non-PGP signature was found in the commit.                                                                                      |\n        | `no_user`                | No user was associated with the `committer` email address in the commit.                                                          |\n        | `unverified_email`       | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |\n        | `bad_email`              | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature.             |\n        | `unknown_key`            | The key that made the signature has not been registered with any user's account.                                                  |\n        | `malformed_signature`    | There was an error parsing the signature.                                                                                         |\n        | `invalid`                | The signature could not be cryptographically verified using the key whose key-id was found in the signature.                      |\n        | `valid`                  | None of the above errors applied, so the signature is considered to be verified.                                                  |\n      tags:\n      - repos\n      operationId: repos/list-commits\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/commits/#list-commits\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: sha\n        description: 'SHA or branch to start listing commits from. Default: the repository’s\n          default branch (usually `master`).'\n        in: query\n        required: false\n        schema:\n          type: string\n      - name: path\n        description: Only commits containing this file path will be returned.\n        in: query\n        required: false\n        schema:\n          type: string\n      - name: author\n        description: GitHub login or email address by which to filter by commit author.\n        in: query\n        required: false\n        schema:\n          type: string\n      - \"$ref\": \"#/components/parameters/since\"\n      - name: until\n        description: 'Only commits before this date will be returned. This is a timestamp\n          in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.'\n        in: query\n        required: false\n        schema:\n          type: string\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-commit-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '500':\n          \"$ref\": \"#/components/responses/internal_error\"\n        '400':\n          \"$ref\": \"#/components/responses/bad_request\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/apps\":\n    put:\n      summary: Set app access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Replaces the list of apps that have push access to this branch. This removes all apps that previously had push access and grants push access to the new list of apps. Only installed GitHub Apps with `write` access to the `contents` permission can be added as authorized actors on a protected branch.\n\n        | Type    | Description                                                                                                                                                |\n        | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n        | `array` | The GitHub Apps that have push access to this branch. Use the app's `slug`. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/set-app-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#set-app-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: apps parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/integration\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/integration-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: apps\n    post:\n      summary: Add app access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Grants the specified apps push access for this branch. Only installed GitHub Apps with `write` access to the `contents` permission can be added as authorized actors on a protected branch.\n\n        | Type    | Description                                                                                                                                                |\n        | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n        | `array` | The GitHub Apps that have push access to this branch. Use the app's `slug`. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/add-app-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#add-app-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: apps parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/integration\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/integration-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: apps\n    get:\n      summary: Get apps with access to the protected branch\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Lists the GitHub Apps that have push access to this branch. Only installed GitHub Apps with `write` access to the `contents` permission can be added as authorized actors on a protected branch.\n      tags:\n      - repos\n      operationId: repos/get-apps-with-access-to-protected-branch\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#list-apps-with-access-to-the-protected-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/integration\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/integration-items\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Remove app access restrictions\n      description: |-\n        Protected branches are available in public repositories with GitHub Free and GitHub Free for organizations, and in public and private repositories with GitHub Pro, GitHub Team, GitHub Enterprise Cloud, and GitHub Enterprise Server. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Removes the ability of an app to push to this branch. Only installed GitHub Apps with `write` access to the `contents` permission can be added as authorized actors on a protected branch.\n\n        | Type    | Description                                                                                                                                                |\n        | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n        | `array` | The GitHub Apps that have push access to this branch. Use the app's `slug`. **Note**: The list of users, apps, and teams in total is limited to 100 items. |\n      tags:\n      - repos\n      operationId: repos/remove-app-access-restrictions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/branches/#remove-app-access-restrictions\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/branch\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: array\n              description: apps parameter\n              items:\n                type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/integration\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/integration-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        requestBodyParameterName: apps\n  \"/repos/{owner}/{repo}/releases/tags/{tag}\":\n    get:\n      summary: Get a release by tag name\n      description: Get a published release with the specified tag.\n      tags:\n      - repos\n      operationId: repos/get-release-by-tag\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#get-a-release-by-tag-name\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: tag\n        description: tag+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/zipball/{ref}\":\n    get:\n      summary: Download a repository archive (zip)\n      description: |-\n        Gets a redirect URL to download a zip archive for a repository. If you omit `:ref`, the repository’s default branch (usually\n        `master`) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\n        the `Location` header to make a second `GET` request.\n        **Note**: For private repositories, these links are temporary and expire after five minutes.\n      tags:\n      - repos\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/contents/#download-a-repository-archive\n      operationId: repos/download-zipball-archive\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '302':\n          description: response\n          headers:\n            Location:\n              example: https://codeload.github.com/me/myprivate/legacy.zip/master?login=me&token=thistokenexpires\n              schema:\n                type: string\n  \"/repos/{owner}/{repo}/invitations/{invitation_id}\":\n    delete:\n      summary: Delete a repository invitation\n      description: ''\n      tags:\n      - repos\n      operationId: repos/delete-invitation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/invitations/#delete-a-repository-invitation\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/invitation_id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update a repository invitation\n      description: ''\n      tags:\n      - repos\n      operationId: repos/update-invitation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/invitations/#update-a-repository-invitation\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/invitation_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                permissions:\n                  type: string\n                  description: The permissions that the associated user will have\n                    on the repository. Valid values are `read`, `write`, `maintain`,\n                    `triage`, and `admin`.\n                  enum:\n                  - read\n                  - write\n                  - maintain\n                  - triage\n                  - admin\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-invitation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-invitation\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/commits/{ref}/status\":\n    get:\n      summary: Get the combined status for a specific reference\n      description: |-\n        Users with pull access in a repository can access a combined view of commit statuses for a given ref. The ref can be a SHA, a branch name, or a tag name.\n\n        The most recent status for each context is returned, up to 100. This field [paginates](https://developer.github.com/enterprise/2.20/v3/#pagination) if there are over 100 contexts.\n\n        Additionally, a combined `state` is returned. The `state` is one of:\n\n        *   **failure** if any of the contexts report as `error` or `failure`\n        *   **pending** if there are no statuses or a context is `pending`\n        *   **success** if the latest status for all contexts is `success`\n      tags:\n      - repos\n      operationId: repos/get-combined-status-for-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statuses/#get-the-combined-status-for-a-specific-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/combined-commit-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/combined-commit-status\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/statuses/{sha}\":\n    post:\n      summary: Create a commit status\n      description: |-\n        Users with push access in a repository can create commit statuses for a given SHA.\n\n        Note: there is a limit of 1000 statuses per `sha` and `context` within a repository. Attempts to create more than 1000 statuses will result in a validation error.\n      tags:\n      - repos\n      operationId: repos/create-commit-status\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statuses/#create-a-commit-status\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: sha\n        description: sha parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                state:\n                  type: string\n                  description: The state of the status. Can be one of `error`, `failure`,\n                    `pending`, or `success`.\n                  enum:\n                  - error\n                  - failure\n                  - pending\n                  - success\n                target_url:\n                  type: string\n                  description: \"The target URL to associate with this status. This\n                    URL will be linked from the GitHub UI to allow users to easily\n                    see the source of the status.  \\nFor example, if your continuous\n                    integration system is posting build status, you would want to\n                    provide the deep link for the build output for this specific SHA:\n                    \\ \\n`http://ci.example.com/user/repo/build/sha`\"\n                description:\n                  type: string\n                  description: A short description of the status.\n                context:\n                  type: string\n                  description: A string label to differentiate this status from the\n                    status of other systems.\n                  default: default\n              required:\n              - state\n            example:\n              state: success\n              target_url: https://example.com/build/status\n              description: The build succeeded!\n              context: continuous-integration/jenkins\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/status\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n              schema:\n                type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/deployments/{deployment_id}/statuses\":\n    post:\n      summary: Create a deployment status\n      description: |-\n        Users with `push` access can create deployment statuses for a given deployment.\n\n        GitHub Apps require `read & write` access to \"Deployments\" and `read-only` access to \"Repo contents\" (for private repos). OAuth Apps require the `repo_deployment` scope.\n      tags:\n      - repos\n      operationId: repos/create-deployment-status\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/deployments/#create-a-deployment-status\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/deployment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                state:\n                  type: string\n                  description: The state of the status. Can be one of `error`, `failure`,\n                    `inactive`, `in_progress`, `queued` `pending`, or `success`. **Note:**\n                    To use the `inactive` state, you must provide the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type. To use the `in_progress` and `queued` states,\n                    you must provide the [`application/vnd.github.flash-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#deployment-statuses)\n                    custom media type. When you set a transient deployment to `inactive`,\n                    the deployment will be shown as `destroyed` in GitHub.\n                  enum:\n                  - error\n                  - failure\n                  - inactive\n                  - in_progress\n                  - queued\n                  - pending\n                  - success\n                target_url:\n                  type: string\n                  description: The target URL to associate with this status. This\n                    URL should contain output to keep the user updated while the task\n                    is running or serve as historical information for what happened\n                    in the deployment. **Note:** It's recommended to use the `log_url`\n                    parameter, which replaces `target_url`.\n                  default: ''\n                log_url:\n                  type: string\n                  description: \"The full URL of the deployment's output. This parameter\n                    replaces `target_url`. We will continue to accept `target_url`\n                    to support legacy uses, but we recommend replacing `target_url`\n                    with `log_url`. Setting `log_url` will automatically set `target_url`\n                    to the same value. Default: `\\\"\\\"`  \\n**Note:** This parameter\n                    requires you to use the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type. **Note:** This parameter requires you to use\n                    the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type.\"\n                  default: ''\n                description:\n                  type: string\n                  description: A short description of the status. The maximum description\n                    length is 140 characters.\n                  default: ''\n                environment:\n                  type: string\n                  description: Name for the target deployment environment, which can\n                    be changed when setting a deploy status. For example, `production`,\n                    `staging`, or `qa`. **Note:** This parameter requires you to use\n                    the [`application/vnd.github.flash-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#deployment-statuses)\n                    custom media type.\n                  enum:\n                  - production\n                  - staging\n                  - qa\n                environment_url:\n                  type: string\n                  description: \"Sets the URL for accessing your environment. Default:\n                    `\\\"\\\"`  \\n**Note:** This parameter requires you to use the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type. **Note:** This parameter requires you to use\n                    the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type.\"\n                  default: ''\n                auto_inactive:\n                  type: boolean\n                  description: \"Adds a new `inactive` status to all prior non-transient,\n                    non-production environment deployments with the same repository\n                    and `environment` name as the created status's deployment. An\n                    `inactive` status is only added to deployments that had a `success`\n                    state. Default: `true`  \\n**Note:** To add an `inactive` status\n                    to `production` environments, you must use the [`application/vnd.github.flash-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#deployment-statuses)\n                    custom media type.  \\n**Note:** This parameter requires you to\n                    use the [`application/vnd.github.ant-man-preview+json`](https://developer.github.com/enterprise/2.20/v3/previews/#enhanced-deployments)\n                    custom media type.\"\n              required:\n              - state\n            example:\n              environment: production\n              state: success\n              log_url: https://example.com/deployment/42/output\n              description: Deployment finished successfully.\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/deployment-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deployment-status\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/example/deployments/42/statuses/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: flash\n          note: |-\n            New features in the Deployments API on GitHub are currently available during a public beta. Please see the [blog post](https://developer.github.com/changes/2018-10-16-deployments-environments-states-and-auto-inactive-updates/) for full details.\n\n            To access the new `environment` parameter, the two new values for the `state` parameter (`in_progress` and `queued`), and use `auto_inactive` on production deployments during the public beta period, you must provide the following custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.flash-preview+json\n            ```\n        - required: false\n          name: ant-man\n          note: |-\n            The `inactive` state and the `log_url`, `environment_url`, and `auto_inactive` parameters are currently available for developers to preview. Please see the [blog post](https://developer.github.com/changes/2016-04-06-deployment-and-deployment-status-enhancements) for full details.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.ant-man-preview+json\n            ```\n    get:\n      summary: List deployment statuses\n      description: 'Users with pull access can view deployment statuses for a deployment:'\n      tags:\n      - repos\n      operationId: repos/list-deployment-statuses\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/deployments/#list-deployment-statuses\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/deployment_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/deployment-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/deployment-status-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: flash\n          note: |-\n            New features in the Deployments API on GitHub are currently available during a public beta. Please see the [blog post](https://developer.github.com/changes/2018-10-16-deployments-environments-states-and-auto-inactive-updates/) for full details.\n\n            To access the new `environment` parameter, the two new values for the `state` parameter (`in_progress` and `queued`), and use `auto_inactive` on production deployments during the public beta period, you must provide the following custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.flash-preview+json\n            ```\n        - required: false\n          name: ant-man\n          note: |-\n            The `inactive` state and the `log_url`, `environment_url`, and `auto_inactive` parameters are currently available for developers to preview. Please see the [blog post](https://developer.github.com/changes/2016-04-06-deployment-and-deployment-status-enhancements) for full details.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.ant-man-preview+json\n            ```\n  \"/repos/{owner}/{repo}/tarball/{ref}\":\n    get:\n      summary: Download a repository archive (tar)\n      description: |-\n        Gets a redirect URL to download a tar archive for a repository. If you omit `:ref`, the repository’s default branch (usually\n        `master`) will be used. Please make sure your HTTP framework is configured to follow redirects or you will need to use\n        the `Location` header to make a second `GET` request.\n        **Note**: For private repositories, these links are temporary and expire after five minutes.\n      tags:\n      - repos\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/contents/#download-a-repository-archive\n      operationId: repos/download-tarball-archive\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '302':\n          description: response\n          headers:\n            Location:\n              example: https://codeload.github.com/me/myprivate/legacy.zip/master?login=me&token=thistokenexpires\n              schema:\n                type: string\n  \"/repos/{owner}/{repo}/stats/contributors\":\n    get:\n      summary: Get all contributor commit activity\n      description: |2-\n\n        Returns the `total` number of commits authored by the contributor. In addition, the response includes a Weekly Hash (`weeks` array) with the following information:\n\n        *   `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n        *   `a` - Number of additions\n        *   `d` - Number of deletions\n        *   `c` - Number of commits\n      tags:\n      - repos\n      operationId: repos/get-contributors-stats\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statistics/#get-all-contributor-commit-activity\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: |-\n            *   `w` - Start of the week, given as a [Unix timestamp](http://en.wikipedia.org/wiki/Unix_time).\n            *   `a` - Number of additions\n            *   `d` - Number of deletions\n            *   `c` - Number of commits\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/contributor-activity\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/contributor-activity-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/readme\":\n    get:\n      summary: Get a repository README\n      description: |-\n        Gets the preferred README for a repository.\n\n        READMEs support [custom media types](https://developer.github.com/enterprise/2.20/v3/repos/contents/#custom-media-types) for retrieving the raw content or rendered HTML.\n      tags:\n      - repos\n      operationId: repos/get-readme\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/contents/#get-a-repository-readme\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: 'The name of the commit/branch/tag. Default: the repository’s\n          default branch (usually `master`)'\n        in: query\n        required: false\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/content-file\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/content-file\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/comments\":\n    get:\n      summary: List commit comments for a repository\n      description: |-\n        Commit Comments use [these custom media types](https://developer.github.com/enterprise/2.20/v3/repos/comments/#custom-media-types). You can read more about the use of media types in the API [here](https://developer.github.com/enterprise/2.20/v3/media/).\n\n        Comments are ordered by ascending ID.\n      tags:\n      - repos\n      operationId: repos/list-commit-comments-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/comments/#list-commit-comments-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/commit-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/commits/{ref}\":\n    get:\n      summary: Get a commit\n      description: |-\n        Returns the contents of a single commit reference. You must have `read` access for the repository to use this endpoint.\n\n        You can pass the appropriate [media type](https://developer.github.com/enterprise/2.20/v3/media/#commits-commit-comparison-and-pull-requests) to fetch `diff` and `patch` formats. Diffs with binary data will have no `patch` property.\n\n        To return only the SHA-1 hash of the commit reference, you can provide the `sha` custom [media type](https://developer.github.com/enterprise/2.20/v3/media/#commits-commit-comparison-and-pull-requests) in the `Accept` header. You can use this endpoint to check if a remote reference's SHA-1 hash is the same as your local reference's SHA-1 hash by providing the local SHA-1 reference as the ETag.\n\n        **Signature verification object**\n\n        The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:\n\n        These are the possible values for `reason` in the `verification` object:\n\n        | Value                    | Description                                                                                                                       |\n        | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n        | `expired_key`            | The key that made the signature is expired.                                                                                       |\n        | `not_signing_key`        | The \"signing\" flag is not among the usage flags in the GPG key that made the signature.                                           |\n        | `gpgverify_error`        | There was an error communicating with the signature verification service.                                                         |\n        | `gpgverify_unavailable`  | The signature verification service is currently unavailable.                                                                      |\n        | `unsigned`               | The object does not include a signature.                                                                                          |\n        | `unknown_signature_type` | A non-PGP signature was found in the commit.                                                                                      |\n        | `no_user`                | No user was associated with the `committer` email address in the commit.                                                          |\n        | `unverified_email`       | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |\n        | `bad_email`              | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature.             |\n        | `unknown_key`            | The key that made the signature has not been registered with any user's account.                                                  |\n        | `malformed_signature`    | There was an error parsing the signature.                                                                                         |\n        | `invalid`                | The signature could not be cryptographically verified using the key whose key-id was found in the signature.                      |\n        | `valid`                  | None of the above errors applied, so the signature is considered to be verified.                                                  |\n      tags:\n      - repos\n      operationId: repos/get-commit\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/commits/#get-a-commit\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '500':\n          \"$ref\": \"#/components/responses/internal_error\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/releases/latest\":\n    get:\n      summary: Get the latest release\n      description: |-\n        View the latest published full release for the repository.\n\n        The latest release is the most recent non-prerelease, non-draft release, sorted by the `created_at` attribute. The `created_at` attribute is the date of the commit used for the release, and not the date when the release was drafted or published.\n      tags:\n      - repos\n      operationId: repos/get-latest-release\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/releases/#get-the-latest-release\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/release\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/release\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/stats/code_frequency\":\n    get:\n      summary: Get the weekly commit activity\n      description: Returns a weekly aggregate of the number of additions and deletions\n        pushed to a repository.\n      tags:\n      - repos\n      operationId: repos/get-code-frequency-stats\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/statistics/#get-the-weekly-commit-activity\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: Returns a weekly aggregate of the number of additions and deletions\n            pushed to a repository.\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/code-frequency-stat\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-frequency-stat-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/contributors\":\n    get:\n      summary: List repository contributors\n      description: |-\n        Lists contributors to the specified repository and sorts them by the number of commits per contributor in descending order. This endpoint may return information that is a few hours old because the GitHub REST API v3 caches contributor data to improve performance.\n\n        GitHub identifies contributors by author email address. This endpoint groups contribution counts by GitHub user, which includes all associated email addresses. To improve performance, only the first 500 author email addresses in the repository link to GitHub users. The rest will appear as anonymous contributors without associated GitHub user information.\n      tags:\n      - repos\n      operationId: repos/list-contributors\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/#list-repository-contributors\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: anon\n        description: Set to `1` or `true` to include anonymous contributors in results.\n        in: query\n        required: false\n        schema:\n          type: string\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: Response if repository contains content\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/contributor\"\n              examples:\n                response-if-repository-contains-content:\n                  \"$ref\": \"#/components/examples/contributor-items-response-if-repository-contains-content\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '204':\n          description: Response if repository is empty\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/collaborators\":\n    get:\n      summary: List repository collaborators\n      description: |-\n        For organization-owned repositories, the list of collaborators includes outside collaborators, organization members that are direct collaborators, organization members with access through team memberships, organization members with access through default organization permissions, and organization owners.\n\n        Team members will include the members of child teams.\n      tags:\n      - repos\n      operationId: repos/list-collaborators\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/collaborators/#list-repository-collaborators\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: affiliation\n        description: \"Filter collaborators returned by their affiliation. Can be one\n          of:  \\n\\\\* `outside`: All outside collaborators of an organization-owned\n          repository.  \\n\\\\* `direct`: All collaborators with permissions to an organization-owned\n          repository, regardless of organization membership status.  \\n\\\\* `all`:\n          All collaborators the authenticated user can see.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - outside\n          - direct\n          - all\n          default: all\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/collaborator\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/collaborator-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/merges\":\n    post:\n      summary: Merge a branch\n      description: ''\n      tags:\n      - repos\n      operationId: repos/merge\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/merging/#merge-a-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                base:\n                  type: string\n                  description: The name of the base branch that the head will be merged\n                    into.\n                head:\n                  type: string\n                  description: The head to merge. This can be a branch name or a commit\n                    SHA1.\n                commit_message:\n                  type: string\n                  description: Commit message to use for the merge commit. If omitted,\n                    a default message will be used.\n              required:\n              - base\n              - head\n            example:\n              base: master\n              head: cool_feature\n              commit_message: Shipped cool_feature!\n      responses:\n        '201':\n          description: Successful Response (The resulting merge commit)\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit\"\n        '404':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                    example: '\"https://developer.github.com/enterprise/2.20/v3/repos/merging/#perform-a-merge\"'\n              examples:\n                missing-base-response:\n                  summary: Missing base response\n                  value:\n                    message: Base does not exist\n                missing-head-response:\n                  summary: Missing head response\n                  value:\n                    message: Head does not exist\n        '409':\n          description: Merge conflict response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                    example: '\"https://developer.github.com/enterprise/2.20/v3/repos/merging/#perform-a-merge\"'\n              examples:\n                merge-conflict-response:\n                  value:\n                    message: Merge Conflict\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/collaborators/{username}/permission\":\n    get:\n      summary: Get repository permissions for a user\n      description: Checks the repository permission of a collaborator. The possible\n        repository permissions are `admin`, `write`, `read`, and `none`.\n      tags:\n      - repos\n      operationId: repos/get-collaborator-permission-level\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/repos/collaborators/#get-repository-permissions-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: Response if user has admin permissions\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-collaborator-permission\"\n              examples:\n                response-if-user-has-admin-permissions:\n                  \"$ref\": \"#/components/examples/repository-collaborator-permission-response-if-user-has-admin-permissions\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/license\":\n    get:\n      summary: Get the license for a repository\n      description: |-\n        This method returns the contents of the repository's license file, if one is detected.\n\n        Similar to [Get repository content](https://developer.github.com/enterprise/2.20/v3/repos/contents/#get-repository-content), this method also supports [custom media types](https://developer.github.com/enterprise/2.20/v3/repos/contents/#custom-media-types) for retrieving the raw license content or rendered license HTML.\n      tags:\n      - licenses\n      operationId: licenses/get-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/licenses/#get-the-license-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/license-content\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/license-content\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/licenses/{license}\":\n    get:\n      summary: Get a license\n      description: ''\n      tags:\n      - licenses\n      operationId: licenses/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/licenses/#get-a-license\n      parameters:\n      - name: license\n        description: license parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/license\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/license\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/licenses\":\n    get:\n      summary: Get all commonly used licenses\n      description: ''\n      tags:\n      - licenses\n      operationId: licenses/get-all-commonly-used\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/licenses/#get-all-commonly-used-licenses\n      parameters:\n      - name: featured\n        in: query\n        required: false\n        schema:\n          type: boolean\n      - \"$ref\": \"#/components/parameters/per_page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/license-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/license-simple-items\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/subscription\":\n    get:\n      summary: Get a repository subscription\n      description: ''\n      tags:\n      - activity\n      operationId: activity/get-repo-subscription\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/watching/#get-a-repository-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: Response if you subscribe to the repository\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-subscription\"\n              examples:\n                response-if-you-subscribe-to-the-repository:\n                  \"$ref\": \"#/components/examples/repository-subscription-response-if-you-subscribe-to-the-repository\"\n        '404':\n          description: Response if you don't subscribe to the repository\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    put:\n      summary: Set a repository subscription\n      description: If you would like to watch a repository, set `subscribed` to `true`.\n        If you would like to ignore notifications made within a repository, set `ignored`\n        to `true`. If you would like to stop watching a repository, [delete the repository's\n        subscription](https://developer.github.com/enterprise/2.20/v3/activity/watching/#delete-a-repository-subscription)\n        completely.\n      tags:\n      - activity\n      operationId: activity/set-repo-subscription\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/watching/#set-a-repository-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                subscribed:\n                  type: boolean\n                  description: Determines if notifications should be received from\n                    this repository.\n                ignored:\n                  type: boolean\n                  description: Determines if all notifications should be blocked from\n                    this repository.\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-subscription\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-subscription\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Delete a repository subscription\n      description: This endpoint should only be used to stop watching a repository.\n        To control whether or not you wish to receive notifications from a repository,\n        [set the repository's subscription manually](https://developer.github.com/enterprise/2.20/v3/activity/watching/#set-a-repository-subscription).\n      tags:\n      - activity\n      operationId: activity/delete-repo-subscription\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/watching/#delete-a-repository-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/networks/{owner}/{repo}/events\":\n    get:\n      summary: List public events for a network of repositories\n      description: ''\n      tags:\n      - activity\n      operationId: activity/list-public-events-for-repo-network\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-public-events-for-a-network-of-repositories\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/events\":\n    get:\n      summary: List repository events\n      description: ''\n      tags:\n      - activity\n      operationId: activity/list-repo-events\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-repository-events\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/events\":\n    get:\n      summary: List public events\n      description: We delay the public events feed by five minutes, which means the\n        most recent event returned by the public events API actually occurred at least\n        five minutes ago.\n      tags:\n      - activity\n      operationId: activity/list-public-events\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-public-events\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/starred/{owner}/{repo}\":\n    delete:\n      summary: Unstar a repository for the authenticated user\n      description: ''\n      tags:\n      - activity\n      operationId: activity/unstar-repo-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/starring/#unstar-a-repository-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    put:\n      summary: Star a repository for the authenticated user\n      description: Note that you'll need to set `Content-Length` to zero when calling\n        out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      tags:\n      - activity\n      operationId: activity/star-repo-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/starring/#star-a-repository-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Check if a repository is starred by the authenticated user\n      description: ''\n      tags:\n      - activity\n      operationId: activity/check-repo-is-starred-by-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/starring/#check-if-a-repository-is-starred-by-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Response if this repository is starred by you\n        '404':\n          description: Response if this repository is not starred by you\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/basic-error\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/events/public\":\n    get:\n      summary: List public events for a user\n      description: ''\n      tags:\n      - activity\n      operationId: activity/list-public-events-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-public-events-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/notifications\":\n    get:\n      summary: List repository notifications for the authenticated user\n      description: List all notifications for the current user.\n      tags:\n      - activity\n      operationId: activity/list-repo-notifications-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#list-repository-notifications-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/all\"\n      - \"$ref\": \"#/components/parameters/participating\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/before\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/thread\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/thread-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    put:\n      summary: Mark repository notifications as read\n      description: Marks all notifications in a repository as \"read\" removes them\n        from the [default view on GitHub Enterprise Server](https://github.com/notifications).\n        If the number of notifications is too large to complete in one request, you\n        will receive a `202 Accepted` status and GitHub Enterprise Server will run\n        an asynchronous process to mark notifications as \"read.\" To check whether\n        any \"unread\" notifications remain, you can use the [List repository notifications\n        for the authenticated user](https://developer.github.com/enterprise/2.20/v3/activity/notifications/#list-repository-notifications-for-the-authenticated-user)\n        endpoint and pass the query parameter `all=false`.\n      tags:\n      - activity\n      operationId: activity/mark-repo-notifications-as-read\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#mark-repository-notifications-as-read\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                last_read_at:\n                  type: string\n                  description: 'Describes the last point that notifications were checked.\n                    Anything updated since this time will not be marked as read. If\n                    you omit this parameter, all notifications are marked as read.\n                    This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)\n                    format: `YYYY-MM-DDTHH:MM:SSZ`. Default: The current timestamp.'\n      responses:\n        '202':\n          description: response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/repos/{owner}/{repo}/subscribers\":\n    get:\n      summary: List watchers\n      description: Lists the people watching the specified repository.\n      tags:\n      - activity\n      operationId: activity/list-watchers-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/watching/#list-watchers\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/events/orgs/{org}\":\n    get:\n      summary: List organization events for the authenticated user\n      description: This is the user's organization dashboard. You must be authenticated\n        as the user to view this.\n      tags:\n      - activity\n      operationId: activity/list-org-events-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-organization-events-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/orgs/{org}/events\":\n    get:\n      summary: List public organization events\n      description: ''\n      tags:\n      - activity\n      operationId: activity/list-public-org-events\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-public-organization-events\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/feeds\":\n    get:\n      summary: Get feeds\n      description: |-\n        GitHub Enterprise Server provides several timeline resources in [Atom](http://en.wikipedia.org/wiki/Atom_(standard)) format. The Feeds API lists all the feeds available to the authenticated user:\n\n        *   **Timeline**: The GitHub Enterprise Server global public timeline\n        *   **User**: The public timeline for any user, using [URI template](https://developer.github.com/enterprise/2.20/v3/#hypermedia)\n        *   **Current user public**: The public timeline for the authenticated user\n        *   **Current user**: The private timeline for the authenticated user\n        *   **Current user actor**: The private timeline for activity created by the authenticated user\n        *   **Current user organizations**: The private timeline for the organizations the authenticated user is a member of.\n        *   **Security advisories**: A collection of public announcements that provide information about security-related vulnerabilities in software on GitHub Enterprise Server.\n\n        **Note**: Private feeds are only returned when [authenticating via Basic Auth](https://developer.github.com/enterprise/2.20/v3/#basic-authentication) since current feed URIs use the older, non revocable auth tokens.\n      tags:\n      - activity\n      operationId: activity/get-feeds\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/feeds/#get-feeds\n      parameters: []\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/feed\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/feed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/received_events\":\n    get:\n      summary: List events received by the authenticated user\n      description: These are events that you've received by watching repos and following\n        users. If you are authenticated as the given user, you will see private events.\n        Otherwise, you'll only see public events.\n      tags:\n      - activity\n      operationId: activity/list-received-events-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-events-received-by-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/starred\":\n    get:\n      summary: List repositories starred by a user\n      description: |-\n        Lists repositories a user has starred.\n\n        You can also find out _when_ stars were created by passing the following custom [media type](https://developer.github.com/enterprise/2.20/v3/media/) via the `Accept` header:\n      tags:\n      - activity\n      operationId: activity/list-repos-starred-by-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/starring/#list-repositories-starred-by-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/sort\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/repository-items-default-response\"\n            application/vnd.github.v3.star+json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/starred-repository\"\n              examples:\n                alternative-response-with-star-creation-timestamps:\n                  \"$ref\": \"#/components/examples/starred-repository-items-alternative-response-with-star-creation-timestamps\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/subscriptions\":\n    get:\n      summary: List repositories watched by a user\n      description: Lists repositories a user is watching.\n      tags:\n      - activity\n      operationId: activity/list-repos-watched-by-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/watching/#list-repositories-watched-by-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/notifications/threads/{thread_id}\":\n    get:\n      summary: Get a thread\n      description: ''\n      tags:\n      - activity\n      operationId: activity/get-thread\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#get-a-thread\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/thread\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/thread\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    patch:\n      summary: Mark a thread as read\n      description: ''\n      tags:\n      - activity\n      operationId: activity/mark-thread-as-read\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#mark-a-thread-as-read\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread_id\"\n      responses:\n        '205':\n          description: response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/notifications/threads/{thread_id}/subscription\":\n    get:\n      summary: Get a thread subscription for the authenticated user\n      description: |-\n        This checks to see if the current user is subscribed to a thread. You can also [get a repository subscription](https://developer.github.com/enterprise/2.20/v3/activity/watching/#get-a-repository-subscription).\n\n        Note that subscriptions are only generated if a user is participating in a conversation--for example, they've replied to the thread, were **@mentioned**, or manually subscribe to a thread.\n      tags:\n      - activity\n      operationId: activity/get-thread-subscription-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#get-a-thread-subscription-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/thread-subscription\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/thread-subscription\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Delete a thread subscription\n      description: Mutes all future notifications for a conversation until you comment\n        on the thread or get an **@mention**. If you are watching the repository of\n        the thread, you will still receive notifications. To ignore future notifications\n        for a repository you are watching, use the [Set a thread subscription](https://developer.github.com/enterprise/2.20/v3/activity/notifications/#set-a-thread-subscription)\n        endpoint and set `ignore` to `true`.\n      tags:\n      - activity\n      operationId: activity/delete-thread-subscription\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#delete-a-thread-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    put:\n      summary: Set a thread subscription\n      description: |-\n        If you are watching a repository, you receive notifications for all threads by default. Use this endpoint to ignore future notifications for threads until you comment on the thread or get an **@mention**.\n\n        You can also use this endpoint to subscribe to threads that you are currently not receiving notifications for or to subscribed to threads that you have previously ignored.\n\n        Unsubscribing from a conversation in a repository that you are not watching is functionally equivalent to the [Delete a thread subscription](https://developer.github.com/enterprise/2.20/v3/activity/notifications/#delete-a-thread-subscription) endpoint.\n      tags:\n      - activity\n      operationId: activity/set-thread-subscription\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#set-a-thread-subscription\n      parameters:\n      - \"$ref\": \"#/components/parameters/thread_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                ignored:\n                  description: Whether to block all notifications from a thread.\n                  default: false\n                  type: boolean\n              type: object\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/thread-subscription\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/thread-subscription\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/events\":\n    get:\n      summary: List events for the authenticated user\n      description: If you are authenticated as the given user, you will see your private\n        events. Otherwise, you'll only see public events.\n      tags:\n      - activity\n      operationId: activity/list-events-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-events-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/notifications\":\n    get:\n      summary: List notifications for the authenticated user\n      description: List all notifications for the current user, sorted by most recently\n        updated.\n      tags:\n      - activity\n      operationId: activity/list-notifications-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#list-notifications-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/all\"\n      - \"$ref\": \"#/components/parameters/participating\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/before\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/thread\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/thread-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    put:\n      summary: Mark notifications as read\n      description: Marks all notifications as \"read\" removes it from the [default\n        view on GitHub Enterprise Server](https://github.com/notifications). If the\n        number of notifications is too large to complete in one request, you will\n        receive a `202 Accepted` status and GitHub Enterprise Server will run an asynchronous\n        process to mark notifications as \"read.\" To check whether any \"unread\" notifications\n        remain, you can use the [List notifications for the authenticated user](https://developer.github.com/enterprise/2.20/v3/activity/notifications/#list-notifications-for-the-authenticated-user)\n        endpoint and pass the query parameter `all=false`.\n      tags:\n      - activity\n      operationId: activity/mark-notifications-as-read\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/notifications/#mark-notifications-as-read\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                last_read_at:\n                  description: Describes the last point that notifications were checked.\n                  type: string\n                  format: date-time\n                read:\n                  description: Whether the notification has been read.\n                  type: boolean\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n        '205':\n          description: response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/subscriptions\":\n    get:\n      summary: List repositories watched by the authenticated user\n      description: Lists repositories the authenticated user is watching.\n      tags:\n      - activity\n      operationId: activity/list-watched-repos-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/watching/#list-repositories-watched-by-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/starred\":\n    get:\n      summary: List repositories starred by the authenticated user\n      description: |-\n        Lists repositories the authenticated user has starred.\n\n        You can also find out _when_ stars were created by passing the following custom [media type](https://developer.github.com/enterprise/2.20/v3/media/) via the `Accept` header:\n      tags:\n      - activity\n      operationId: activity/list-repos-starred-by-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/starring/#list-repositories-starred-by-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/sort\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/repository-items-default-response\"\n            application/vnd.github.v3.star+json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/starred-repository\"\n              examples:\n                alternative-response-with-star-creation-timestamps:\n                  \"$ref\": \"#/components/examples/starred-repository-items-alternative-response-with-star-creation-timestamps\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/repos/{owner}/{repo}/stargazers\":\n    get:\n      summary: List stargazers\n      description: |-\n        Lists the people that have starred the repository.\n\n        You can also find out _when_ stars were created by passing the following custom [media type](https://developer.github.com/enterprise/2.20/v3/media/) via the `Accept` header:\n      tags:\n      - activity\n      operationId: activity/list-stargazers-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/starring/#list-stargazers\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/simple-user-items-default-response\"\n            application/vnd.github.v3.star+json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/stargazer\"\n              examples:\n                alternative-response-with-star-creation-timestamps:\n                  \"$ref\": \"#/components/examples/stargazer-items-alternative-response-with-star-creation-timestamps\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/received_events/public\":\n    get:\n      summary: List public events received by a user\n      description: ''\n      tags:\n      - activity\n      operationId: activity/list-received-public-events-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/activity/events/#list-public-events-received-by-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/event\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/check-runs/{check_run_id}/annotations\":\n    get:\n      summary: List check run annotations\n      description: Lists annotations for a check run using the annotation `id`. GitHub\n        Apps must have the `checks:read` permission on a private repository or pull\n        access to a public repository to get annotations for a check run. OAuth Apps\n        and authenticated users must have the `repo` scope to get annotations for\n        a check run in a private repository.\n      tags:\n      - checks\n      operationId: checks/list-annotations\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/runs/#list-check-run-annotations\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/check_run_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/check-annotation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-annotation-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/commits/{ref}/check-suites\":\n    get:\n      summary: List check suites for a Git reference\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array and a `null` value for `head_branch`.\n\n        Lists check suites for a commit `ref`. The `ref` can be a SHA, branch name, or a tag name. GitHub Apps must have the `checks:read` permission on a private repository or pull access to a public repository to list check suites. OAuth Apps and authenticated users must have the `repo` scope to get check suites in a private repository.\n      tags:\n      - checks\n      operationId: checks/list-suites-for-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/suites/#list-check-suites-for-a-git-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: app_id\n        description: Filters check suites by GitHub App `id`.\n        in: query\n        required: false\n        schema:\n          type: integer\n        example: 1\n      - \"$ref\": \"#/components/parameters/check_name\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  check_suites:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/check-suite\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-suite-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/commits/{ref}/check-runs\":\n    get:\n      summary: List check runs for a Git reference\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.\n\n        Lists check runs for a commit ref. The `ref` can be a SHA, branch name, or a tag name. GitHub Apps must have the `checks:read` permission on a private repository or pull access to a public repository to get check runs. OAuth Apps and authenticated users must have the `repo` scope to get check runs in a private repository.\n      tags:\n      - checks\n      operationId: checks/list-for-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/runs/#list-check-runs-for-a-git-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - \"$ref\": \"#/components/parameters/check_name\"\n      - \"$ref\": \"#/components/parameters/status\"\n      - name: filter\n        description: Filters check runs by their `completed_at` timestamp. Can be\n          one of `latest` (returning the most recent check runs) or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - latest\n          - all\n          default: latest\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  check_runs:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/check-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-run-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/check-suites/{check_suite_id}/check-runs\":\n    get:\n      summary: List check runs in a check suite\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.\n\n        Lists check runs for a check suite using its `id`. GitHub Apps must have the `checks:read` permission on a private repository or pull access to a public repository to get check runs. OAuth Apps and authenticated users must have the `repo` scope to get check runs in a private repository.\n      tags:\n      - checks\n      operationId: checks/list-for-suite\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/runs/#list-check-runs-in-a-check-suite\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/check_suite_id\"\n      - \"$ref\": \"#/components/parameters/check_name\"\n      - \"$ref\": \"#/components/parameters/status\"\n      - name: filter\n        description: Filters check runs by their `completed_at` timestamp. Can be\n          one of `latest` (returning the most recent check runs) or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - latest\n          - all\n          default: latest\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  check_runs:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/check-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-run-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/check-runs/{check_run_id}\":\n    get:\n      summary: Get a check run\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.\n\n        Gets a single check run using its `id`. GitHub Apps must have the `checks:read` permission on a private repository or pull access to a public repository to get check runs. OAuth Apps and authenticated users must have the `repo` scope to get check runs in a private repository.\n      tags:\n      - checks\n      operationId: checks/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/runs/#get-a-check-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/check_run_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/check-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-run\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n    patch:\n      summary: Update a check run\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.\n\n        Updates a check run for a specific commit in a repository. Your GitHub App must have the `checks:write` permission to edit check runs.\n      tags:\n      - checks\n      operationId: checks/update\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/runs/#update-a-check-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/check_run_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the check. For example, \"code-coverage\".\n                details_url:\n                  type: string\n                  description: The URL of the integrator's site that has the full\n                    details of the check.\n                external_id:\n                  type: string\n                  description: A reference for the run on the integrator's system.\n                started_at:\n                  type: string\n                  description: 'This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)\n                    format: `YYYY-MM-DDTHH:MM:SSZ`.'\n                status:\n                  type: string\n                  description: The current status. Can be one of `queued`, `in_progress`,\n                    or `completed`.\n                  enum:\n                  - queued\n                  - in_progress\n                  - completed\n                conclusion:\n                  type: string\n                  description: \"**Required if you provide `completed_at` or a `status`\n                    of `completed`**. The final conclusion of the check. Can be one\n                    of `success`, `failure`, `neutral`, `cancelled`, `skipped`, `timed_out`,\n                    or `action_required`.  \\n**Note:** Providing `conclusion` will\n                    automatically set the `status` parameter to `completed`. Only\n                    GitHub can change a check run conclusion to `stale`.\"\n                  enum:\n                  - success\n                  - failure\n                  - neutral\n                  - cancelled\n                  - skipped\n                  - timed_out\n                  - action_required\n                completed_at:\n                  type: string\n                  description: 'The time the check completed. This is a timestamp\n                    in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n                    `YYYY-MM-DDTHH:MM:SSZ`.'\n                output:\n                  type: object\n                  description: Check runs can accept a variety of data in the `output`\n                    object, including a `title` and `summary` and can optionally provide\n                    descriptive details about the run. See the [`output` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#output-object-1)\n                    description.\n                  properties:\n                    title:\n                      type: string\n                      description: \"**Required**.\"\n                    summary:\n                      type: string\n                      description: Can contain Markdown.\n                    text:\n                      type: string\n                      description: Can contain Markdown.\n                    annotations:\n                      type: array\n                      description: Adds information from your analysis to specific\n                        lines of code. Annotations are visible in GitHub's pull request\n                        UI. Annotations are visible in GitHub's pull request UI. The\n                        Checks API limits the number of annotations to a maximum of\n                        50 per API request. To create more than 50 annotations, you\n                        have to make multiple requests to the [Update a check run](https://developer.github.com/enterprise/2.20/v3/checks/runs/#update-a-check-run)\n                        endpoint. Each time you update the check run, annotations\n                        are appended to the list of annotations that already exist\n                        for the check run. For details about annotations in the UI,\n                        see \"[About status checks](https://help.github.com/articles/about-status-checks#checks)\".\n                        See the [`annotations` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#annotations-object-1)\n                        description for details.\n                      items:\n                        type: object\n                        properties:\n                          path:\n                            type: string\n                            description: The path of the file to add an annotation\n                              to. For example, `assets/css/main.css`.\n                          start_line:\n                            type: integer\n                            description: The start line of the annotation.\n                          end_line:\n                            type: integer\n                            description: The end line of the annotation.\n                          start_column:\n                            type: integer\n                            description: The start column of the annotation. Annotations\n                              only support `start_column` and `end_column` on the\n                              same line. Omit this parameter if `start_line` and `end_line`\n                              have different values.\n                          end_column:\n                            type: integer\n                            description: The end column of the annotation. Annotations\n                              only support `start_column` and `end_column` on the\n                              same line. Omit this parameter if `start_line` and `end_line`\n                              have different values.\n                          annotation_level:\n                            type: string\n                            description: The level of the annotation. Can be one of\n                              `notice`, `warning`, or `failure`.\n                            enum:\n                            - notice\n                            - warning\n                            - failure\n                          message:\n                            type: string\n                            description: A short description of the feedback for these\n                              lines of code. The maximum size is 64 KB.\n                          title:\n                            type: string\n                            description: The title that represents the annotation.\n                              The maximum size is 255 characters.\n                          raw_details:\n                            type: string\n                            description: Details about this annotation. The maximum\n                              size is 64 KB.\n                        required:\n                        - path\n                        - start_line\n                        - end_line\n                        - annotation_level\n                        - message\n                    images:\n                      type: array\n                      description: Adds images to the output displayed in the GitHub\n                        pull request UI. See the [`images` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#annotations-object-1)\n                        description for details.\n                      items:\n                        type: object\n                        properties:\n                          alt:\n                            type: string\n                            description: The alternative text for the image.\n                          image_url:\n                            type: string\n                            description: The full URL of the image.\n                          caption:\n                            type: string\n                            description: A short image description.\n                        required:\n                        - alt\n                        - image_url\n                  required:\n                  - summary\n                actions:\n                  type: array\n                  description: Possible further actions the integrator can perform,\n                    which a user may trigger. Each action includes a `label`, `identifier`\n                    and `description`. A maximum of three actions are accepted. See\n                    the [`actions` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#actions-object)\n                    description. To learn more about check runs and requested actions,\n                    see \"[Check runs and requested actions](https://developer.github.com/enterprise/2.20/v3/checks/runs/#check-runs-and-requested-actions).\"\n                  items:\n                    type: object\n                    properties:\n                      label:\n                        type: string\n                        description: The text to be displayed on a button in the web\n                          UI. The maximum size is 20 characters.\n                      description:\n                        type: string\n                        description: A short explanation of what this action would\n                          do. The maximum size is 40 characters.\n                      identifier:\n                        type: string\n                        description: A reference for the action on the integrator's\n                          system. The maximum size is 20 characters.\n                    required:\n                    - label\n                    - description\n                    - identifier\n            example:\n              name: mighty_readme\n              started_at: '2018-05-04T01:14:52Z'\n              status: completed\n              conclusion: success\n              completed_at: '2018-05-04T01:14:52Z'\n              output:\n                title: Mighty Readme report\n                summary: There are 0 failures, 2 warnings, and 1 notices.\n                text: You may have some misspelled words on lines 2 and 4. You also\n                  may want to add a section in your README about how to install your\n                  app.\n                annotations:\n                - path: README.md\n                  annotation_level: warning\n                  title: Spell Checker\n                  message: Check your spelling for 'banaas'.\n                  raw_details: Do you mean 'bananas' or 'banana'?\n                  start_line: 2\n                  end_line: 2\n                - path: README.md\n                  annotation_level: warning\n                  title: Spell Checker\n                  message: Check your spelling for 'aples'\n                  raw_details: Do you mean 'apples' or 'Naples'\n                  start_line: 4\n                  end_line: 4\n                images:\n                - alt: Super bananas\n                  image_url: http://example.com/images/42\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/check-run\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-run\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/check-suites\":\n    post:\n      summary: Create a check suite\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array and a `null` value for `head_branch`.\n\n        By default, check suites are automatically created when you create a [check run](https://developer.github.com/enterprise/2.20/v3/checks/runs/). You only need to use this endpoint for manually creating check suites when you've disabled automatic creation using \"[Update repository preferences for check suites](https://developer.github.com/enterprise/2.20/v3/checks/suites/#update-repository-preferences-for-check-suites)\". Your GitHub App must have the `checks:write` permission to create check suites.\n      tags:\n      - checks\n      operationId: checks/create-suite\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/suites/#create-a-check-suite\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                head_sha:\n                  type: string\n                  description: The sha of the head commit.\n              required:\n              - head_sha\n            example:\n              head_sha: d6fde92930d4715a2b49857d24b940956b26d2d3\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/check-suite\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-suite\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/check-suites/{check_suite_id}/rerequest\":\n    post:\n      summary: Rerequest a check suite\n      description: |-\n        Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the [`check_suite` webhook](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#check_suite) event with the action `rerequested`. When a check suite is `rerequested`, its `status` is reset to `queued` and the `conclusion` is cleared.\n\n        To rerequest a check suite, your GitHub App must have the `checks:read` permission on a private repository or pull access to a public repository.\n      tags:\n      - checks\n      operationId: checks/rerequest-suite\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/suites/#rerequest-a-check-suite\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/check_suite_id\"\n      responses:\n        '201':\n          description: response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/check-suites/preferences\":\n    patch:\n      summary: Update repository preferences for check suites\n      description: Changes the default automatic flow when creating check suites.\n        By default, a check suite is automatically created each time code is pushed\n        to a repository. When you disable the automatic creation of check suites,\n        you can manually [Create a check suite](https://developer.github.com/enterprise/2.20/v3/checks/suites/#create-a-check-suite).\n        You must have admin permissions in the repository to set preferences for check\n        suites.\n      tags:\n      - checks\n      operationId: checks/set-suites-preferences\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/suites/#update-repository-preferences-for-check-suites\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                auto_trigger_checks:\n                  type: array\n                  description: Enables or disables automatic creation of CheckSuite\n                    events upon pushes to the repository. Enabled by default. See\n                    the [`auto_trigger_checks` object](https://developer.github.com/enterprise/2.20/v3/checks/suites/#auto_trigger_checks-object)\n                    description for details.\n                  items:\n                    type: object\n                    properties:\n                      app_id:\n                        type: integer\n                        description: The `id` of the GitHub App.\n                      setting:\n                        type: boolean\n                        description: Set to `true` to enable automatic creation of\n                          CheckSuite events upon pushes to the repository, or `false`\n                          to disable them.\n                        default: true\n                    required:\n                    - app_id\n                    - setting\n            example:\n              auto_trigger_checks:\n              - app_id: 4\n                setting: false\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/check-suite-preference\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-suite-preference\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/check-runs\":\n    post:\n      summary: Create a check run\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array.\n\n        Creates a new check run for a specific commit in a repository. Your GitHub App must have the `checks:write` permission to create check runs.\n      tags:\n      - checks\n      operationId: checks/create\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/runs/#create-a-check-run\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the check. For example, \"code-coverage\".\n                head_sha:\n                  type: string\n                  description: The SHA of the commit.\n                details_url:\n                  type: string\n                  description: The URL of the integrator's site that has the full\n                    details of the check. If the integrator does not provide this,\n                    then the homepage of the GitHub app is used.\n                external_id:\n                  type: string\n                  description: A reference for the run on the integrator's system.\n                status:\n                  type: string\n                  description: The current status. Can be one of `queued`, `in_progress`,\n                    or `completed`.\n                  enum:\n                  - queued\n                  - in_progress\n                  - completed\n                  default: queued\n                started_at:\n                  type: string\n                  description: 'The time that the check run began. This is a timestamp\n                    in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n                    `YYYY-MM-DDTHH:MM:SSZ`.'\n                conclusion:\n                  type: string\n                  description: \"**Required if you provide `completed_at` or a `status`\n                    of `completed`**. The final conclusion of the check. Can be one\n                    of `success`, `failure`, `neutral`, `cancelled`, `skipped`, `timed_out`,\n                    or `action_required`. When the conclusion is `action_required`,\n                    additional details should be provided on the site specified by\n                    `details_url`.  \\n**Note:** Providing `conclusion` will automatically\n                    set the `status` parameter to `completed`. Only GitHub can change\n                    a check run conclusion to `stale`.\"\n                  enum:\n                  - success\n                  - failure\n                  - neutral\n                  - cancelled\n                  - skipped\n                  - timed_out\n                  - action_required\n                completed_at:\n                  type: string\n                  description: 'The time the check completed. This is a timestamp\n                    in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n                    `YYYY-MM-DDTHH:MM:SSZ`.'\n                output:\n                  type: object\n                  description: Check runs can accept a variety of data in the `output`\n                    object, including a `title` and `summary` and can optionally provide\n                    descriptive details about the run. See the [`output` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#output-object)\n                    description.\n                  properties:\n                    title:\n                      type: string\n                      description: The title of the check run.\n                    summary:\n                      type: string\n                      description: The summary of the check run. This parameter supports\n                        Markdown.\n                    text:\n                      type: string\n                      description: The details of the check run. This parameter supports\n                        Markdown.\n                    annotations:\n                      type: array\n                      description: Adds information from your analysis to specific\n                        lines of code. Annotations are visible on GitHub in the **Checks**\n                        and **Files changed** tab of the pull request. The Checks\n                        API limits the number of annotations to a maximum of 50 per\n                        API request. To create more than 50 annotations, you have\n                        to make multiple requests to the [Update a check run](https://developer.github.com/enterprise/2.20/v3/checks/runs/#update-a-check-run)\n                        endpoint. Each time you update the check run, annotations\n                        are appended to the list of annotations that already exist\n                        for the check run. For details about how you can view annotations\n                        on GitHub, see \"[About status checks](https://help.github.com/articles/about-status-checks#checks)\".\n                        See the [`annotations` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#annotations-object)\n                        description for details about how to use this parameter.\n                      items:\n                        type: object\n                        properties:\n                          path:\n                            type: string\n                            description: The path of the file to add an annotation\n                              to. For example, `assets/css/main.css`.\n                          start_line:\n                            type: integer\n                            description: The start line of the annotation.\n                          end_line:\n                            type: integer\n                            description: The end line of the annotation.\n                          start_column:\n                            type: integer\n                            description: The start column of the annotation. Annotations\n                              only support `start_column` and `end_column` on the\n                              same line. Omit this parameter if `start_line` and `end_line`\n                              have different values.\n                          end_column:\n                            type: integer\n                            description: The end column of the annotation. Annotations\n                              only support `start_column` and `end_column` on the\n                              same line. Omit this parameter if `start_line` and `end_line`\n                              have different values.\n                          annotation_level:\n                            type: string\n                            description: The level of the annotation. Can be one of\n                              `notice`, `warning`, or `failure`.\n                            enum:\n                            - notice\n                            - warning\n                            - failure\n                          message:\n                            type: string\n                            description: A short description of the feedback for these\n                              lines of code. The maximum size is 64 KB.\n                          title:\n                            type: string\n                            description: The title that represents the annotation.\n                              The maximum size is 255 characters.\n                          raw_details:\n                            type: string\n                            description: Details about this annotation. The maximum\n                              size is 64 KB.\n                        required:\n                        - path\n                        - start_line\n                        - end_line\n                        - annotation_level\n                        - message\n                    images:\n                      type: array\n                      description: Adds images to the output displayed in the GitHub\n                        pull request UI. See the [`images` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#images-object)\n                        description for details.\n                      items:\n                        type: object\n                        properties:\n                          alt:\n                            type: string\n                            description: The alternative text for the image.\n                          image_url:\n                            type: string\n                            description: The full URL of the image.\n                          caption:\n                            type: string\n                            description: A short image description.\n                        required:\n                        - alt\n                        - image_url\n                  required:\n                  - title\n                  - summary\n                actions:\n                  type: array\n                  description: Displays a button on GitHub that can be clicked to\n                    alert your app to do additional tasks. For example, a code linting\n                    app can display a button that automatically fixes detected errors.\n                    The button created in this object is displayed after the check\n                    run completes. When a user clicks the button, GitHub sends the\n                    [`check_run.requested_action` webhook](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#check_run)\n                    to your app. Each action includes a `label`, `identifier` and\n                    `description`. A maximum of three actions are accepted. See the\n                    [`actions` object](https://developer.github.com/enterprise/2.20/v3/checks/runs/#actions-object)\n                    description. To learn more about check runs and requested actions,\n                    see \"[Check runs and requested actions](https://developer.github.com/enterprise/2.20/v3/checks/runs/#check-runs-and-requested-actions).\"\n                    To learn more about check runs and requested actions, see \"[Check\n                    runs and requested actions](https://developer.github.com/enterprise/2.20/v3/checks/runs/#check-runs-and-requested-actions).\"\n                  items:\n                    type: object\n                    properties:\n                      label:\n                        type: string\n                        description: The text to be displayed on a button in the web\n                          UI. The maximum size is 20 characters.\n                      description:\n                        type: string\n                        description: A short explanation of what this action would\n                          do. The maximum size is 40 characters.\n                      identifier:\n                        type: string\n                        description: A reference for the action on the integrator's\n                          system. The maximum size is 20 characters.\n                    required:\n                    - label\n                    - description\n                    - identifier\n              required:\n              - name\n              - head_sha\n            examples:\n              example-of-in-progress-conclusion:\n                summary: Example of in_progress conclusion\n                value:\n                  name: mighty_readme\n                  head_sha: ce587453ced02b1526dfb4cb910479d431683101\n                  status: in_progress\n                  external_id: '42'\n                  started_at: '2018-05-04T01:14:52Z'\n                  output:\n                    title: Mighty Readme report\n                    summary: ''\n                    text: ''\n              example-of-completed-conclusion:\n                summary: Example of completed conclusion\n                value:\n                  name: mighty_readme\n                  head_sha: ce587453ced02b1526dfb4cb910479d431683101\n                  status: completed\n                  started_at: '2017-11-30T19:39:10Z'\n                  conclusion: success\n                  completed_at: '2017-11-30T19:49:10Z'\n                  output:\n                    title: Mighty Readme report\n                    summary: There are 0 failures, 2 warnings, and 1 notices.\n                    text: You may have some misspelled words on lines 2 and 4. You\n                      also may want to add a section in your README about how to install\n                      your app.\n                    annotations:\n                    - path: README.md\n                      annotation_level: warning\n                      title: Spell Checker\n                      message: Check your spelling for 'banaas'.\n                      raw_details: Do you mean 'bananas' or 'banana'?\n                      start_line: 2\n                      end_line: 2\n                    - path: README.md\n                      annotation_level: warning\n                      title: Spell Checker\n                      message: Check your spelling for 'aples'\n                      raw_details: Do you mean 'apples' or 'Naples'\n                      start_line: 4\n                      end_line: 4\n                    images:\n                    - alt: Super bananas\n                      image_url: http://example.com/images/42\n                  actions:\n                  - label: Fix\n                    identifier: fix_errors\n                    description: Allow us to fix these errors for you\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/check-run\"\n              examples:\n                example-of-in-progress-conclusion:\n                  \"$ref\": \"#/components/examples/check-run-example-of-in-progress-conclusion\"\n                example-of-completed-conclusion:\n                  \"$ref\": \"#/components/examples/check-run-example-of-completed-conclusion\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/repos/{owner}/{repo}/check-suites/{check_suite_id}\":\n    get:\n      summary: Get a check suite\n      description: |-\n        **Note:** The Checks API only looks for pushes in the repository where the check suite or check run were created. Pushes to a branch in a forked repository are not detected and return an empty `pull_requests` array and a `null` value for `head_branch`.\n\n        Gets a single check suite using its `id`. GitHub Apps must have the `checks:read` permission on a private repository or pull access to a public repository to get check suites. OAuth Apps and authenticated users must have the `repo` scope to get check suites in a private repository.\n      tags:\n      - checks\n      operationId: checks/get-suite\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/checks/suites/#get-a-check-suite\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/check_suite_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/check-suite\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/check-suite\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: antiope\n          note: |-\n            The Checks API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2018-05-07-new-checks-api-public-beta/) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.antiope-preview+json\n            ```\n  \"/markdown\":\n    post:\n      summary: Render a Markdown document\n      description: ''\n      operationId: markdown/render\n      tags:\n      - markdown\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/markdown/#render-a-markdown-document\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                text:\n                  description: The Markdown text to render in HTML.\n                  type: string\n                mode:\n                  description: The rendering mode.\n                  enum:\n                  - markdown\n                  - gfm\n                  default: markdown\n                  example: markdown\n                  type: string\n                context:\n                  description: The repository context to use when creating references\n                    in `gfm` mode.\n                  type: string\n              required:\n              - text\n              type: object\n      responses:\n        '200':\n          description: response\n          headers:\n            Content-Type:\n              \"$ref\": \"#/components/headers/content-type\"\n            Content-Length:\n              example: '279'\n              schema:\n                type: string\n            X-CommonMarker-Version:\n              \"$ref\": \"#/components/headers/x-common-marker-version\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/markdown/raw\":\n    post:\n      summary: Render a Markdown document in raw mode\n      description: You must send Markdown as plain text (using a `Content-Type` header\n        of `text/plain` or `text/x-markdown`) to this endpoint, rather than using\n        JSON format. In raw mode, [GitHub Flavored Markdown](https://github.github.com/gfm/)\n        is not supported and Markdown will be rendered in plain format like a README.md\n        file. Markdown content must be 400 KB or less.\n      operationId: markdown/render-raw\n      tags:\n      - markdown\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/markdown/#render-a-markdown-document-in-raw-mode\n      parameters: []\n      requestBody:\n        content:\n          text/plain:\n            schema:\n              type: string\n          text/x-markdown:\n            schema:\n              type: string\n      responses:\n        '200':\n          description: response\n          headers:\n            X-CommonMarker-Version:\n              \"$ref\": \"#/components/headers/x-common-marker-version\"\n          content:\n            text/html:\n              schema:\n                type: string\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/projects\":\n    get:\n      summary: List organization projects\n      description: Lists the projects in an organization. Returns a `404 Not Found`\n        status if projects are disabled in the organization. If you do not have sufficient\n        privileges to perform this action, a `401 Unauthorized` or `410 Gone` status\n        is returned.\n      tags:\n      - projects\n      operationId: projects/list-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#list-organization-projects\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - name: state\n        description: Indicates the state of the projects to return. Can be either\n          `open`, `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    post:\n      summary: Create an organization project\n      description: Creates an organization project board. Returns a `404 Not Found`\n        status if projects are disabled in the organization. If you do not have sufficient\n        privileges to perform this action, a `401 Unauthorized` or `410 Gone` status\n        is returned.\n      tags:\n      - projects\n      operationId: projects/create-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#create-an-organization-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the project.\n                body:\n                  type: string\n                  description: The description of the project.\n              required:\n              - name\n            example:\n              name: Organization Roadmap\n              body: High-level roadmap for the upcoming year.\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-2\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/columns/{column_id}/moves\":\n    post:\n      summary: Move a project column\n      description: ''\n      tags:\n      - projects\n      operationId: projects/move-column\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/columns/#move-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/column_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                position:\n                  description: The position of the column in a project\n                  example: last\n                  type: string\n                  pattern: \"^(?:first|last|after:\\\\d+)$\"\n              required:\n              - position\n              type: object\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/columns/cards/{card_id}\":\n    patch:\n      summary: Update an existing project card\n      description: ''\n      tags:\n      - projects\n      operationId: projects/update-card\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/cards/#update-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/card_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                note:\n                  description: The project card's note\n                  example: Update all gems\n                  type: string\n                  nullable: true\n                archived:\n                  description: Whether or not the card is archived\n                  example: false\n                  type: boolean\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project-card\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-card\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    get:\n      summary: Get a project card\n      description: ''\n      tags:\n      - projects\n      operationId: projects/get-card\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/cards/#get-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/card_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project-card\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-card\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    delete:\n      summary: Delete a project card\n      description: ''\n      tags:\n      - projects\n      operationId: projects/delete-card\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/cards/#delete-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/card_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          description: Forbidden\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: string\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/columns/{column_id}\":\n    get:\n      summary: Get a project column\n      description: ''\n      tags:\n      - projects\n      operationId: projects/get-column\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/columns/#get-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/column_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project-column\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-column\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    patch:\n      summary: Update an existing project column\n      description: ''\n      tags:\n      - projects\n      operationId: projects/update-column\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/columns/#update-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/column_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                name:\n                  description: Name of the project column\n                  example: Remaining tasks\n                  type: string\n              required:\n              - name\n              type: object\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project-column\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-column\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    delete:\n      summary: Delete a project column\n      description: ''\n      tags:\n      - projects\n      operationId: projects/delete-column\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/columns/#delete-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/column_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/users/{username}/projects\":\n    get:\n      summary: List user projects\n      description: ''\n      tags:\n      - projects\n      operationId: projects/list-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#list-user-projects\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - name: state\n        description: Indicates the state of the projects to return. Can be either\n          `open`, `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-items-3\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/{project_id}\":\n    delete:\n      summary: Delete a project\n      description: Deletes a project board. Returns a `404 Not Found` status if projects\n        are disabled.\n      operationId: projects/delete\n      tags:\n      - projects\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#delete-a-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      responses:\n        '204':\n          description: Delete Success\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          description: Forbidden\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: string\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    get:\n      summary: Get a project\n      description: Gets a project by its `id`. Returns a `404 Not Found` status if\n        projects are disabled. If you do not have sufficient privileges to perform\n        this action, a `401 Unauthorized` or `410 Gone` status is returned.\n      tags:\n      - projects\n      operationId: projects/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#get-a-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-3\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    patch:\n      summary: Update a project\n      description: Updates a project board's information. Returns a `404 Not Found`\n        status if projects are disabled. If you do not have sufficient privileges\n        to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.\n      operationId: projects/update\n      tags:\n      - projects\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#update-a-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                name:\n                  description: Name of the project\n                  example: Week One Sprint\n                  type: string\n                body:\n                  description: Body of the project\n                  example: This project represents the sprint of the first week in\n                    January\n                  type: string\n                  nullable: true\n                state:\n                  description: State of the project; either 'open' or 'closed'\n                  example: open\n                  type: string\n                organization_permission:\n                  description: The baseline permission that all organization members\n                    have on this project\n                  type: string\n                  enum:\n                  - read\n                  - write\n                  - admin\n                  - none\n                private:\n                  description: Whether or not this project can be seen by everyone.\n                  type: boolean\n              type: object\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-3\"\n        '404':\n          description: Response if the authenticated user does not have access to\n            the project\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          description: Forbidden\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: string\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/{project_id}/columns\":\n    get:\n      summary: List project columns\n      description: ''\n      tags:\n      - projects\n      operationId: projects/list-columns\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/columns/#list-project-columns\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/project-column\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-column-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    post:\n      summary: Create a project column\n      description: ''\n      tags:\n      - projects\n      operationId: projects/create-column\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/columns/#create-a-project-column\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                name:\n                  description: Name of the project column\n                  example: Remaining tasks\n                  type: string\n              required:\n              - name\n              type: object\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project-column\"\n              example:\n                url: https://api.github.com/projects/columns/367\n                project_url: https://api.github.com/projects/120\n                cards_url: https://api.github.com/projects/columns/367/cards\n                id: 367\n                node_id: MDEzOlByb2plY3RDb2x1bW4zNjc=\n                name: To Do\n                created_at: '2016-09-05T14:18:44Z'\n                updated_at: '2016-09-05T14:22:28Z'\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/columns/{column_id}/cards\":\n    post:\n      summary: Create a project card\n      description: |-\n        **Note**: GitHub's REST API v3 considers every pull request an issue, but not every issue is a pull request. For this reason, \"Issues\" endpoints may return both issues and pull requests in the response. You can identify pull requests by the `pull_request` key.\n\n        Be aware that the `id` of a pull request returned from \"Issues\" endpoints will be an _issue id_. To find out the pull request id, use the \"[List pull requests](https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests)\" endpoint.\n      tags:\n      - projects\n      operationId: projects/create-card\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/cards/#create-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/column_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  note:\n                    description: The project card's note\n                    example: Update all gems\n                    type: string\n                    nullable: true\n                required:\n                - note\n              - type: object\n                properties:\n                  content_id:\n                    description: The unique identifier of the content associated with\n                      the card\n                    example: 42\n                    type: integer\n                  content_type:\n                    description: The piece of content associated with the card\n                    example: PullRequest\n                    type: string\n                required:\n                - content_id\n                - content_type\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project-card\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-card\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '422':\n          description: Validation Failed\n          content:\n            application/json:\n              schema:\n                oneOf:\n                - \"$ref\": \"#/components/schemas/validation-error\"\n                - \"$ref\": \"#/components/schemas/validation-error-simple\"\n        '503':\n          description: Service Unavailable\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  code:\n                    type: string\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        code:\n                          type: string\n                        message:\n                          type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    get:\n      summary: List project cards\n      description: ''\n      tags:\n      - projects\n      operationId: projects/list-cards\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/cards/#list-project-cards\n      parameters:\n      - \"$ref\": \"#/components/parameters/column_id\"\n      - name: archived_state\n        description: Filters the project cards that are returned by the card's state.\n          Can be one of `all`,`archived`, or `not_archived`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - all\n          - archived\n          - not_archived\n          default: not_archived\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/project-card\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-card-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/user/projects\":\n    post:\n      summary: Create a user project\n      description: ''\n      tags:\n      - projects\n      operationId: projects/create-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#create-a-user-project\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                name:\n                  description: Name of the project\n                  example: Week One Sprint\n                  type: string\n                body:\n                  description: Body of the project\n                  example: This project represents the sprint of the first week in\n                    January\n                  type: string\n                  nullable: true\n              required:\n              - name\n              type: object\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/{project_id}/collaborators/{username}\":\n    delete:\n      summary: Remove user as a collaborator\n      description: Removes a collaborator from an organization project. You must be\n        an organization owner or a project `admin` to remove a collaborator.\n      tags:\n      - projects\n      operationId: projects/remove-collaborator\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/collaborators/#remove-project-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    put:\n      summary: Add project collaborator\n      description: Adds a collaborator to an organization project and sets their permission\n        level. You must be an organization owner or a project `admin` to add a collaborator.\n      tags:\n      - projects\n      operationId: projects/add-collaborator\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/collaborators/#add-project-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                permission:\n                  description: The permission to grant the collaborator.\n                  enum:\n                  - read\n                  - write\n                  - admin\n                  default: write\n                  example: write\n                  type: string\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/{project_id}/collaborators/{username}/permission\":\n    get:\n      summary: Get project permission for a user\n      description: 'Returns the collaborator''s permission level for an organization\n        project. Possible values for the `permission` key: `admin`, `write`, `read`,\n        `none`. You must be an organization owner or a project `admin` to review a\n        user''s permission level.'\n      tags:\n      - projects\n      operationId: projects/get-permission-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/collaborators/#get-project-permission-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-collaborator-permission\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-collaborator-permission\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/repos/{owner}/{repo}/projects\":\n    post:\n      summary: Create a repository project\n      description: Creates a repository project board. Returns a `404 Not Found` status\n        if projects are disabled in the repository. If you do not have sufficient\n        privileges to perform this action, a `401 Unauthorized` or `410 Gone` status\n        is returned.\n      tags:\n      - projects\n      operationId: projects/create-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#create-a-repository-project\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the project.\n                body:\n                  type: string\n                  description: The description of the project.\n              required:\n              - name\n            example:\n              name: Projects Documentation\n              body: Developer documentation project for the developer site.\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-3\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n    get:\n      summary: List repository projects\n      description: Lists the projects in a repository. Returns a `404 Not Found` status\n        if projects are disabled in the repository. If you do not have sufficient\n        privileges to perform this action, a `401 Unauthorized` or `410 Gone` status\n        is returned.\n      tags:\n      - projects\n      operationId: projects/list-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/#list-repository-projects\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: state\n        description: Indicates the state of the projects to return. Can be either\n          `open`, `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/project-items-2\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/columns/cards/{card_id}/moves\":\n    post:\n      summary: Move a project card\n      description: ''\n      tags:\n      - projects\n      operationId: projects/move-card\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/cards/#move-a-project-card\n      parameters:\n      - \"$ref\": \"#/components/parameters/card_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                position:\n                  description: The position of the card in a column\n                  example: bottom\n                  type: string\n                  pattern: \"^(?:top|bottom|after:\\\\d+)$\"\n                column_id:\n                  description: The unique identifier of the column the card should\n                    be moved to\n                  example: 42\n                  type: integer\n              required:\n              - position\n              type: object\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          description: Forbidden\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        code:\n                          type: string\n                        message:\n                          type: string\n                        resource:\n                          type: string\n                        field:\n                          type: string\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '503':\n          description: Service Unavailable\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  code:\n                    type: string\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        code:\n                          type: string\n                        message:\n                          type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/projects/{project_id}/collaborators\":\n    get:\n      summary: List project collaborators\n      description: Lists the collaborators for an organization project. For a project,\n        the list of collaborators includes outside collaborators, organization members\n        that are direct collaborators, organization members with access through team\n        memberships, organization members with access through default organization\n        permissions, and organization owners. You must be an organization owner or\n        a project `admin` to list collaborators.\n      tags:\n      - projects\n      operationId: projects/list-collaborators\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/projects/collaborators/#list-project-collaborators\n      parameters:\n      - \"$ref\": \"#/components/parameters/project-id\"\n      - name: affiliation\n        description: \"Filters the collaborators by their affiliation. Can be one of:\n          \\ \\n\\\\* `outside`: Outside collaborators of a project that are not a member\n          of the project's organization.  \\n\\\\* `direct`: Collaborators with permissions\n          to a project, regardless of organization membership status.  \\n\\\\* `all`:\n          All collaborators the authenticated user can see.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - outside\n          - direct\n          - all\n          default: all\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n  \"/repos/{owner}/{repo}/issues/comments/{comment_id}/reactions\":\n    get:\n      summary: List reactions for an issue comment\n      description: List the reactions to an [issue comment](https://developer.github.com/enterprise/2.20/v3/issues/comments/).\n      tags:\n      - reactions\n      operationId: reactions/list-for-issue-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#list-reactions-for-an-issue-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      - name: content\n        description: Returns a single [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types).\n          Omit this parameter to list all reactions to an issue comment.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - \"+1\"\n          - \"-1\"\n          - laugh\n          - confused\n          - heart\n          - hooray\n          - rocket\n          - eyes\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    post:\n      summary: Create reaction for an issue comment\n      description: 'Create a reaction to an [issue comment](https://developer.github.com/enterprise/2.20/v3/issues/comments/).\n        A response with a `Status: 200 OK` means that you already added the reaction\n        type to this issue comment.'\n      tags:\n      - reactions\n      operationId: reactions/create-for-issue-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#create-reaction-for-an-issue-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types)\n                    to add to the issue comment.\n                  enum:\n                  - \"+1\"\n                  - \"-1\"\n                  - laugh\n                  - confused\n                  - heart\n                  - hooray\n                  - rocket\n                  - eyes\n              required:\n              - content\n            example:\n              content: heart\n      responses:\n        '200':\n          description: Reaction exists\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n        '201':\n          description: Reaction created\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/issues/{issue_number}/reactions\":\n    get:\n      summary: List reactions for an issue\n      description: List the reactions to an [issue](https://developer.github.com/enterprise/2.20/v3/issues/).\n      tags:\n      - reactions\n      operationId: reactions/list-for-issue\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#list-reactions-for-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      - name: content\n        description: Returns a single [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types).\n          Omit this parameter to list all reactions to an issue.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - \"+1\"\n          - \"-1\"\n          - laugh\n          - confused\n          - heart\n          - hooray\n          - rocket\n          - eyes\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    post:\n      summary: Create reaction for an issue\n      description: 'Create a reaction to an [issue](https://developer.github.com/enterprise/2.20/v3/issues/).\n        A response with a `Status: 200 OK` means that you already added the reaction\n        type to this issue.'\n      tags:\n      - reactions\n      operationId: reactions/create-for-issue\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#create-reaction-for-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types)\n                    to add to the issue.\n                  enum:\n                  - \"+1\"\n                  - \"-1\"\n                  - laugh\n                  - confused\n                  - heart\n                  - hooray\n                  - rocket\n                  - eyes\n              required:\n              - content\n            example:\n              content: heart\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions\":\n    get:\n      summary: List reactions for a pull request review comment\n      description: List the reactions to a [pull request review comment](https://developer.github.com/enterprise/2.20/v3/pulls/comments/).\n      tags:\n      - reactions\n      operationId: reactions/list-for-pull-request-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#list-reactions-for-a-pull-request-review-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      - name: content\n        description: Returns a single [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types).\n          Omit this parameter to list all reactions to a pull request review comment.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - \"+1\"\n          - \"-1\"\n          - laugh\n          - confused\n          - heart\n          - hooray\n          - rocket\n          - eyes\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    post:\n      summary: Create reaction for a pull request review comment\n      description: 'Create a reaction to a [pull request review comment](https://developer.github.com/enterprise/2.20/v3/pulls/comments/).\n        A response with a `Status: 200 OK` means that you already added the reaction\n        type to this pull request review comment.'\n      tags:\n      - reactions\n      operationId: reactions/create-for-pull-request-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#create-reaction-for-a-pull-request-review-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types)\n                    to add to the pull request review comment.\n                  enum:\n                  - \"+1\"\n                  - \"-1\"\n                  - laugh\n                  - confused\n                  - heart\n                  - hooray\n                  - rocket\n                  - eyes\n              required:\n              - content\n            example:\n              content: heart\n      responses:\n        '200':\n          description: Reaction exists\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n        '201':\n          description: Reaction created\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/teams/{team_id}/discussions/{discussion_number}/reactions\":\n    post:\n      summary: Create reaction for a team discussion\n      description: 'Create a reaction to a [team discussion](https://developer.github.com/enterprise/2.20/v3/teams/discussions/).\n        OAuth access tokens require the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n        A response with a `Status: 200 OK` means that you already added the reaction\n        type to this team discussion.'\n      operationId: reactions/create-for-team-discussion\n      tags:\n      - reactions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#create-reaction-for-a-team-discussion\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json,application/vnd.github.squirrel-girl-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types)\n                    to add to the team discussion.\n                  enum:\n                  - \"+1\"\n                  - \"-1\"\n                  - laugh\n                  - confused\n                  - heart\n                  - hooray\n                  - rocket\n                  - eyes\n              required:\n              - content\n            example:\n              content: heart\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    get:\n      summary: List reactions for a team discussion\n      description: List the reactions to a [team discussion](https://developer.github.com/enterprise/2.20/v3/teams/discussions/).\n        OAuth access tokens require the `read:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: reactions/list-for-team-discussion\n      tags:\n      - reactions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#list-reactions-for-a-team-discussion\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json,application/vnd.github.squirrel-girl-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - name: content\n        description: Returns a single [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types).\n          Omit this parameter to list all reactions to a team discussion.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - \"+1\"\n          - \"-1\"\n          - laugh\n          - confused\n          - heart\n          - hooray\n          - rocket\n          - eyes\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/reactions/{reaction_id}\":\n    delete:\n      summary: Delete a reaction\n      description: OAuth access tokens require the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/),\n        when deleting a [team discussion](https://developer.github.com/enterprise/2.20/v3/teams/discussions/)\n        or [team discussion comment](https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/).\n      operationId: reactions/delete\n      tags:\n      - reactions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#delete-a-reaction\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json,application/vnd.github.squirrel-girl-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/reaction-id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}/reactions\":\n    post:\n      summary: Create reaction for a team discussion comment\n      description: 'Create a reaction to a [team discussion comment](https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/).\n        OAuth access tokens require the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n        A response with a `Status: 200 OK` means that you already added the reaction\n        type to this team discussion comment.'\n      operationId: reactions/create-for-team-discussion-comment\n      tags:\n      - reactions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#create-reaction-for-a-team-discussion-comment\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json,application/vnd.github.squirrel-girl-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types)\n                    to add to the team discussion comment.\n                  enum:\n                  - \"+1\"\n                  - \"-1\"\n                  - laugh\n                  - confused\n                  - heart\n                  - hooray\n                  - rocket\n                  - eyes\n              required:\n              - content\n            example:\n              content: heart\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    get:\n      summary: List reactions for a team discussion comment\n      description: List the reactions to a [team discussion comment](https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/).\n        OAuth access tokens require the `read:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: reactions/list-for-team-discussion-comment\n      tags:\n      - reactions\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#list-reactions-for-a-team-discussion-comment\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json,application/vnd.github.squirrel-girl-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      - name: content\n        description: Returns a single [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types).\n          Omit this parameter to list all reactions to a team discussion comment.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - \"+1\"\n          - \"-1\"\n          - laugh\n          - confused\n          - heart\n          - hooray\n          - rocket\n          - eyes\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/comments/{comment_id}/reactions\":\n    get:\n      summary: List reactions for a commit comment\n      description: List the reactions to a [commit comment](https://developer.github.com/enterprise/2.20/v3/repos/comments/).\n      tags:\n      - reactions\n      operationId: reactions/list-for-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#list-reactions-for-a-commit-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      - name: content\n        description: Returns a single [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types).\n          Omit this parameter to list all reactions to a commit comment.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - \"+1\"\n          - \"-1\"\n          - laugh\n          - confused\n          - heart\n          - hooray\n          - rocket\n          - eyes\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    post:\n      summary: Create reaction for a commit comment\n      description: 'Create a reaction to a [commit comment](https://developer.github.com/enterprise/2.20/v3/repos/comments/).\n        A response with a `Status: 200 OK` means that you already added the reaction\n        type to this commit comment.'\n      tags:\n      - reactions\n      operationId: reactions/create-for-commit-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/reactions/#create-reaction-for-a-commit-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The [reaction type](https://developer.github.com/enterprise/2.20/v3/reactions/#reaction-types)\n                    to add to the commit comment.\n                  enum:\n                  - \"+1\"\n                  - \"-1\"\n                  - laugh\n                  - confused\n                  - heart\n                  - hooray\n                  - rocket\n                  - eyes\n              required:\n              - content\n            example:\n              content: heart\n      responses:\n        '200':\n          description: Reaction exists\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n        '201':\n          description: Reaction created\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/reaction\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/reaction\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/zen\":\n    get:\n      summary: Get the Zen of GitHub\n      description: Get a random sentence from the Zen of GitHub\n      tags:\n      - meta\n      operationId: meta/get-zen\n      responses:\n        '200':\n          description: response\n          content:\n            text/plain:\n              schema:\n                type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/meta\":\n    get:\n      summary: Get GitHub Enterprise Server meta information\n      description: This endpoint provides a list of GitHub's IP addresses. For more\n        information, see \"[About GitHub's IP addresses](https://help.github.com/articles/about-github-s-ip-addresses/).\"\n      tags:\n      - meta\n      operationId: meta/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/meta/#get-github-meta-information\n      parameters: []\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/api-overview\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/api-overview\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/octocat\":\n    get:\n      summary: Get Octocat\n      description: Get the octocat as ASCII art\n      tags:\n      - meta\n      operationId: meta/get-octocat\n      parameters:\n      - name: s\n        in: query\n        description: The words to show in Octocat's speech bubble\n        schema:\n          type: string\n        required: false\n      responses:\n        '200':\n          description: response\n          content:\n            application/octocat-stream:\n              schema:\n                type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/\":\n    get:\n      summary: GitHub API Root\n      description: Get Hypermedia links to resources accessible in GitHub's REST API\n      tags:\n      - meta\n      operationId: meta/root\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  current_user_url:\n                    type: string\n                    format: uri\n                  current_user_authorizations_html_url:\n                    type: string\n                    format: uri\n                  authorizations_url:\n                    type: string\n                    format: uri\n                  code_search_url:\n                    type: string\n                    format: uri\n                  commit_search_url:\n                    type: string\n                    format: uri\n                  emails_url:\n                    type: string\n                    format: uri\n                  emojis_url:\n                    type: string\n                    format: uri\n                  events_url:\n                    type: string\n                    format: uri\n                  feeds_url:\n                    type: string\n                    format: uri\n                  followers_url:\n                    type: string\n                    format: uri\n                  following_url:\n                    type: string\n                    format: uri\n                  gists_url:\n                    type: string\n                    format: uri\n                  hub_url:\n                    type: string\n                    format: uri\n                  issue_search_url:\n                    type: string\n                    format: uri\n                  issues_url:\n                    type: string\n                    format: uri\n                  keys_url:\n                    type: string\n                    format: uri\n                  label_search_url:\n                    type: string\n                    format: uri\n                  notifications_url:\n                    type: string\n                    format: uri\n                  organization_url:\n                    type: string\n                    format: uri\n                  organization_repositories_url:\n                    type: string\n                    format: uri\n                  organization_teams_url:\n                    type: string\n                    format: uri\n                  public_gists_url:\n                    type: string\n                    format: uri\n                  rate_limit_url:\n                    type: string\n                    format: uri\n                  repository_url:\n                    type: string\n                    format: uri\n                  repository_search_url:\n                    type: string\n                    format: uri\n                  current_user_repositories_url:\n                    type: string\n                    format: uri\n                  starred_url:\n                    type: string\n                    format: uri\n                  starred_gists_url:\n                    type: string\n                    format: uri\n                  topic_search_url:\n                    type: string\n                    format: uri\n                  user_url:\n                    type: string\n                    format: uri\n                  user_organizations_url:\n                    type: string\n                    format: uri\n                  user_repositories_url:\n                    type: string\n                    format: uri\n                  user_search_url:\n                    type: string\n                    format: uri\n                required:\n                - current_user_url\n                - current_user_authorizations_html_url\n                - authorizations_url\n                - code_search_url\n                - commit_search_url\n                - emails_url\n                - emojis_url\n                - events_url\n                - feeds_url\n                - followers_url\n                - following_url\n                - gists_url\n                - hub_url\n                - issue_search_url\n                - issues_url\n                - keys_url\n                - label_search_url\n                - notifications_url\n                - organization_url\n                - organization_repositories_url\n                - organization_teams_url\n                - public_gists_url\n                - rate_limit_url\n                - repository_url\n                - repository_search_url\n                - current_user_repositories_url\n                - starred_url\n                - starred_gists_url\n                - user_url\n                - user_organizations_url\n                - user_repositories_url\n                - user_search_url\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/memberships/orgs\":\n    get:\n      summary: List organization memberships for the authenticated user\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/list-memberships-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#list-organization-memberships-for-the-authenticated-user\n      parameters:\n      - name: state\n        description: Indicates the state of the memberships to return. Can be either\n          `active` or `pending`. If not specified, the API returns both active and\n          pending memberships.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - active\n          - pending\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/org-membership\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-membership-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/orgs/{org}/outside_collaborators/{username}\":\n    delete:\n      summary: Remove outside collaborator from an organization\n      description: Removing a user from this list will remove them from all the organization's\n        repositories.\n      tags:\n      - orgs\n      operationId: orgs/remove-outside-collaborator\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/outside_collaborators/#remove-outside-collaborator-from-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '422':\n          description: Response if user is a member of the organization\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n              examples:\n                response-if-user-is-a-member-of-the-organization:\n                  value:\n                    message: You cannot specify an organization member to remove as\n                      an outside collaborator.\n                    documentation_url: https://developer.github.com/enterprise/2.20/v3/orgs/outside_collaborators/#remove-outside-collaborator\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    put:\n      summary: Convert an organization member to outside collaborator\n      description: When an organization member is converted to an outside collaborator,\n        they'll only have access to the repositories that their current team membership\n        allows. The user will no longer be a member of the organization. For more\n        information, see \"[Converting an organization member to an outside collaborator](https://help.github.com/articles/converting-an-organization-member-to-an-outside-collaborator/)\".\n      tags:\n      - orgs\n      operationId: orgs/convert-member-to-outside-collaborator\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/outside_collaborators/#convert-an-organization-member-to-outside-collaborator\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '202':\n          description: User is getting converted asynchronously\n        '204':\n          description: User was converted\n        '403':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n              examples:\n                response-if-user-is-the-last-owner-of-the-organization:\n                  summary: Response if user is the last owner of the organization\n                  value:\n                    message: Cannot convert the last owner to an outside collaborator\n                    documentation_url: https://developer.github.com/enterprise/2.20/v3/orgs/outside_collaborators/#convert-member-to-outside-collaborator\n                response-if-user-is-not-a-member-of-the-organization:\n                  summary: Response if user is not a member of the organization\n                  value:\n                    message: \"<user> is not a member of the <organization> organization.\"\n                    documentation_url: https://developer.github.com/enterprise/2.20/v3/orgs/outside_collaborators/#convert-member-to-outside-collaborator\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/memberships/orgs/{org}\":\n    get:\n      summary: Get an organization membership for the authenticated user\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/get-membership-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#get-an-organization-membership-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-membership\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-membership\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    patch:\n      summary: Update an organization membership for the authenticated user\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/update-membership-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#update-an-organization-membership-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                state:\n                  type: string\n                  description: The state that the membership should be in. Only `\"active\"`\n                    will be accepted.\n                  enum:\n                  - active\n              required:\n              - state\n            example:\n              state: active\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-membership\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-membership-2\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/orgs/{org}/memberships/{username}\":\n    get:\n      summary: Get organization membership for a user\n      description: In order to get a user's membership with an organization, the authenticated\n        user must be an organization member.\n      tags:\n      - orgs\n      operationId: orgs/get-membership-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#get-organization-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-membership\"\n              examples:\n                response-if-user-has-an-active-admin-membership-with-organization:\n                  \"$ref\": \"#/components/examples/org-membership-response-if-user-has-an-active-admin-membership-with-organization\"\n                response-if-user-has-an-active-membership-with-organization:\n                  \"$ref\": \"#/components/examples/org-membership-response-if-user-has-an-active-membership-with-organization\"\n                response-if-user-has-a-pending-membership-with-organization:\n                  \"$ref\": \"#/components/examples/org-membership-response-if-user-has-a-pending-membership-with-organization\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Remove organization membership for a user\n      description: |-\n        In order to remove a user's membership with an organization, the authenticated user must be an organization owner.\n\n        If the specified user is an active member of the organization, this will remove them from the organization. If the specified user has been invited to the organization, this will cancel their invitation. The specified user will receive an email notification in both cases.\n      tags:\n      - orgs\n      operationId: orgs/remove-membership-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#remove-organization-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    put:\n      summary: Set organization membership for a user\n      description: \"Only authenticated organization owners can add a member to the\n        organization or update the member's role.\\n\\n*   If the authenticated user\n        is _adding_ a member to the organization, the invited user will receive an\n        email inviting them to the organization. The user's [membership status](https://developer.github.com/enterprise/2.20/v3/orgs/members/#get-organization-membership-for-a-user)\n        will be `pending` until they accept the invitation.\\n    \\n*   Authenticated\n        users can _update_ a user's membership by passing the `role` parameter. If\n        the authenticated user changes a member's role to `admin`, the affected user\n        will receive an email notifying them that they've been made an organization\n        owner. If the authenticated user changes an owner's role to `member`, no email\n        will be sent.\\n\\n**Rate limits**\\n\\nTo prevent abuse, the authenticated user\n        is limited to 50 organization invitations per 24 hour period. If the organization\n        is more than one month old or on a paid plan, the limit is 500 invitations\n        per 24 hour period.\"\n      tags:\n      - orgs\n      operationId: orgs/set-membership-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#set-organization-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                role:\n                  type: string\n                  description: \"The role to give the user in the organization. Can\n                    be one of:  \\n\\\\* `admin` - The user will become an owner of the\n                    organization.  \\n\\\\* `member` - The user will become a non-owner\n                    member of the organization.\"\n                  enum:\n                  - admin\n                  - member\n                  default: member\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-membership\"\n              examples:\n                response-if-user-was-previously-unaffiliated-with-organization:\n                  \"$ref\": \"#/components/examples/org-membership-response-if-user-was-previously-unaffiliated-with-organization\"\n                response-if-user-already-had-membership-with-organization:\n                  \"$ref\": \"#/components/examples/org-membership-response-if-user-already-had-membership-with-organization\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/hooks/{hook_id}\":\n    get:\n      summary: Get an organization webhook\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/get-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#get-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-hook\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete an organization webhook\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/delete-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#delete-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update an organization webhook\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/update-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#update-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                config:\n                  type: object\n                  description: Key/value pairs to provide settings for this webhook.\n                    [These are defined below](https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#update-hook-config-params).\n                  properties:\n                    url:\n                      type: string\n                      description: The URL to which the payloads will be delivered.\n                    content_type:\n                      type: string\n                      description: The media type used to serialize the payloads.\n                        Supported values include `json` and `form`. The default is\n                        `form`.\n                    secret:\n                      type: string\n                      description: If provided, the `secret` will be used as the `key`\n                        to generate the HMAC hex digest value in the [`X-Hub-Signature`](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#delivery-headers)\n                        header.\n                    insecure_ssl:\n                      type: string\n                      description: Determines whether the SSL certificate of the host\n                        for `url` will be verified when delivering payloads. Supported\n                        values include `0` (verification is performed) and `1` (verification\n                        is not performed). The default is `0`. **We strongly recommend\n                        not setting this to `1` as you are subject to man-in-the-middle\n                        and other attacks.**\n                  required:\n                  - url\n                events:\n                  type: array\n                  description: Determines what [events](https://developer.github.com/enterprise/2.20/webhooks/event-payloads)\n                    the hook is triggered for.\n                  default:\n                  - push\n                  items:\n                    type: string\n                active:\n                  type: boolean\n                  description: Determines if notifications are sent when the webhook\n                    is triggered. Set to `true` to send notifications.\n                  default: true\n                name:\n                  type: string\n                  example: '\"web\"'\n            example:\n              active: true\n              events:\n              - pull_request\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-hook-2\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/orgs\":\n    get:\n      summary: List organizations for a user\n      description: |-\n        List [public organization memberships](https://help.github.com/articles/publicizing-or-concealing-organization-membership) for the specified user.\n\n        This method only lists _public_ memberships, regardless of authentication. If you need to fetch all of the organization memberships (public and private) for the authenticated user, use the [List organizations for the authenticated user](https://developer.github.com/enterprise/2.20/v3/orgs/#list-organizations-for-the-authenticated-user) API instead.\n      tags:\n      - orgs\n      operationId: orgs/list-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/#list-organizations-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/organization-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-simple-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}\":\n    get:\n      summary: Get an organization\n      description: |-\n        To see many of the organization response values, you need to be an authenticated organization owner with the `admin:org` scope. When the value of `two_factor_requirement_enabled` is `true`, the organization requires all members, billing managers, and outside collaborators to enable [two-factor authentication](https://help.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/).\n\n        GitHub Apps with the `Organization plan` permission can use this endpoint to retrieve information about an organization's GitHub Enterprise Server plan. See \"[Authenticating with GitHub Apps](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/)\" for details. For an example response, see \"[Response with GitHub Enterprise Server plan information](https://developer.github.com/enterprise/2.20/v3/orgs/#response-with-github-plan-information).\"\n      tags:\n      - orgs\n      operationId: orgs/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/#get-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/organization-full\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/organization-full-default-response\"\n                response-with-git-hub-plan-information:\n                  \"$ref\": \"#/components/examples/organization-full-response-with-git-hub-plan-information\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: surtur\n          note: |-\n            New repository creation permissions are available to preview. You can now use `members_can_create_public_repositories`, `members_can_create_private_repositories`, and `members_can_create_internal_repositories`. You can only allow members to create internal repositories if your organization is associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+. These parameters provide more granular permissions to configure the type of repositories organization members can create.\n\n            To access these new parameters during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.surtur-preview+json\n            ```\n    patch:\n      summary: Update an organization\n      description: |-\n        **Parameter Deprecation Notice:** GitHub Enterprise Server will replace and discontinue `members_allowed_repository_creation_type` in favor of more granular permissions. The new input parameters are `members_can_create_public_repositories`, `members_can_create_private_repositories` for all organizations and `members_can_create_internal_repositories` for organizations associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+. For more information, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-12-03-internal-visibility-changes).\n\n        Enables an authenticated organization owner with the `admin:org` scope to update the organization's profile and member privileges.\n      tags:\n      - orgs\n      operationId: orgs/update\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/#update-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                billing_email:\n                  type: string\n                  description: Billing email address. This address is not publicized.\n                company:\n                  type: string\n                  description: The company name.\n                email:\n                  type: string\n                  description: The publicly visible email address.\n                twitter_username:\n                  type: string\n                  description: The Twitter username of the company.\n                location:\n                  type: string\n                  description: The location.\n                name:\n                  type: string\n                  description: The shorthand name of the company.\n                description:\n                  type: string\n                  description: The description of the company.\n                has_organization_projects:\n                  type: boolean\n                  description: Toggles whether an organization can use organization\n                    projects.\n                has_repository_projects:\n                  type: boolean\n                  description: Toggles whether repositories that belong to the organization\n                    can use repository projects.\n                default_repository_permission:\n                  type: string\n                  description: \"Default permission level members have for organization\n                    repositories:  \\n\\\\* `read` - can pull, but not push to or administer\n                    this repository.  \\n\\\\* `write` - can pull and push, but not administer\n                    this repository.  \\n\\\\* `admin` - can pull, push, and administer\n                    this repository.  \\n\\\\* `none` - no permissions granted by default.\"\n                  enum:\n                  - read\n                  - write\n                  - admin\n                  - none\n                  default: read\n                members_can_create_repositories:\n                  type: boolean\n                  description: \"Toggles the ability of non-admin organization members\n                    to create repositories. Can be one of:  \\n\\\\* `true` - all organization\n                    members can create repositories.  \\n\\\\* `false` - only organization\n                    owners can create repositories.  \\nDefault: `true`  \\n**Note:**\n                    A parameter can override this parameter. See `members_allowed_repository_creation_type`\n                    in this table for details. **Note:** A parameter can override\n                    this parameter. See `members_allowed_repository_creation_type`\n                    in this table for details.\"\n                  default: true\n                members_can_create_internal_repositories:\n                  type: boolean\n                  description: \"Toggles whether organization members can create internal\n                    repositories, which are visible to all enterprise members. You\n                    can only allow members to create internal repositories if your\n                    organization is associated with an enterprise account using GitHub\n                    Enterprise Cloud or GitHub Enterprise Server 2.20+. Can be one\n                    of:  \\n\\\\* `true` - all organization members can create internal\n                    repositories.  \\n\\\\* `false` - only organization owners can create\n                    internal repositories.  \\nDefault: `true`. For more information,\n                    see \\\"[Restricting repository creation in your organization](https://help.github.com/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization)\\\"\n                    in the GitHub Help documentation.\"\n                members_can_create_private_repositories:\n                  type: boolean\n                  description: \"Toggles whether organization members can create private\n                    repositories, which are visible to organization members with permission.\n                    Can be one of:  \\n\\\\* `true` - all organization members can create\n                    private repositories.  \\n\\\\* `false` - only organization owners\n                    can create private repositories.  \\nDefault: `true`. For more\n                    information, see \\\"[Restricting repository creation in your organization](https://help.github.com/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization)\\\"\n                    in the GitHub Help documentation.\"\n                members_can_create_public_repositories:\n                  type: boolean\n                  description: \"Toggles whether organization members can create public\n                    repositories, which are visible to anyone. Can be one of:  \\n\\\\*\n                    `true` - all organization members can create public repositories.\n                    \\ \\n\\\\* `false` - only organization owners can create public repositories.\n                    \\ \\nDefault: `true`. For more information, see \\\"[Restricting\n                    repository creation in your organization](https://help.github.com/github/setting-up-and-managing-organizations-and-teams/restricting-repository-creation-in-your-organization)\\\"\n                    in the GitHub Help documentation.\"\n                members_allowed_repository_creation_type:\n                  type: string\n                  description: \"Specifies which types of repositories non-admin organization\n                    members can create. Can be one of:  \\n\\\\* `all` - all organization\n                    members can create public and private repositories.  \\n\\\\* `private`\n                    - members can create private repositories. This option is only\n                    available to repositories that are part of an organization on\n                    GitHub Enterprise Cloud.  \\n\\\\* `none` - only admin members can\n                    create repositories.  \\n**Note:** This parameter is deprecated\n                    and will be removed in the future. Its return value ignores internal\n                    repositories. Using this parameter overrides values set in `members_can_create_repositories`.\n                    See [this note](https://developer.github.com/enterprise/2.20/v3/orgs/#members_can_create_repositories)\n                    for details.\"\n                  enum:\n                  - all\n                  - private\n                  - none\n                blog:\n                  type: string\n                  example: '\"http://github.blog\"'\n            example:\n              billing_email: mona@github.com\n              company: GitHub\n              email: mona@github.com\n              twitter_username: github\n              location: San Francisco\n              name: github\n              description: GitHub, the company.\n              default_repository_permission: read\n              members_can_create_repositories: true\n              members_allowed_repository_creation_type: all\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/organization-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-full\"\n        '422':\n          description: Validation Failed\n          content:\n            application/json:\n              schema:\n                oneOf:\n                - \"$ref\": \"#/components/schemas/validation-error\"\n                - \"$ref\": \"#/components/schemas/validation-error-simple\"\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: surtur\n          note: |-\n            New repository creation permissions are available to preview. You can now use `members_can_create_public_repositories`, `members_can_create_private_repositories`, and `members_can_create_internal_repositories`. You can only allow members to create internal repositories if your organization is associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+. These parameters provide more granular permissions to configure the type of repositories organization members can create.\n\n            To access these new parameters during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.surtur-preview+json\n            ```\n  \"/orgs/{org}/hooks/{hook_id}/pings\":\n    post:\n      summary: Ping an organization webhook\n      description: This will trigger a [ping event](https://developer.github.com/enterprise/2.20/webhooks/#ping-event)\n        to be sent to the hook.\n      tags:\n      - orgs\n      operationId: orgs/ping-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#ping-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/members/{username}\":\n    get:\n      summary: Check organization membership for a user\n      description: Check if a user is, publicly or privately, a member of the organization.\n      tags:\n      - orgs\n      operationId: orgs/check-membership-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#check-organization-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response if requester is an organization member and user is\n            a member\n        '302':\n          description: Response if requester is not an organization member\n          headers:\n            Location:\n              example: https://api.github.com/orgs/github/public_members/pezra\n              schema:\n                type: string\n        '404':\n          description: Response if requester is an organization member and user is\n            not a member\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Remove an organization member\n      description: Removing a user from this list will remove them from all teams\n        and they will no longer have any access to the organization's repositories.\n      tags:\n      - orgs\n      operationId: orgs/remove-member\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#remove-an-organization-member\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/installations\":\n    get:\n      summary: List app installations for an organization\n      description: Lists all GitHub Apps in an organization. The installation count\n        includes all GitHub Apps installed on repositories in the organization. You\n        must be an organization owner with `admin:read` scope to use this endpoint.\n      tags:\n      - orgs\n      operationId: orgs/list-app-installations\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/#list-app-installations-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  installations:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/installation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/installation-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/orgs/{org}/public_members/{username}\":\n    delete:\n      summary: Remove public organization membership for the authenticated user\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/remove-public-membership-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#remove-public-organization-membership-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    put:\n      summary: Set public organization membership for the authenticated user\n      description: |-\n        The user can publicize their own membership. (A user cannot publicize the membership for another user.)\n\n        Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      tags:\n      - orgs\n      operationId: orgs/set-public-membership-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#set-public-organization-membership-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Check public organization membership for a user\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/check-public-membership-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#check-public-organization-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response if user is a public member\n        '404':\n          description: Response if user is not a public member\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/outside_collaborators\":\n    get:\n      summary: List outside collaborators for an organization\n      description: List all users who are outside collaborators of an organization.\n      tags:\n      - orgs\n      operationId: orgs/list-outside-collaborators\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/outside_collaborators/#list-outside-collaborators-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - name: filter\n        description: \"Filter the list of outside collaborators. Can be one of:  \\n\\\\*\n          `2fa_disabled`: Outside collaborators without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication)\n          enabled.  \\n\\\\* `all`: All outside collaborators.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - 2fa_disabled\n          - all\n          default: all\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/organizations\":\n    get:\n      summary: List organizations\n      description: |-\n        Lists all organizations, in the order that they were created on GitHub Enterprise Server.\n\n        **Note:** Pagination is powered exclusively by the `since` parameter. Use the [Link header](https://developer.github.com/enterprise/2.20/v3/#link-header) to get the URL for the next page of organizations.\n      tags:\n      - orgs\n      operationId: orgs/list\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/#list-organizations\n      parameters:\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/organization-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-simple-items\"\n          headers:\n            Link:\n              example: <https://api.github.com/organizations?since=135>; rel=\"next\"\n              schema:\n                type: string\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/hooks\":\n    get:\n      summary: List organization webhooks\n      description: ''\n      tags:\n      - orgs\n      operationId: orgs/list-webhooks\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#list-organization-webhooks\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/org-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-hook-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Create an organization webhook\n      description: 'Here''s how you can create a hook that posts payloads in JSON\n        format:'\n      tags:\n      - orgs\n      operationId: orgs/create-webhook\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#create-an-organization-webhook\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: Must be passed as \"web\".\n                config:\n                  type: object\n                  description: Key/value pairs to provide settings for this webhook.\n                    [These are defined below](https://developer.github.com/enterprise/2.20/v3/orgs/hooks/#create-hook-config-params).\n                  properties:\n                    url:\n                      type: string\n                      description: The URL to which the payloads will be delivered.\n                    content_type:\n                      type: string\n                      description: The media type used to serialize the payloads.\n                        Supported values include `json` and `form`. The default is\n                        `form`.\n                    secret:\n                      type: string\n                      description: If provided, the `secret` will be used as the `key`\n                        to generate the HMAC hex digest value in the [`X-Hub-Signature`](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#delivery-headers)\n                        header.\n                    insecure_ssl:\n                      type: string\n                      description: Determines whether the SSL certificate of the host\n                        for `url` will be verified when delivering payloads. Supported\n                        values include `0` (verification is performed) and `1` (verification\n                        is not performed). The default is `0`. **We strongly recommend\n                        not setting this to `1` as you are subject to man-in-the-middle\n                        and other attacks.**\n                    username:\n                      type: string\n                      example: '\"kdaigle\"'\n                    password:\n                      type: string\n                      example: '\"password\"'\n                  required:\n                  - url\n                events:\n                  type: array\n                  description: Determines what [events](https://developer.github.com/enterprise/2.20/webhooks/event-payloads)\n                    the hook is triggered for.\n                  default:\n                  - push\n                  items:\n                    type: string\n                active:\n                  type: boolean\n                  description: Determines if notifications are sent when the webhook\n                    is triggered. Set to `true` to send notifications.\n                  default: true\n              required:\n              - name\n              - config\n            example:\n              name: web\n              active: true\n              events:\n              - push\n              - pull_request\n              config:\n                url: http://example.com/webhook\n                content_type: json\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-hook\"\n          headers:\n            Location:\n              example: https://api.github.com/orgs/octocat/hooks/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/members\":\n    get:\n      summary: List organization members\n      description: List all users who are members of an organization. If the authenticated\n        user is also a member of this organization then both concealed and public\n        members will be returned.\n      tags:\n      - orgs\n      operationId: orgs/list-members\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#list-organization-members\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - name: filter\n        description: \"Filter members returned in the list. Can be one of:  \\n\\\\* `2fa_disabled`\n          - Members without [two-factor authentication](https://github.com/blog/1614-two-factor-authentication)\n          enabled. Available for organization owners.  \\n\\\\* `all` - All members the\n          authenticated user can see.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - 2fa_disabled\n          - all\n          default: all\n      - name: role\n        description: \"Filter members returned by their role. Can be one of:  \\n\\\\*\n          `all` - All members of the organization, regardless of role.  \\n\\\\* `admin`\n          - Organization owners.  \\n\\\\* `member` - Non-owner organization members.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - all\n          - admin\n          - member\n          default: all\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '302':\n          description: Response if requester is not an organization member\n          headers:\n            Location:\n              example: https://api.github.com/orgs/github/public_members\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/orgs\":\n    get:\n      summary: List organizations for the authenticated user\n      description: |-\n        List organizations for the authenticated user.\n\n        **OAuth scope requirements**\n\n        This only lists organizations that your authorization allows you to operate on in some way (e.g., you can list teams with `read:org` scope, you can publicize your organization membership with `user` scope, etc.). Therefore, this API requires at least `user` or `read:org` scope. OAuth requests with insufficient scope receive a `403 Forbidden` response.\n      tags:\n      - orgs\n      operationId: orgs/list-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/#list-organizations-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/organization-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-simple-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/orgs/{org}/public_members\":\n    get:\n      summary: List public organization members\n      description: Members of an organization can choose to have their membership\n        publicized or not.\n      tags:\n      - orgs\n      operationId: orgs/list-public-members\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/orgs/members/#list-public-organization-members\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/search/code\":\n    get:\n      summary: Search code\n      description: |-\n        Searches for query terms inside of a file. This method returns up to 100 results [per page](https://developer.github.com/enterprise/2.20/v3/#pagination).\n\n        When searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata).\n\n        For example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n        `q=addClass+in:file+language:js+repo:jquery/jquery`\n\n        This query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\n        #### Considerations for code search\n\n        Due to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n        *   Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n        *   Only files smaller than 384 KB are searchable.\n        *   You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\n        language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n      tags:\n      - search\n      operationId: search/code\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/search/#search-code\n      parameters:\n      - name: q\n        description: The query contains one or more search keywords and qualifiers.\n          Qualifiers allow you to limit your search to specific areas of GitHub. The\n          REST API supports the same qualifiers as GitHub.com. To learn more about\n          the format of the query, see [Constructing a search query](https://developer.github.com/enterprise/2.20/v3/search/#constructing-a-search-query).\n          See \"[Searching code](https://help.github.com/articles/searching-code/)\"\n          for a detailed list of qualifiers.\n        in: query\n        required: true\n        schema:\n          type: string\n      - name: sort\n        description: 'Sorts the results of your query. Can only be `indexed`, which\n          indicates how recently a file has been indexed by the GitHub Enterprise\n          Server search infrastructure. Default: [best match](https://developer.github.com/enterprise/2.20/v3/search/#ranking-search-results)'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - indexed\n      - \"$ref\": \"#/components/parameters/order\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  incomplete_results:\n                    type: boolean\n                  items:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/code-search-result-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-search-result-item-paginated\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/search/labels\":\n    get:\n      summary: Search labels\n      description: |-\n        Find labels in a repository with names or descriptions that match search keywords. Returns up to 100 results [per page](https://developer.github.com/enterprise/2.20/v3/#pagination).\n\n        When searching for labels, you can get text match metadata for the label **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata).\n\n        For example, if you want to find labels in the `linguist` repository that match `bug`, `defect`, or `enhancement`. Your query might look like this:\n\n        `q=bug+defect+enhancement&repository_id=64778136`\n\n        The labels that best match the query appear first in the search results.\n      tags:\n      - search\n      operationId: search/labels\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/search/#search-labels\n      parameters:\n      - name: repository_id\n        description: The id of the repository.\n        in: query\n        required: true\n        schema:\n          type: integer\n      - name: q\n        description: The search keywords. This endpoint does not accept qualifiers\n          in the query. To learn more about the format of the query, see [Constructing\n          a search query](https://developer.github.com/enterprise/2.20/v3/search/#constructing-a-search-query).\n        in: query\n        required: true\n        schema:\n          type: string\n      - name: sort\n        description: 'Sorts the results of your query by when the label was `created`\n          or `updated`. Default: [best match](https://developer.github.com/enterprise/2.20/v3/search/#ranking-search-results)'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n      - \"$ref\": \"#/components/parameters/order\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  incomplete_results:\n                    type: boolean\n                  items:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/label-search-result-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-search-result-item-paginated\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/search/users\":\n    get:\n      summary: Search users\n      description: |-\n        Find users via various criteria. This method returns up to 100 results [per page](https://developer.github.com/enterprise/2.20/v3/#pagination).\n\n        When searching for users, you can get text match metadata for the issue **login**, **email**, and **name** fields when you pass the `text-match` media type. For more details about highlighting search results, see [Text match metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata). For more details about how to receive highlighted search results, see [Text match metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata).\n\n        For example, if you're looking for a list of popular users, you might try this query:\n\n        `q=tom+repos:%3E42+followers:%3E1000`\n\n        This query searches for users with the name `tom`. The results are restricted to users with more than 42 repositories and over 1,000 followers.\n      tags:\n      - search\n      operationId: search/users\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/search/#search-users\n      parameters:\n      - name: q\n        description: The query contains one or more search keywords and qualifiers.\n          Qualifiers allow you to limit your search to specific areas of GitHub. The\n          REST API supports the same qualifiers as GitHub.com. To learn more about\n          the format of the query, see [Constructing a search query](https://developer.github.com/enterprise/2.20/v3/search/#constructing-a-search-query).\n          See \"[Searching users](https://help.github.com/articles/searching-users/)\"\n          for a detailed list of qualifiers.\n        in: query\n        required: true\n        schema:\n          type: string\n      - name: sort\n        description: 'Sorts the results of your query by number of `followers` or\n          `repositories`, or when the person `joined` GitHub Enterprise Server. Default:\n          [best match](https://developer.github.com/enterprise/2.20/v3/search/#ranking-search-results)'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - followers\n          - repositories\n          - joined\n      - \"$ref\": \"#/components/parameters/order\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  incomplete_results:\n                    type: boolean\n                  items:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/user-search-result-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/user-search-result-item-paginated\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/search/commits\":\n    get:\n      summary: Search commits\n      description: |-\n        Find commits via various criteria on the default branch (usually `master`). This method returns up to 100 results [per page](https://developer.github.com/enterprise/2.20/v3/#pagination).\n\n        When searching for commits, you can get text match metadata for the **message** field when you provide the `text-match` media type. For more details about how to receive highlighted search results, see [Text match\n        metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata).\n\n        For example, if you want to find commits related to CSS in the [octocat/Spoon-Knife](https://github.com/octocat/Spoon-Knife) repository. Your query would look something like this:\n\n        `q=repo:octocat/Spoon-Knife+css`\n      tags:\n      - search\n      operationId: search/commits\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/search/#search-commits\n      parameters:\n      - name: q\n        description: The query contains one or more search keywords and qualifiers.\n          Qualifiers allow you to limit your search to specific areas of GitHub. The\n          REST API supports the same qualifiers as GitHub.com. To learn more about\n          the format of the query, see [Constructing a search query](https://developer.github.com/enterprise/2.20/v3/search/#constructing-a-search-query).\n          See \"[Searching commits](https://help.github.com/articles/searching-commits/)\"\n          for a detailed list of qualifiers.\n        in: query\n        required: true\n        schema:\n          type: string\n      - name: sort\n        description: 'Sorts the results of your query by `author-date` or `committer-date`.\n          Default: [best match](https://developer.github.com/enterprise/2.20/v3/search/#ranking-search-results)'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - author-date\n          - committer-date\n      - \"$ref\": \"#/components/parameters/order\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  incomplete_results:\n                    type: boolean\n                  items:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/commit-search-result-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/commit-search-result-item-paginated\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: cloak\n          note: |-\n            The Commit Search API is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2017-01-05-commit-search-api/) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.cloak-preview\n            ```\n  \"/search/issues\":\n    get:\n      summary: Search issues and pull requests\n      description: |-\n        Find issues by state and keyword. This method returns up to 100 results [per page](https://developer.github.com/enterprise/2.20/v3/#pagination).\n\n        When searching for issues, you can get text match metadata for the issue **title**, issue **body**, and issue **comment body** fields when you pass the `text-match` media type. For more details about how to receive highlighted\n        search results, see [Text match metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata).\n\n        For example, if you want to find the oldest unresolved Python bugs on Windows. Your query might look something like this.\n\n        `q=windows+label:bug+language:python+state:open&sort=created&order=asc`\n\n        This query searches for the keyword `windows`, within any open issue that is labeled as `bug`. The search runs across repositories whose primary language is Python. The results are sorted by creation date in ascending order, whick means the oldest issues appear first in the search results.\n      tags:\n      - search\n      operationId: search/issues-and-pull-requests\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/search/#search-issues-and-pull-requests\n      parameters:\n      - name: q\n        description: The query contains one or more search keywords and qualifiers.\n          Qualifiers allow you to limit your search to specific areas of GitHub. The\n          REST API supports the same qualifiers as GitHub.com. To learn more about\n          the format of the query, see [Constructing a search query](https://developer.github.com/enterprise/2.20/v3/search/#constructing-a-search-query).\n          See \"[Searching issues and pull requests](https://help.github.com/articles/searching-issues-and-pull-requests/)\"\n          for a detailed list of qualifiers.\n        in: query\n        required: true\n        schema:\n          type: string\n      - name: sort\n        description: 'Sorts the results of your query by the number of `comments`,\n          `reactions`, `reactions-+1`, `reactions--1`, `reactions-smile`, `reactions-thinking_face`,\n          `reactions-heart`, `reactions-tada`, or `interactions`. You can also sort\n          results by how recently the items were `created` or `updated`, Default:\n          [best match](https://developer.github.com/enterprise/2.20/v3/search/#ranking-search-results)'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - comments\n          - reactions\n          - reactions-+1\n          - reactions--1\n          - reactions-smile\n          - reactions-thinking_face\n          - reactions-heart\n          - reactions-tada\n          - interactions\n          - created\n          - updated\n      - \"$ref\": \"#/components/parameters/order\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  incomplete_results:\n                    type: boolean\n                  items:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/issue-search-result-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-search-result-item-paginated\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/search/repositories\":\n    get:\n      summary: Search repositories\n      description: |-\n        Find repositories via various criteria. This method returns up to 100 results [per page](https://developer.github.com/enterprise/2.20/v3/#pagination).\n\n        When searching for repositories, you can get text match metadata for the **name** and **description** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata).\n\n        For example, if you want to search for popular Tetris repositories written in assembly code, your query might look like this:\n\n        `q=tetris+language:assembly&sort=stars&order=desc`\n\n        This query searches for repositories with the word `tetris` in the name, the description, or the README. The results are limited to repositories where the primary language is assembly. The results are sorted by stars in descending order, so that the most popular repositories appear first in the search results.\n\n        When you include the `mercy` preview header, you can also search for multiple topics by adding more `topic:` instances. For example, your query might look like this:\n\n        `q=topic:ruby+topic:rails`\n      tags:\n      - search\n      operationId: search/repos\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/search/#search-repositories\n      parameters:\n      - name: q\n        description: The query contains one or more search keywords and qualifiers.\n          Qualifiers allow you to limit your search to specific areas of GitHub. The\n          REST API supports the same qualifiers as GitHub.com. To learn more about\n          the format of the query, see [Constructing a search query](https://developer.github.com/enterprise/2.20/v3/search/#constructing-a-search-query).\n          See \"[Searching for repositories](https://help.github.com/articles/searching-for-repositories/)\"\n          for a detailed list of qualifiers.\n        in: query\n        required: true\n        schema:\n          type: string\n      - name: sort\n        description: 'Sorts the results of your query by number of `stars`, `forks`,\n          or `help-wanted-issues` or how recently the items were `updated`. Default:\n          [best match](https://developer.github.com/enterprise/2.20/v3/search/#ranking-search-results)'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - stars\n          - forks\n          - help-wanted-issues\n          - updated\n      - \"$ref\": \"#/components/parameters/order\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  incomplete_results:\n                    type: boolean\n                  items:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/repo-search-result-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repo-search-result-item-paginated\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: mercy\n          note: |-\n            The `topics` property for repositories on GitHub is currently available for developers to preview. To view the `topics` property in calls that return repository results, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.mercy-preview+json\n            ```\n  \"/search/topics\":\n    get:\n      summary: Search topics\n      description: |-\n        Find topics via various criteria. Results are sorted by best match. This method returns up to 100 results [per page](https://developer.github.com/enterprise/2.20/v3/#pagination). See \"[Searching topics](https://help.github.com/articles/searching-topics/)\" for a detailed list of qualifiers.\n\n        When searching for topics, you can get text match metadata for the topic's **short\\_description**, **description**, **name**, or **display\\_name** field when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://developer.github.com/enterprise/2.20/v3/search/#text-match-metadata).\n\n        For example, if you want to search for topics related to Ruby that are featured on https://github.com/topics. Your query might look like this:\n\n        `q=ruby+is:featured`\n\n        This query searches for topics with the keyword `ruby` and limits the results to find only topics that are featured. The topics that are the best match for the query appear first in the search results.\n      tags:\n      - search\n      operationId: search/topics\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/search/#search-topics\n      parameters:\n      - name: q\n        description: The query contains one or more search keywords and qualifiers.\n          Qualifiers allow you to limit your search to specific areas of GitHub. The\n          REST API supports the same qualifiers as GitHub.com. To learn more about\n          the format of the query, see [Constructing a search query](https://developer.github.com/enterprise/2.20/v3/search/#constructing-a-search-query).\n        in: query\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  incomplete_results:\n                    type: boolean\n                  items:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/topic-search-result-item\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/topic-search-result-item-paginated\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: mercy\n          note: |-\n            The `topics` property for repositories on GitHub is currently available for developers to preview. To view the `topics` property in calls that return repository results, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.mercy-preview+json\n            ```\n  \"/applications/grants\":\n    get:\n      summary: List your grants\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        You can use this API to list the set of OAuth applications that have been granted access to your account. Unlike the [list your authorizations](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#list-your-authorizations) API, this API does not manage individual tokens. This API will return one entry for each OAuth application that has been granted access to your account, regardless of the number of tokens an application has generated for your user. The list of OAuth applications returned matches what is shown on [the application authorizations settings screen within GitHub](https://github.com/settings/applications#authorized). The `scopes` returned are the union of scopes authorized for the application. For example, if an application has one token with `repo` scope and another token with `user` scope, the grant will return `[\"repo\", \"user\"]`.\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/list-grants\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#list-your-grants\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/application-grant\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/application-grant-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/applications/grants/{grant_id}\":\n    delete:\n      summary: Delete a grant\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        Deleting an OAuth application's grant will also delete all OAuth tokens associated with the application for your user. Once deleted, the application has no access to your account and is no longer listed on [the application authorizations settings screen within GitHub](https://github.com/settings/applications#authorized).\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/delete-grant\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#delete-a-grant\n      parameters:\n      - \"$ref\": \"#/components/parameters/grant_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n    get:\n      summary: Get a single grant\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/),\n        which is used by integrations to create personal access tokens and OAuth tokens,\n        and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/)\n        will be removed on November, 13, 2020. For more information, including scheduled\n        brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\"\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/get-grant\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#get-a-single-grant\n      parameters:\n      - \"$ref\": \"#/components/parameters/grant_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/application-grant\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/application-grant\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/authorizations\":\n    post:\n      summary: Create a new authorization\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        **Warning:** Apps must use the [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow) to obtain OAuth tokens that work with GitHub Enterprise Server SAML organizations. OAuth tokens created using the Authorizations API will be unable to access GitHub Enterprise Server SAML organizations. For more information, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-11-05-deprecated-passwords-and-authorizations-api).\n\n        Creates OAuth tokens using [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication). If you have two-factor authentication setup, Basic Authentication for this endpoint requires that you use a one-time password (OTP) and your username and password instead of tokens. For more information, see \"[Working with two-factor authentication](https://developer.github.com/enterprise/2.20/v3/auth/#working-with-two-factor-authentication).\"\n\n        To create tokens for a particular OAuth application using this endpoint, you must authenticate as the user you want to create an authorization for and provide the app's client ID and secret, found on your OAuth application's settings page. If your OAuth application intends to create multiple tokens for one user, use `fingerprint` to differentiate between them.\n\n        You can also create tokens on GitHub Enterprise Server from the [personal access tokens settings](https://github.com/settings/tokens) page. Read more about these tokens in [the GitHub Help documentation](https://help.github.com/articles/creating-an-access-token-for-command-line-use).\n\n        Organizations that enforce SAML SSO require personal access tokens to be allowed. Read more about allowing tokens in [the GitHub Help documentation](https://help.github.com/articles/about-identity-and-access-management-with-saml-single-sign-on).\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/create-authorization\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#create-a-new-authorization\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                scopes:\n                  description: A list of scopes that this authorization is in.\n                  type: array\n                  items:\n                    type: string\n                  example:\n                  - public_repo\n                  - user\n                  nullable: true\n                note:\n                  description: A note to remind you what the OAuth token is for.\n                  type: string\n                  example: Update all gems\n                note_url:\n                  description: A URL to remind you what app the OAuth token is for.\n                  type: string\n                client_id:\n                  description: The OAuth app client key for which to create the token.\n                  maxLength: 20\n                  type: string\n                client_secret:\n                  description: The OAuth app client secret for which to create the\n                    token.\n                  maxLength: 40\n                  type: string\n                fingerprint:\n                  description: A unique string to distinguish an authorization from\n                    others created for the same client ID and user.\n                  type: string\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization\"\n          headers:\n            Location:\n              example: https://api.github.com/authorizations/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n    get:\n      summary: List your authorizations\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/),\n        which is used by integrations to create personal access tokens and OAuth tokens,\n        and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/)\n        will be removed on November, 13, 2020. For more information, including scheduled\n        brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\"\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/list-authorizations\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#list-your-authorizations\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/authorizations/clients/{client_id}/{fingerprint}\":\n    put:\n      summary: Get-or-create an authorization for a specific app and fingerprint\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        **Warning:** Apps must use the [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow) to obtain OAuth tokens that work with GitHub Enterprise Server SAML organizations. OAuth tokens created using the Authorizations API will be unable to access GitHub Enterprise Server SAML organizations. For more information, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-11-05-deprecated-passwords-and-authorizations-api).\n\n        This method will create a new authorization for the specified OAuth application, only if an authorization for that application and fingerprint do not already exist for the user. The URL includes the 20 character client ID for the OAuth app that is requesting the token. `fingerprint` is a unique string to distinguish an authorization from others created for the same client ID and user. It returns the user's existing authorization for the application if one is present. Otherwise, it creates and returns a new one.\n\n        If you have two-factor authentication setup, Basic Authentication for this endpoint requires that you use a one-time password (OTP) and your username and password instead of tokens. For more information, see \"[Working with two-factor authentication](https://developer.github.com/enterprise/2.20/v3/auth/#working-with-two-factor-authentication).\"\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/get-or-create-authorization-for-app-and-fingerprint\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#get-or-create-an-authorization-for-a-specific-app-and-fingerprint\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      - name: fingerprint\n        description: fingerprint parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                client_secret:\n                  description: The OAuth app client secret for which to create the\n                    token.\n                  maxLength: 40\n                  type: string\n                scopes:\n                  description: A list of scopes that this authorization is in.\n                  type: array\n                  items:\n                    type: string\n                  example:\n                  - public_repo\n                  - user\n                  nullable: true\n                note:\n                  description: A note to remind you what the OAuth token is for.\n                  type: string\n                  example: Update all gems\n                note_url:\n                  description: A URL to remind you what app the OAuth token is for.\n                  type: string\n              required:\n              - client_secret\n              type: object\n      responses:\n        '200':\n          description: Response if returning an existing token\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                response-if-returning-an-existing-token:\n                  \"$ref\": \"#/components/examples/authorization-response-if-returning-an-existing-token\"\n          headers:\n            Location:\n              example: https://api.github.com/authorizations/1\n              schema:\n                type: string\n        '201':\n          description: Response if returning a new token\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-3\"\n          headers:\n            Location:\n              example: https://api.github.com/authorizations/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/authorizations/{authorization_id}\":\n    delete:\n      summary: Delete an authorization\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/),\n        which is used by integrations to create personal access tokens and OAuth tokens,\n        and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/)\n        will be removed on November, 13, 2020. For more information, including scheduled\n        brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\"\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/delete-authorization\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#delete-an-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/authorization_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n    get:\n      summary: Get a single authorization\n      description: \"**Deprecation Notice:** GitHub Enterprise Server will discontinue\n        the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/),\n        which is used by integrations to create personal access tokens and OAuth tokens,\n        and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n        The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/)\n        will be removed on November, 13, 2020. For more information, including scheduled\n        brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\"\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/get-authorization\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#get-a-single-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/authorization_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-2\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n    patch:\n      summary: Update an existing authorization\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        If you have two-factor authentication setup, Basic Authentication for this endpoint requires that you use a one-time password (OTP) and your username and password instead of tokens. For more information, see \"[Working with two-factor authentication](https://developer.github.com/enterprise/2.20/v3/auth/#working-with-two-factor-authentication).\"\n\n        You can only send one of these scope keys at a time.\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/update-authorization\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#update-an-existing-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/authorization_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                scopes:\n                  description: A list of scopes that this authorization is in.\n                  type: array\n                  items:\n                    type: string\n                  example:\n                  - public_repo\n                  - user\n                  nullable: true\n                add_scopes:\n                  description: A list of scopes to add to this authorization.\n                  type: array\n                  items:\n                    type: string\n                remove_scopes:\n                  description: A list of scopes to remove from this authorization.\n                  type: array\n                  items:\n                    type: string\n                note:\n                  description: A note to remind you what the OAuth token is for.\n                  type: string\n                  example: Update all gems\n                note_url:\n                  description: A URL to remind you what app the OAuth token is for.\n                  type: string\n                fingerprint:\n                  description: A unique string to distinguish an authorization from\n                    others created for the same client ID and user.\n                  type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-2\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/authorizations/clients/{client_id}\":\n    put:\n      summary: Get-or-create an authorization for a specific app\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n\n        **Warning:** Apps must use the [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow) to obtain OAuth tokens that work with GitHub Enterprise Server SAML organizations. OAuth tokens created using the Authorizations API will be unable to access GitHub Enterprise Server SAML organizations. For more information, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-11-05-deprecated-passwords-and-authorizations-api).\n\n        Creates a new authorization for the specified OAuth application, only if an authorization for that application doesn't already exist for the user. The URL includes the 20 character client ID for the OAuth app that is requesting the token. It returns the user's existing authorization for the application if one is present. Otherwise, it creates and returns a new one.\n\n        If you have two-factor authentication setup, Basic Authentication for this endpoint requires that you use a one-time password (OTP) and your username and password instead of tokens. For more information, see \"[Working with two-factor authentication](https://developer.github.com/enterprise/2.20/v3/auth/#working-with-two-factor-authentication).\"\n\n        **Deprecation Notice:** GitHub Enterprise Server will discontinue the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/), which is used by integrations to create personal access tokens and OAuth tokens, and you must now create these tokens using our [web application flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow). The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/) will be removed on November, 13, 2020. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\n      tags:\n      - oauth-authorizations\n      operationId: oauth-authorizations/get-or-create-authorization-for-app\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#get-or-create-an-authorization-for-a-specific-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                client_secret:\n                  description: The OAuth app client secret for which to create the\n                    token.\n                  maxLength: 40\n                  type: string\n                scopes:\n                  description: A list of scopes that this authorization is in.\n                  type: array\n                  items:\n                    type: string\n                  example:\n                  - public_repo\n                  - user\n                  nullable: true\n                note:\n                  description: A note to remind you what the OAuth token is for.\n                  type: string\n                  example: Update all gems\n                note_url:\n                  description: A URL to remind you what app the OAuth token is for.\n                  type: string\n                fingerprint:\n                  description: A unique string to distinguish an authorization from\n                    others created for the same client ID and user.\n                  type: string\n              required:\n              - client_secret\n              type: object\n      responses:\n        '200':\n          description: Response if returning an existing token\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                response-if-returning-an-existing-token:\n                  \"$ref\": \"#/components/examples/authorization-response-if-returning-an-existing-token-2\"\n          headers:\n            Location:\n              example: https://api.github.com/authorizations/1\n              schema:\n                type: string\n        '201':\n          description: \"**Deprecation Notice:** GitHub will discontinue the [OAuth\n            Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/),\n            which is used by integrations to create personal access tokens and OAuth\n            tokens, and you must now create these tokens using our [web application\n            flow](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/authorizing-oauth-apps/#web-application-flow).\n            The [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/)\n            will be removed on November, 13, 2020. For more information, including\n            scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-auth-endpoint/).\"\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization\"\n          headers:\n            Location:\n              example: https://api.github.com/authorizations/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2020-11-13'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/repos/{owner}/{repo}/community/code_of_conduct\":\n    get:\n      summary: Get the code of conduct for a repository\n      description: This method returns the contents of the repository's code of conduct\n        file, if one is detected.\n      tags:\n      - codes-of-conduct\n      operationId: codes-of-conduct/get-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/codes_of_conduct/#get-the-code-of-conduct-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-of-conduct\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-of-conduct-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: scarlet-witch\n          note: |-\n            The Codes of Conduct API is currently available for developers to preview.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.scarlet-witch-preview+json\n            ```\n  \"/codes_of_conduct/{key}\":\n    get:\n      summary: Get a code of conduct\n      description: ''\n      tags:\n      - codes-of-conduct\n      operationId: codes-of-conduct/get-conduct-code\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/codes_of_conduct/#get-a-code-of-conduct\n      parameters:\n      - name: key\n        description: key parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/code-of-conduct\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-of-conduct\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: scarlet-witch\n          note: |-\n            The Codes of Conduct API is currently available for developers to preview.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.scarlet-witch-preview+json\n            ```\n  \"/codes_of_conduct\":\n    get:\n      summary: Get all codes of conduct\n      description: ''\n      tags:\n      - codes-of-conduct\n      operationId: codes-of-conduct/get-all-codes-of-conduct\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/codes_of_conduct/#get-all-codes-of-conduct\n      parameters: []\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/code-of-conduct\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/code-of-conduct-simple-items\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: scarlet-witch\n          note: |-\n            The Codes of Conduct API is currently available for developers to preview.\n\n            To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.scarlet-witch-preview+json\n            ```\n  \"/user/followers\":\n    get:\n      summary: List followers of the authenticated user\n      description: Lists the people following the authenticated user.\n      tags:\n      - users\n      operationId: users/list-followers-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#list-followers-of-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/following\":\n    get:\n      summary: List the people the authenticated user follows\n      description: Lists the people who the authenticated user follows.\n      tags:\n      - users\n      operationId: users/list-followed-by-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#list-the-people-the-authenticated-user-follows\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/gpg_keys\":\n    get:\n      summary: List GPG keys for the authenticated user\n      description: Lists the current user's GPG keys. Requires that you are authenticated\n        via Basic Auth or via OAuth with at least `read:gpg_key` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/list-gpg-keys-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/gpg_keys/#list-gpg-keys-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/gpg-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gpg-key-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    post:\n      summary: Create a GPG key for the authenticated user\n      description: Adds a GPG key to the authenticated user's GitHub account. Requires\n        that you are authenticated via Basic Auth, or OAuth with at least `write:gpg_key`\n        [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: users/create-gpg-key-for-authenticated\n      tags:\n      - users\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/gpg_keys/#create-a-gpg-key-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                armored_public_key:\n                  description: A GPG key in ASCII-armored format.\n                  type: string\n              type: object\n              required:\n              - armored_public_key\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gpg-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gpg-key\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/keys/{key_id}\":\n    delete:\n      summary: Delete a public SSH key for the authenticated user\n      description: Removes a public SSH key from the authenticated user's GitHub account.\n        Requires that you are authenticated via Basic Auth or via OAuth with at least\n        `admin:public_key` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/delete-public-ssh-key-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/keys/#delete-a-public-ssh-key-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/key_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Get a public SSH key for the authenticated user\n      description: View extended details for a single public SSH key. Requires that\n        you are authenticated via Basic Auth or via OAuth with at least `read:public_key`\n        [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/get-public-ssh-key-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/keys/#get-a-public-ssh-key-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/key_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/key\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/gpg_keys/{gpg_key_id}\":\n    get:\n      summary: Get a GPG key for the authenticated user\n      description: View extended details for a single GPG key. Requires that you are\n        authenticated via Basic Auth or via OAuth with at least `read:gpg_key` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/get-gpg-key-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/gpg_keys/#get-a-gpg-key-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/gpg_key_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gpg-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gpg-key\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Delete a GPG key for the authenticated user\n      description: Removes a GPG key from the authenticated user's GitHub account.\n        Requires that you are authenticated via Basic Auth or via OAuth with at least\n        `admin:gpg_key` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/delete-gpg-key-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/gpg_keys/#delete-a-gpg-key-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/gpg_key_id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/emails\":\n    post:\n      summary: Add an email address for the authenticated user\n      description: This endpoint is accessible with the `user` scope.\n      tags:\n      - users\n      operationId: users/add-email-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/emails/#add-an-email-address-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                properties:\n                  emails:\n                    description: Adds one or more email addresses to your GitHub account.\n                      Must contain at least one email address. **Note:** Alternatively,\n                      you can pass a single email address or an `array` of emails\n                      addresses directly, but we recommend that you pass an object\n                      using the `emails` key.\n                    type: array\n                    items:\n                      type: string\n                      example: username@example.com\n                      minItems: 1\n                    example: []\n                required:\n                - emails\n                example:\n                  emails:\n                  - octocat@github.com\n                  - mona@github.com\n              - type: array\n                items:\n                  type: string\n                  example: username@example.com\n                  minItems: 1\n              - type: string\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/email\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/email-items\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Delete an email address for the authenticated user\n      description: This endpoint is accessible with the `user` scope.\n      tags:\n      - users\n      operationId: users/delete-email-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/emails/#delete-an-email-address-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              oneOf:\n              - type: object\n                description: Deletes one or more email addresses from your GitHub\n                  account. Must contain at least one email address. **Note:** Alternatively,\n                  you can pass a single email address or an `array` of emails addresses\n                  directly, but we recommend that you pass an object using the `emails`\n                  key.\n                properties:\n                  emails:\n                    description: Email addresses associated with the GitHub user account.\n                    type: array\n                    items:\n                      type: string\n                      example: username@example.com\n                      minItems: 1\n                    example:\n                      emails:\n                      - octocat@github.com\n                      - mona@github.com\n                required:\n                - emails\n              - type: array\n                items:\n                  type: string\n                  example: username@example.com\n                  minItems: 1\n              - type: string\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: List email addresses for the authenticated user\n      description: Lists all of your email addresses, and specifies which one is visible\n        to the public. This endpoint is accessible with the `user:email` scope.\n      tags:\n      - users\n      operationId: users/list-emails-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/emails/#list-email-addresses-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/email\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/email-items-2\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/following/{username}\":\n    put:\n      summary: Follow a user\n      description: |-\n        Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n\n        Following a user requires the user to be logged in and authenticated with basic auth or OAuth with the `user:follow` scope.\n      tags:\n      - users\n      operationId: users/follow\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#follow-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Unfollow a user\n      description: Unfollowing a user requires the user to be logged in and authenticated\n        with basic auth or OAuth with the `user:follow` scope.\n      tags:\n      - users\n      operationId: users/unfollow\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#unfollow-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Check if a person is followed by the authenticated user\n      description: ''\n      tags:\n      - users\n      operationId: users/check-person-is-followed-by-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#check-if-a-person-is-followed-by-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response if the person is followed by the authenticated user\n        '404':\n          description: Response if the person is not followed by the authenticated\n            user\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/basic-error\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user/public_emails\":\n    get:\n      summary: List public email addresses for the authenticated user\n      description: Lists your publicly visible email address, which you can set with\n        the [Set primary email visibility for the authenticated user](https://developer.github.com/enterprise/2.20/v3/users/emails/#set-primary-email-visibility-for-the-authenticated-user)\n        endpoint. This endpoint is accessible with the `user:email` scope.\n      tags:\n      - users\n      operationId: users/list-public-emails-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/emails/#list-public-email-addresses-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/email\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/email-items-2\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/following\":\n    get:\n      summary: List the people a user follows\n      description: Lists the people who the specified user follows.\n      tags:\n      - users\n      operationId: users/list-following-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#list-the-people-a-user-follows\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}\":\n    get:\n      summary: Get a user\n      description: |-\n        Provides publicly available information about someone with a GitHub account.\n\n        GitHub Apps with the `Plan` user permission can use this endpoint to retrieve information about a user's GitHub Enterprise Server plan. The GitHub App must be authenticated as a user. See \"[Identifying and authorizing users for GitHub Apps](https://developer.github.com/enterprise/2.20/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/)\" for details about authentication. For an example response, see \"[Response with GitHub Enterprise Server plan information](https://developer.github.com/enterprise/2.20/v3/users/#response-with-github-plan-information).\"\n\n        The `email` key in the following response is the publicly visible email address from your GitHub Enterprise Server [profile page](https://github.com/settings/profile). When setting up your profile, you can select a primary email address to be “public” which provides an email entry for this endpoint. If you do not set a public email address for `email`, then it will have a value of `null`. You only see publicly visible email addresses when authenticated with GitHub Enterprise Server. For more information, see [Authentication](https://developer.github.com/enterprise/2.20/v3/#authentication).\n\n        The Emails API enables you to list all of your email addresses, and toggle a primary email to be visible publicly. For more information, see \"[Emails API](https://developer.github.com/enterprise/2.20/v3/users/emails/)\".\n      tags:\n      - users\n      operationId: users/get-by-username\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/#get-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                oneOf:\n                - \"$ref\": \"#/components/schemas/private-user\"\n                - \"$ref\": \"#/components/schemas/public-user\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/public-user-default-response\"\n                response-with-git-hub-plan-information:\n                  \"$ref\": \"#/components/examples/public-user-response-with-git-hub-plan-information\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/gpg_keys\":\n    get:\n      summary: List GPG keys for a user\n      description: Lists the GPG keys for a user. This information is accessible by\n        anyone.\n      tags:\n      - users\n      operationId: users/list-gpg-keys-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/gpg_keys/#list-gpg-keys-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/gpg-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gpg-key-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/following/{target_user}\":\n    get:\n      summary: Check if a user follows another user\n      description: ''\n      tags:\n      - users\n      operationId: users/check-following-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#check-if-a-user-follows-another-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - name: target_user\n        description: target_user parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '204':\n          description: Response if the user follows the target user\n        '404':\n          description: Response if the user does not follow the target user\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/keys\":\n    post:\n      summary: Create a public SSH key for the authenticated user\n      description: Adds a public SSH key to the authenticated user's GitHub account.\n        Requires that you are authenticated via Basic Auth, or OAuth with at least\n        `write:public_key` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: users/create-public-ssh-key-for-authenticated\n      tags:\n      - users\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/keys/#create-a-public-ssh-key-for-the-authenticated-user\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                title:\n                  description: A descriptive name for the new key.\n                  type: string\n                  example: Personal MacBook Air\n                key:\n                  description: The public SSH key to add to your GitHub account.\n                  type: string\n                  pattern: \"^ssh-(rsa|dss|ed25519) |^ecdsa-sha2-nistp(256|384|521) \"\n              required:\n              - key\n              type: object\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/key\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: List public SSH keys for the authenticated user\n      description: Lists the public SSH keys for the authenticated user's GitHub account.\n        Requires that you are authenticated via Basic Auth or via OAuth with at least\n        `read:public_key` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      tags:\n      - users\n      operationId: users/list-public-ssh-keys-for-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/keys/#list-public-ssh-keys-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/key-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/user\":\n    get:\n      summary: Get the authenticated user\n      description: |-\n        If the authenticated user is authenticated through basic authentication or OAuth with the `user` scope, then the response lists public and private profile information.\n\n        If the authenticated user is authenticated through OAuth without the `user` scope, then the response lists only public profile information.\n      tags:\n      - users\n      operationId: users/get-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/#get-the-authenticated-user\n      parameters: []\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                oneOf:\n                - \"$ref\": \"#/components/schemas/private-user\"\n                - \"$ref\": \"#/components/schemas/public-user\"\n              examples:\n                response-with-public-and-private-profile-information:\n                  \"$ref\": \"#/components/examples/private-user-response-with-public-and-private-profile-information\"\n                response-with-public-profile-information:\n                  \"$ref\": \"#/components/examples/private-user-response-with-public-profile-information\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    patch:\n      summary: Update the authenticated user\n      description: \"**Note:** If your email is set to private and you send an `email`\n        parameter as part of this request to update your profile, your privacy settings\n        are still enforced: the email address will not be displayed on your public\n        profile or via the API.\"\n      tags:\n      - users\n      operationId: users/update-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/#update-the-authenticated-user\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  description: The new name of the user.\n                  type: string\n                  example: Omar Jahandar\n                email:\n                  description: The publicly visible email address of the user.\n                  type: string\n                  example: omar@example.com\n                blog:\n                  description: The new blog URL of the user.\n                  type: string\n                  example: blog.example.com\n                twitter_username:\n                  description: The new Twitter username of the user.\n                  type: string\n                  example: therealomarj\n                  nullable: true\n                company:\n                  description: The new company of the user.\n                  type: string\n                  example: Acme corporation\n                location:\n                  description: The new location of the user.\n                  type: string\n                  example: Berlin, Germany\n                hireable:\n                  description: The new hiring availability of the user.\n                  type: boolean\n                bio:\n                  description: The new short biography of the user.\n                  type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/private-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/private-user\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users\":\n    get:\n      summary: List users\n      description: |-\n        Lists all users, in the order that they signed up on GitHub Enterprise Server. This list includes personal user accounts and organization accounts.\n\n        Note: Pagination is powered exclusively by the `since` parameter. Use the [Link header](https://developer.github.com/enterprise/2.20/v3/#link-header) to get the URL for the next page of users.\n      tags:\n      - users\n      operationId: users/list\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/#list-users\n      parameters:\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              example: <https://api.github.com/users?since=135>; rel=\"next\"\n              schema:\n                type: string\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/hovercard\":\n    get:\n      summary: Get contextual information for a user\n      description: |-\n        Provides hovercard information when authenticated through basic auth or OAuth with the `repo` scope. You can find out more about someone in relation to their pull requests, issues, repositories, and organizations.\n\n        The `subject_type` and `subject_id` parameters provide context for the person's hovercard, which returns more information than without the parameters. For example, if you wanted to find out more about `octocat` who owns the `Spoon-Knife` repository via cURL, it would look like this:\n\n        ```shell\n         curl -u username:token\n          https://api.github.com/users/octocat/hovercard?subject_type=repository&subject_id=1300192\n        ```\n      tags:\n      - users\n      operationId: users/get-context-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/#get-contextual-information-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - name: subject_type\n        description: Identifies which additional information you'd like to receive\n          about the person's hovercard. Can be `organization`, `repository`, `issue`,\n          `pull_request`. **Required** when using `subject_id`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - organization\n          - repository\n          - issue\n          - pull_request\n      - name: subject_id\n        description: Uses the ID for the `subject_type` you specified. **Required**\n          when using `subject_type`.\n        in: query\n        required: false\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/hovercard\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/hovercard\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/keys\":\n    get:\n      summary: List public keys for a user\n      description: Lists the _verified_ public SSH keys for a user. This is accessible\n        by anyone.\n      tags:\n      - users\n      operationId: users/list-public-keys-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/keys/#list-public-keys-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/key-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/key-simple-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/users/{username}/followers\":\n    get:\n      summary: List followers of a user\n      description: Lists the people following the specified user.\n      tags:\n      - users\n      operationId: users/list-followers-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/users/followers/#list-followers-of-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/teams/{team_id}/members/{username}\":\n    put:\n      summary: Add team member (Legacy)\n      description: |-\n        The \"Add team member\" endpoint (described below) is deprecated.\n\n        We recommend using the [Add or update team membership for a user](https://developer.github.com/enterprise/2.20/v3/teams/members/#add-or-update-team-membership-for-a-user) endpoint instead. It allows you to invite new organization members to your teams.\n\n        Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        To add someone to a team, the authenticated user must be an organization owner or a team maintainer in the team they're changing. The person being added to the team must be a member of the team's organization.\n\n        **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"[Synchronizing teams between your identity provider and GitHub Enterprise Server](https://help.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/).\"\n\n        Note that you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      tags:\n      - teams\n      operationId: teams/add-member-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/members/#add-team-member-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          description: Response if team synchronization is set up\n        '422':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        code:\n                          type: string\n                        field:\n                          type: string\n                        resource:\n                          type: string\n                  documentation_url:\n                    type: string\n                    example: '\"https://developer.github.com/enterprise/2.20/v3\"'\n              examples:\n                response-if-you-attempt-to-add-an-organization-to-a-team:\n                  summary: Response if you attempt to add an organization to a team\n                  value:\n                    message: Cannot add an organization as a member.\n                    errors:\n                    - code: org\n                      field: user\n                      resource: TeamMember\n                response-if-you-attempt-to-add-a-user-to-a-team-when-they-are-not-a-member-of-at-least-one-other-team-in-the-same-organization:\n                  summary: Response if you attempt to add a user to a team when they\n                    are not a member of at least one other team in the same organization\n                  value:\n                    message: User isn't a member of this organization. Please invite\n                      them first.\n                    errors:\n                    - code: unaffiliated\n                      field: user\n                      resource: TeamMember\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n      deprecated: true\n    delete:\n      summary: Remove team member (Legacy)\n      description: |-\n        The \"Remove team member\" endpoint (described below) is deprecated.\n\n        We recommend using the [Remove team membership for a user](https://developer.github.com/enterprise/2.20/v3/teams/members/#remove-team-membership-for-a-user) endpoint instead. It allows you to remove both active and pending memberships.\n\n        Team synchronization is available for organizations using GitHub Enterprise Cloud. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        To remove a team member, the authenticated user must have 'admin' permissions to the team or be an owner of the org that the team is associated with. Removing a team member does not delete the user, it just removes them from the team.\n\n        **Note:** When you have team synchronization set up for a team with your organization's identity provider (IdP), you will see an error if you attempt to use the API for making changes to the team's membership. If you have access to manage group membership in your IdP, you can manage GitHub Enterprise Server team membership through your identity provider, which automatically adds and removes team members in an organization. For more information, see \"[Synchronizing teams between your identity provider and GitHub Enterprise Server](https://help.github.com/articles/synchronizing-teams-between-your-identity-provider-and-github/).\"\n      tags:\n      - teams\n      operationId: teams/remove-member-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/members/#remove-team-member-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          description: Response if team synchronization is setup\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n      deprecated: true\n    get:\n      summary: Get team member (Legacy)\n      description: |-\n        The \"Get team member\" endpoint (described below) is deprecated.\n\n        We recommend using the [Get team membership for a user](https://developer.github.com/enterprise/2.20/v3/teams/members/#get-team-membership-for-a-user) endpoint instead. It allows you to get both active and pending memberships.\n\n        To list members in a team, the team must be visible to the authenticated user.\n      tags:\n      - teams\n      operationId: teams/get-member-legacy\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/members/#get-team-member-legacy\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Response if user is a member\n        '404':\n          description: Response if user is not a member\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n        removalDate: '2021-02-01'\n        deprecationDate: '2020-01-21'\n      deprecated: true\n  \"/teams/{team_id}/projects\":\n    get:\n      summary: List team projects\n      description: Lists the organization projects for a team. If you are an [authenticated](https://developer.github.com/enterprise/2.20/v3/#authentication)\n        site administrator for your Enterprise instance, you will be able to list\n        all projects for the team. If you pass the `hellcat-preview` media type, the\n        response will include projects inherited from a parent team.\n      operationId: teams/list-projects\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#list-team-projects\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.inertia-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team-project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-project-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n  \"/teams/{team_id}/repos/{owner}/{repo}\":\n    get:\n      summary: Check team permissions for a repository\n      description: |-\n        **Note**: If you pass the `hellcat-preview` media type, repositories inherited through a parent team will be checked.\n\n        You can also get information about the specified repository, including what permissions the team grants on it, by passing the following custom [media type](https://developer.github.com/enterprise/2.20/v3/media/) via the `Accept` header:\n      operationId: teams/check-permissions-for-repo\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#check-team-permissions-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: Alternative response with extra repository information\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/minimal-repository\"\n            application/vnd.github.v3.repository+json:\n              schema:\n                \"$ref\": \"#/components/schemas/full-repository\"\n              examples:\n                alternative-response-with-extra-repository-information:\n                  \"$ref\": \"#/components/examples/minimal-repository-alternative-response-with-extra-repository-information\"\n        '204':\n          description: Response if repository is managed by this team\n        '404':\n          description: Response if repository is not managed by this team\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n    put:\n      summary: Add or update team repository permissions\n      description: |-\n        To add a repository to a team or update the team's permission on a repository, the authenticated user must have admin access to the repository, and must be able to see the team. The repository must be owned by the organization, or a direct fork of a repository owned by the organization. You will get a `422 Unprocessable Entity` status if you attempt to add a repository to a team that is not owned by the organization.\n\n        Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      operationId: teams/add-or-update-repo-permissions\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#add-or-update-team-repository-permissions\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                permission:\n                  type: string\n                  description: \"The permission to grant the team on this repository.\n                    Can be one of:  \\n\\\\* `pull` - team members can pull, but not\n                    push to or administer this repository.  \\n\\\\* `push` - team members\n                    can pull and push, but not administer this repository.  \\n\\\\*\n                    `admin` - team members can pull, push and administer this repository.\n                    \\ \\n  \\nIf no permission is specified, the team's `permission`\n                    attribute will be used to determine what permission to grant the\n                    team on this repository.  \\n**Note**: If you pass the `hellcat-preview`\n                    media type, you can promote—but not demote—a `permission` attribute\n                    inherited through a parent team.\"\n                  enum:\n                  - pull\n                  - push\n                  - admin\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n    delete:\n      summary: Remove a repository from a team\n      description: 'If the authenticated user is an organization owner or a team maintainer,\n        they can remove any repositories from the team. To remove a repository from\n        a team as an organization member, the authenticated user must have admin access\n        to the repository and must be able to see the team. NOTE: This does not delete\n        the repository, it just removes it from the team.'\n      operationId: teams/remove-repo\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#remove-a-repository-from-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/teams/{team_id}/discussions/{discussion_number}/comments/{comment_number}\":\n    get:\n      summary: Get a discussion comment\n      description: Get a specific comment on a team discussion. OAuth access tokens\n        require the `read:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/get-discussion-comment\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/#get-a-discussion-comment\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-discussion-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion-comment\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    delete:\n      summary: Delete a discussion comment\n      description: Deletes a comment on a team discussion. OAuth access tokens require\n        the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/delete-discussion-comment\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/#delete-a-discussion-comment\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n    patch:\n      summary: Update a discussion comment\n      description: Edits the body text of a discussion comment. OAuth access tokens\n        require the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/update-discussion-comment\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/#update-a-discussion-comment\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/comment-number\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-discussion-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion-comment-2\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The discussion comment's body text.\n              required:\n              - body\n            example:\n              body: Do you like pineapples?\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/teams/{team_id}/discussions/{discussion_number}\":\n    get:\n      summary: Get a discussion\n      description: Get a specific discussion on a team's page. OAuth access tokens\n        require the `read:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/get-discussion\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussions/#get-a-discussion\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-discussion\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    delete:\n      summary: Delete a discussion\n      description: Delete a discussion from a team's page. OAuth access tokens require\n        the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/delete-discussion\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussions/#delete-a-discussion\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n    patch:\n      summary: Update a discussion\n      description: Edits the title and body text of a discussion post. Only the parameters\n        you provide are updated. OAuth access tokens require the `write:discussion`\n        [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/update-discussion\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussions/#update-a-discussion\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-discussion\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion-2\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The discussion post's title.\n                body:\n                  type: string\n                  description: The discussion post's body text.\n            example:\n              title: Welcome to our first team post\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/teams/{team_id}/memberships/{username}\":\n    put:\n      summary: Add or update team membership for a user\n      description: |-\n        If the user is already a member of the team's organization, this endpoint will add the user to the team. To add a membership between an organization member and a team, the authenticated user must be an organization owner or a team maintainer.\n\n        If the user is unaffiliated with the team's organization, this endpoint will send an invitation to the user via email. This newly-created membership will be in the \"pending\" state until the user accepts the invitation, at which point the membership will transition to the \"active\" state and the user will be added as a member of the team. To add a membership between an unaffiliated user and a team, the authenticated user must be an organization owner.\n\n        If the user is already a member of the team, this endpoint will update the role of the team member's role. To update the membership of a team member, the authenticated user must be an organization owner or a team maintainer.\n      operationId: teams/add-or-update-membership-for-user\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/members/#add-or-update-team-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-membership\"\n              examples:\n                response-if-users-membership-with-team-is-now-active:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-users-membership-with-team-is-now-active\"\n                response-if-users-membership-with-team-is-now-pending:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-users-membership-with-team-is-now-pending\"\n        '422':\n          description: Response if you attempt to add an organization to a team\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        code:\n                          type: string\n                        field:\n                          type: string\n                        resource:\n                          type: string\n              examples:\n                response-if-you-attempt-to-add-an-organization-to-a-team:\n                  value:\n                    message: Cannot add an organization as a member.\n                    errors:\n                    - code: org\n                      field: user\n                      resource: TeamMember\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                role:\n                  type: string\n                  description: \"The role that this user should have in the team. Can\n                    be one of:  \\n\\\\* `member` - a normal member of the team.  \\n\\\\*\n                    `maintainer` - a team maintainer. Able to add/remove other team\n                    members, promote other team members to team maintainer, and edit\n                    the team's name and description.\"\n                  enum:\n                  - member\n                  - maintainer\n                  default: member\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get team membership for a user\n      description: |-\n        If you pass the `hellcat-preview` media type, team members will include the members of child teams.\n\n        To get a user's membership with a team, the team must be visible to the authenticated user.\n\n        **Note:** The `role` for organization owners returns as `maintainer`. For more information about `maintainer` roles, see [Create a team](https://developer.github.com/enterprise/2.20/v3/teams/#create-a-team).\n      operationId: teams/get-membership-for-user\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/members/#get-team-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-membership\"\n              examples:\n                response-if-user-has-an-active-membership-with-team:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-user-has-an-active-membership-with-team\"\n                response-if-user-is-a-team-maintainer:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-user-is-a-team-maintainer\"\n                response-if-user-has-a-pending-membership-with-team:\n                  \"$ref\": \"#/components/examples/team-membership-response-if-user-has-a-pending-membership-with-team\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n    delete:\n      summary: Remove team membership for a user\n      description: To remove a membership between a user and a team, the authenticated\n        user must have 'admin' permissions to the team or be an owner of the organization\n        that the team is associated with. Removing team membership does not delete\n        the user, it just removes their membership from the team.\n      operationId: teams/remove-membership-for-user\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/members/#remove-team-membership-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/teams/{team_id}/discussions\":\n    post:\n      summary: Create a discussion\n      description: |-\n        Creates a new discussion post on a team's page. OAuth access tokens require the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" for details.\n      operationId: teams/create-discussion\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussions/#create-a-discussion\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-discussion\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The discussion post's title.\n                body:\n                  type: string\n                  description: The discussion post's body text.\n                private:\n                  type: boolean\n                  description: Private posts are only visible to team members, organization\n                    owners, and team maintainers. Public posts are visible to all\n                    members of the organization. Set to `true` to create a private\n                    post.\n                  default: false\n              required:\n              - title\n              - body\n            example:\n              title: Our first team post\n              body: Hi! This is an area for us to collaborate as a team.\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    get:\n      summary: List discussions\n      description: List all discussions on a team's page. OAuth access tokens require\n        the `read:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/list-discussions\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussions/#list-discussions\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team-discussion\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/teams/{team_id}\":\n    delete:\n      summary: Delete a team\n      description: |-\n        To delete a team, the authenticated user must be an organization owner or team maintainer.\n\n        If you are an organization owner and you pass the `hellcat-preview` media type, deleting a parent team will delete all of its child teams as well.\n      operationId: teams/delete\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#delete-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n    get:\n      summary: Get a team\n      description: ''\n      operationId: teams/get\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#get-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-full\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n    patch:\n      summary: Update a team\n      description: |-\n        To edit a team, the authenticated user must either be an organization owner or a team maintainer.\n\n        **Note:** With nested teams, the `privacy` for parent teams cannot be `secret`.\n      operationId: teams/update\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#update-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-full\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the team.\n                description:\n                  type: string\n                  description: The description of the team.\n                privacy:\n                  type: string\n                  description: \"The level of privacy this team should have. Editing\n                    teams without specifying this parameter leaves `privacy` intact.\n                    The options are:  \\n**For a non-nested team:**  \\n\\\\* `secret`\n                    - only visible to organization owners and members of this team.\n                    \\ \\n\\\\* `closed` - visible to all members of this organization.\n                    \\ \\n**For a parent or child team:**  \\n\\\\* `closed` - visible\n                    to all members of this organization.\"\n                  enum:\n                  - secret\n                  - closed\n                permission:\n                  type: string\n                  description: \"**Deprecated**. The permission that new repositories\n                    will be added to the team with when none is specified. Can be\n                    one of:  \\n\\\\* `pull` - team members can pull, but not push to\n                    or administer newly-added repositories.  \\n\\\\* `push` - team members\n                    can pull and push, but not administer newly-added repositories.\n                    \\ \\n\\\\* `admin` - team members can pull, push and administer newly-added\n                    repositories.\"\n                  enum:\n                  - pull\n                  - push\n                  - admin\n                  default: pull\n                parent_team_id:\n                  type: integer\n                  description: 'The ID of a team to set as the parent team. **Note**:\n                    You must pass the `hellcat-preview` media type to use this parameter.'\n              required:\n              - name\n            example:\n              name: new team name\n              description: new team description\n              privacy: closed\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n  \"/teams/{team_id}/discussions/{discussion_number}/comments\":\n    get:\n      summary: List discussion comments\n      description: List all comments on a team discussion. OAuth access tokens require\n        the `read:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n      operationId: teams/list-discussion-comments\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/#list-discussion-comments\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team-discussion-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    post:\n      summary: Create a discussion comment\n      description: |-\n        Creates a new comment on a team discussion. OAuth access tokens require the `write:discussion` [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" for details.\n      operationId: teams/create-discussion-comment\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/discussion_comments/#create-a-discussion-comment\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.echo-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/discussion-number\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-discussion-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-discussion-comment\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The discussion comment's body text.\n              required:\n              - body\n            example:\n              body: Do you like apples?\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: echo\n          note: |-\n            The team discussions API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-02-07-team-discussions-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.echo-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/teams/{team_id}/projects/{project_id}\":\n    delete:\n      summary: Remove a project from a team\n      description: Removes an organization project from a team. An organization owner\n        or a team maintainer can remove any project from the team. To remove a project\n        from a team as an organization member, the authenticated user must have `read`\n        access to both the team and project, or `admin` access to the team or project.\n        **Note:** This endpoint removes the project from the team, but does not delete\n        it.\n      operationId: teams/remove-project\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#remove-a-project-from-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/project-id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Check team permissions for a project\n      description: Checks whether a team has `read`, `write`, or `admin` permissions\n        for an organization project. If you pass the `hellcat-preview` media type,\n        the response will include projects inherited from a parent team.\n      operationId: teams/check-permissions-for-project\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#check-team-permissions-for-a-project\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.inertia-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/project-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-project\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-project\"\n        '404':\n          description: Response if project is not managed by this team\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n    put:\n      summary: Add or update team project permissions\n      description: Adds an organization project to a team. To add a project to a team\n        or update the team's permission on a project, the authenticated user must\n        have `admin` permissions for the project. The project and team must be part\n        of the same organization.\n      operationId: teams/add-or-update-project-permissions\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#add-or-update-team-project-permissions\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.inertia-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/project-id\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          description: Response if the project is not owned by the organization\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n              examples:\n                response-if-the-project-is-not-owned-by-the-organization:\n                  value:\n                    message: Must have admin rights to Repository.\n                    documentation_url: https://developer.github.com/enterprise/2.20/v3/teams/#add-or-update-team-project-permissions\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                permission:\n                  type: string\n                  description: \"The permission to grant to the team for this project.\n                    Can be one of:  \\n\\\\* `read` - team members can read, but not\n                    write to or administer this project.  \\n\\\\* `write` - team members\n                    can read and write, but not administer this project.  \\n\\\\* `admin`\n                    - team members can read, write and administer this project.  \\nDefault:\n                    the team's `permission` attribute will be used to determine what\n                    permission to grant the team on this project. Note that, if you\n                    choose not to pass any parameters, you'll need to set `Content-Length`\n                    to zero when calling out to this endpoint. For more information,\n                    see \\\"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\\\"\n                    \\ \\n**Note**: If you pass the `hellcat-preview` media type, you\n                    can promote—but not demote—a `permission` attribute inherited\n                    from a parent team.\"\n                  enum:\n                  - read\n                  - write\n                  - admin\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: inertia\n          note: |-\n            The Projects API is currently available for developers to preview. During the preview period, the API may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-10-27-changes-to-projects-api) for full details. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.inertia-preview+json\n            ```\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n  \"/orgs/{org}/teams\":\n    get:\n      summary: List teams\n      description: Lists all teams in an organization that are visible to the authenticated\n        user.\n      tags:\n      - teams\n      operationId: teams/list\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#list-teams\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Create a team\n      description: |-\n        To create a team, the authenticated user must be a member or owner of `{org}`. By default, organization members can create teams. Organization owners can limit team creation to organization owners. For more information, see \"[Setting team creation permissions](https://help.github.com/en/articles/setting-team-creation-permissions-in-your-organization).\"\n\n        When you create a new team, you automatically become a team maintainer without explicitly adding yourself to the optional array of `maintainers`. For more information, see \"[About teams](https://help.github.com/en/github/setting-up-and-managing-organizations-and-teams/about-teams)\".\n      tags:\n      - teams\n      operationId: teams/create\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#create-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the team.\n                description:\n                  type: string\n                  description: The description of the team.\n                maintainers:\n                  type: array\n                  description: List GitHub IDs for organization members who will become\n                    team maintainers.\n                  items:\n                    type: string\n                repo_names:\n                  type: array\n                  description: The full name (e.g., \"organization-name/repository-name\")\n                    of repositories to add the team to.\n                  items:\n                    type: string\n                privacy:\n                  type: string\n                  description: \"The level of privacy this team should have. The options\n                    are:  \\n**For a non-nested team:**  \\n\\\\* `secret` - only visible\n                    to organization owners and members of this team.  \\n\\\\* `closed`\n                    - visible to all members of this organization.  \\nDefault: `secret`\n                    \\ \\n**For a parent or child team:**  \\n\\\\* `closed` - visible\n                    to all members of this organization.  \\nDefault for child team:\n                    `closed`\"\n                  enum:\n                  - secret\n                  - closed\n                permission:\n                  type: string\n                  description: \"**Deprecated**. The permission that new repositories\n                    will be added to the team with when none is specified. Can be\n                    one of:  \\n\\\\* `pull` - team members can pull, but not push to\n                    or administer newly-added repositories.  \\n\\\\* `push` - team members\n                    can pull and push, but not administer newly-added repositories.\n                    \\ \\n\\\\* `admin` - team members can pull, push and administer newly-added\n                    repositories.\"\n                  enum:\n                  - pull\n                  - push\n                  - admin\n                  default: pull\n                parent_team_id:\n                  type: integer\n                  description: The ID of a team to set as the parent team.\n              required:\n              - name\n            example:\n              name: Justice League\n              description: A great team\n              permission: admin\n              privacy: closed\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-full\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/teams/{team_id}/members\":\n    get:\n      summary: List team members\n      description: |-\n        If you pass the `hellcat-preview` media type, team members will include the members of child teams.\n\n        To list members in a team, the team must be visible to the authenticated user.\n      operationId: teams/list-members\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/members/#list-team-members\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - name: role\n        description: \"Filters members returned by their role in the team. Can be one\n          of:  \\n\\\\* `member` - normal members of the team.  \\n\\\\* `maintainer` -\n          team maintainers.  \\n\\\\* `all` - all members of the team.\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - member\n          - maintainer\n          - all\n          default: all\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n  \"/user/teams\":\n    get:\n      summary: List teams for the authenticated user\n      description: List all of the teams across all of the organizations to which\n        the authenticated user belongs. This method requires `user`, `repo`, or `read:org`\n        [scope](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/)\n        when authenticating via [OAuth](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/).\n      tags:\n      - teams\n      operationId: teams/list-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#list-teams-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-full-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/teams/{team_id}/teams\":\n    get:\n      summary: List child teams\n      description: You must use the `hellcat-preview` media type to use this endpoint.\n      operationId: teams/list-child\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#list-child-teams\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: Response if child teams exist\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/team-2\"\n              examples:\n                response-if-child-teams-exist:\n                  \"$ref\": \"#/components/examples/team-items-response-if-child-teams-exist\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n  \"/teams/{team_id}/repos\":\n    get:\n      summary: List team repositories\n      description: |-\n        **Note**: If you pass the `hellcat-preview` media type, the response will include any repositories inherited through a parent team.\n\n        If you are an [authenticated](https://developer.github.com/enterprise/2.20/v3/#authentication) site administrator for your Enterprise instance, you will be able to list all repositories for the team.\n      operationId: teams/list-repos\n      tags:\n      - teams\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#list-team-repositories\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/minimal-repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/minimal-repository-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\n  \"/orgs/{org}/teams/{team_slug}\":\n    get:\n      summary: Get a team by name\n      description: |-\n        Gets a team using the team's `slug`. GitHub Enterprise Server generates the `slug` from the team `name`.\n\n        **Note:** You can also specify a team by `org_id` and `team_id` using the route `GET /organizations/{org_id}/team/{team_id}`.\n      tags:\n      - teams\n      operationId: teams/get-by-name\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/teams/#get-a-team-by-name\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/team_slug\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/team-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/team-full\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/comments/{comment_id}\":\n    delete:\n      summary: Delete a review comment for a pull request\n      description: Deletes a review comment.\n      tags:\n      - pulls\n      operationId: pulls/delete-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/comments/#delete-a-review-comment-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get a review comment for a pull request\n      description: |-\n        **Note:** Multi-line comments on pull requests are currently in public beta and subject to change.\n\n        Provides details for a review comment.\n\n        **Multi-line comment summary**\n\n        **Note:** New parameters and response fields are available for developers to preview. During the preview period, these response fields may change without advance notice. Please see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-10-03-multi-line-comments) for full details.\n\n        Use the `comfort-fade` preview header and the `line` parameter to show multi-line comment-supported fields in the response.\n\n        If you use the `comfort-fade` preview header, your response will show:\n\n        *   For multi-line comments, values for `start_line`, `original_start_line`, `start_side`, `line`, `original_line`, and `side`.\n        *   For single-line comments, values for `line`, `original_line`, and `side` and a `null` value for `start_line`, `original_start_line`, and `start_side`.\n\n        If you don't use the `comfort-fade` preview header, multi-line and single-line comments will appear the same way in the response with a single `position` attribute. Your response will show:\n\n        *   For multi-line comments, the last line of the comment range for the `position` attribute.\n        *   For single-line comments, the diff-positioned way of referencing comments for the `position` attribute. For more information, see `position` in the [input parameters](https://developer.github.com/enterprise/2.20/v3/pulls/comments/#parameters-2) table.\n\n        The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/enterprise/2.20/v3/reactions) reactions.\n      tags:\n      - pulls\n      operationId: pulls/get-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/comments/#get-a-review-comment-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-comment-2\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: comfort-fade\n          note: |-\n            Multi-line comments in a pull request diff is currently available for developers to preview. To access the new response fields during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.comfort-fade-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    patch:\n      summary: Update a review comment for a pull request\n      description: |-\n        **Note:** Multi-line comments on pull requests are currently in public beta and subject to change.\n\n        Enables you to edit a review comment.\n\n        **Multi-line comment summary**\n\n        **Note:** New parameters and response fields are available for developers to preview. During the preview period, these response fields may change without advance notice. Please see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-10-03-multi-line-comments) for full details.\n\n        Use the `comfort-fade` preview header and the `line` parameter to show multi-line comment-supported fields in the response.\n\n        If you use the `comfort-fade` preview header, your response will show:\n\n        *   For multi-line comments, values for `start_line`, `original_start_line`, `start_side`, `line`, `original_line`, and `side`.\n        *   For single-line comments, values for `line`, `original_line`, and `side` and a `null` value for `start_line`, `original_start_line`, and `start_side`.\n\n        If you don't use the `comfort-fade` preview header, multi-line and single-line comments will appear the same way in the response with a single `position` attribute. Your response will show:\n\n        *   For multi-line comments, the last line of the comment range for the `position` attribute.\n        *   For single-line comments, the diff-positioned way of referencing comments for the `position` attribute. For more information, see `position` in the [input parameters](https://developer.github.com/enterprise/2.20/v3/pulls/comments/#parameters-2) table.\n      tags:\n      - pulls\n      operationId: pulls/update-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/comments/#update-a-review-comment-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The text of the reply to the review comment.\n              required:\n              - body\n            example:\n              body: I like this too!\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-comment-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: comfort-fade\n          note: |-\n            Multi-line comments in a pull request diff is currently available for developers to preview. To access the new response fields during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.comfort-fade-preview+json\n            ```\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/comments\":\n    get:\n      summary: List review comments on a pull request\n      description: |-\n        **Note:** Multi-line comments on pull requests are currently in public beta and subject to change.\n\n        Lists all review comments for a pull request. By default, review comments are in ascending order by ID.\n\n        **Multi-line comment summary**\n\n        **Note:** New parameters and response fields are available for developers to preview. During the preview period, these response fields may change without advance notice. Please see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-10-03-multi-line-comments) for full details.\n\n        Use the `comfort-fade` preview header and the `line` parameter to show multi-line comment-supported fields in the response.\n\n        If you use the `comfort-fade` preview header, your response will show:\n\n        *   For multi-line comments, values for `start_line`, `original_start_line`, `start_side`, `line`, `original_line`, and `side`.\n        *   For single-line comments, values for `line`, `original_line`, and `side` and a `null` value for `start_line`, `original_start_line`, and `start_side`.\n\n        If you don't use the `comfort-fade` preview header, multi-line and single-line comments will appear the same way in the response with a single `position` attribute. Your response will show:\n\n        *   For multi-line comments, the last line of the comment range for the `position` attribute.\n        *   For single-line comments, the diff-positioned way of referencing comments for the `position` attribute. For more information, see `position` in the [input parameters](https://developer.github.com/enterprise/2.20/v3/pulls/comments/#parameters-2) table.\n\n        The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/enterprise/2.20/v3/reactions) reactions.\n      tags:\n      - pulls\n      operationId: pulls/list-review-comments\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/comments/#list-review-comments-on-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/sort\"\n      - name: direction\n        description: Can be either `asc` or `desc`. Ignored without `sort` parameter.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pull-request-review-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: comfort-fade\n          note: |-\n            Multi-line comments in a pull request diff is currently available for developers to preview. To access the new response fields during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.comfort-fade-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    post:\n      summary: Create a review comment for a pull request\n      description: |-\n        **Note:** Multi-line comments on pull requests are currently in public beta and subject to change.\n\n        Creates a review comment in the pull request diff. To add a regular comment to a pull request timeline, see \"[Create an issue comment](https://developer.github.com/enterprise/2.20/v3/issues/comments/#create-an-issue-comment).\" We recommend creating a review comment using `line`, `side`, and optionally `start_line` and `start_side` if your comment applies to more than one line in the pull request diff.\n\n        You can still create a review comment using the `position` parameter. When you use `position`, the `line`, `side`, `start_line`, and `start_side` parameters are not required. For more information, see [Multi-line comment summary](https://developer.github.com/enterprise/2.20/v3/pulls/comments/#multi-line-comment-summary-3).\n\n        **Note:** The position value equals the number of lines down from the first \"@@\" hunk header in the file you want to add a comment. The line just below the \"@@\" line is position 1, the next line is position 2, and so on. The position in the diff continues to increase through lines of whitespace and additional hunks until the beginning of a new file.\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n\n        **Multi-line comment summary**\n\n        **Note:** New parameters and response fields are available for developers to preview. During the preview period, these response fields may change without advance notice. Please see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-10-03-multi-line-comments) for full details.\n\n        Use the `comfort-fade` preview header and the `line` parameter to show multi-line comment-supported fields in the response.\n\n        If you use the `comfort-fade` preview header, your response will show:\n\n        *   For multi-line comments, values for `start_line`, `original_start_line`, `start_side`, `line`, `original_line`, and `side`.\n        *   For single-line comments, values for `line`, `original_line`, and `side` and a `null` value for `start_line`, `original_start_line`, and `start_side`.\n\n        If you don't use the `comfort-fade` preview header, multi-line and single-line comments will appear the same way in the response with a single `position` attribute. Your response will show:\n\n        *   For multi-line comments, the last line of the comment range for the `position` attribute.\n        *   For single-line comments, the diff-positioned way of referencing comments for the `position` attribute. For more information, see `position` in the [input parameters](https://developer.github.com/enterprise/2.20/v3/pulls/comments/#parameters-2) table.\n      tags:\n      - pulls\n      operationId: pulls/create-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/comments/#create-a-review-comment-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The text of the review comment.\n                commit_id:\n                  type: string\n                  description: The SHA of the commit needing a comment. Not using\n                    the latest commit SHA may render your comment outdated if a subsequent\n                    commit modifies the line you specify as the `position`.\n                path:\n                  type: string\n                  description: The relative path to the file that necessitates a comment.\n                position:\n                  type: integer\n                  description: \"**Required without `comfort-fade` preview**. The position\n                    in the diff where you want to add a review comment. Note this\n                    value is not the same as the line number in the file. For help\n                    finding the position value, read the note above.\"\n                side:\n                  type: string\n                  description: '**Required with `comfort-fade` preview**. In a split\n                    diff view, the side of the diff that the pull request''s changes\n                    appear on. Can be `LEFT` or `RIGHT`. Use `LEFT` for deletions\n                    that appear in red. Use `RIGHT` for additions that appear in green\n                    or unchanged lines that appear in white and are shown for context.\n                    For a multi-line comment, side represents whether the last line\n                    of the comment range is a deletion or addition. For more information,\n                    see \"[Diff view options](https://help.github.com/en/articles/about-comparing-branches-in-pull-requests#diff-view-options)\"\n                    in the GitHub Help documentation.'\n                  enum:\n                  - LEFT\n                  - RIGHT\n                line:\n                  type: integer\n                  description: \"**Required with `comfort-fade` preview**. The line\n                    of the blob in the pull request diff that the comment applies\n                    to. For a multi-line comment, the last line of the range that\n                    your comment applies to.\"\n                start_line:\n                  type: integer\n                  description: '**Required when using multi-line comments**. To create\n                    multi-line comments, you must use the `comfort-fade` preview header.\n                    The `start_line` is the first line in the pull request diff that\n                    your multi-line comment applies to. To learn more about multi-line\n                    comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\"\n                    in the GitHub Help documentation.'\n                start_side:\n                  type: string\n                  description: '**Required when using multi-line comments**. To create\n                    multi-line comments, you must use the `comfort-fade` preview header.\n                    The `start_side` is the starting side of the diff that the comment\n                    applies to. Can be `LEFT` or `RIGHT`. To learn more about multi-line\n                    comments, see \"[Commenting on a pull request](https://help.github.com/en/articles/commenting-on-a-pull-request#adding-line-comments-to-a-pull-request)\"\n                    in the GitHub Help documentation. See `side` in this table for\n                    additional context.'\n                  enum:\n                  - LEFT\n                  - RIGHT\n                  - side\n                in_reply_to:\n                  type: integer\n                  example: '2'\n              required:\n              - body\n              - path\n            examples:\n              example-for-a-single-line-comment:\n                summary: Example for a single-line comment\n                value:\n                  body: Let's add this deleted line back.\n                  commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n                  path: file1.txt\n                  line: 5\n                  side: LEFT\n              example-for-a-multi-line-comment:\n                summary: Example for a multi-line comment\n                value:\n                  body: Great stuff!\n                  commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n                  path: file1.txt\n                  start_line: 1\n                  start_side: RIGHT\n                  line: 2\n                  side: RIGHT\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review-comment\"\n              examples:\n                example-for-a-multi-line-comment:\n                  \"$ref\": \"#/components/examples/pull-request-review-comment-example-for-a-multi-line-comment\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: comfort-fade\n          note: |-\n            Multi-line comments in a pull request diff is currently available for developers to preview. To access the new response fields during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.comfort-fade-preview+json\n            ```\n  \"/repos/{owner}/{repo}/pulls/comments\":\n    get:\n      summary: List review comments in a repository\n      description: |-\n        **Note:** Multi-line comments on pull requests are currently in public beta and subject to change.\n\n        Lists review comments for all pull requests in a repository. By default, review comments are in ascending order by ID.\n\n        **Multi-line comment summary**\n\n        **Note:** New parameters and response fields are available for developers to preview. During the preview period, these response fields may change without advance notice. Please see the [blog post](https://developer.github.com/enterprise/2.20/changes/2019-10-03-multi-line-comments) for full details.\n\n        Use the `comfort-fade` preview header and the `line` parameter to show multi-line comment-supported fields in the response.\n\n        If you use the `comfort-fade` preview header, your response will show:\n\n        *   For multi-line comments, values for `start_line`, `original_start_line`, `start_side`, `line`, `original_line`, and `side`.\n        *   For single-line comments, values for `line`, `original_line`, and `side` and a `null` value for `start_line`, `original_start_line`, and `start_side`.\n\n        If you don't use the `comfort-fade` preview header, multi-line and single-line comments will appear the same way in the response with a single `position` attribute. Your response will show:\n\n        *   For multi-line comments, the last line of the comment range for the `position` attribute.\n        *   For single-line comments, the diff-positioned way of referencing comments for the `position` attribute. For more information, see `position` in the [input parameters](https://developer.github.com/enterprise/2.20/v3/pulls/comments/#parameters-2) table.\n\n        The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/enterprise/2.20/v3/reactions) reactions.\n      tags:\n      - pulls\n      operationId: pulls/list-review-comments-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/comments/#list-review-comments-in-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/sort\"\n      - name: direction\n        description: Can be either `asc` or `desc`. Ignored without `sort` parameter.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pull-request-review-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: comfort-fade\n          note: |-\n            Multi-line comments in a pull request diff is currently available for developers to preview. To access the new response fields during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.comfort-fade-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}\":\n    put:\n      summary: Update a review for a pull request\n      description: Update the review summary comment with new text.\n      tags:\n      - pulls\n      operationId: pulls/update-review\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#update-a-review-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/review_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The body text of the pull request review.\n              required:\n              - body\n            example:\n              body: This is close to perfect! Please address the suggested inline\n                change. And add more about this.\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-5\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get a review for a pull request\n      description: ''\n      tags:\n      - pulls\n      operationId: pulls/get-review\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#get-a-review-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/review_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-4\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete a pending review for a pull request\n      description: ''\n      tags:\n      - pulls\n      operationId: pulls/delete-pending-review\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#delete-a-pending-review-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/review_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/dismissals\":\n    put:\n      summary: Dismiss a review for a pull request\n      description: \"**Note:** To dismiss a pull request review on a [protected branch](https://developer.github.com/enterprise/2.20/v3/repos/branches/),\n        you must be a repository administrator or be included in the list of people\n        or teams who can dismiss pull request reviews.\"\n      tags:\n      - pulls\n      operationId: pulls/dismiss-review\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#dismiss-a-review-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/review_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                message:\n                  type: string\n                  description: The message for the pull request review dismissal\n                event:\n                  type: string\n                  example: '\"APPROVE\"'\n              required:\n              - message\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-3\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/requested_reviewers\":\n    get:\n      summary: List requested reviewers for a pull request\n      description: ''\n      tags:\n      - pulls\n      operationId: pulls/list-requested-reviewers\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/review_requests/#list-requested-reviewers-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review-request\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-pull-request-review-request\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Request reviewers for a pull request\n      description: This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/).\n        Creating content too quickly using this endpoint may result in abuse rate\n        limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\"\n        and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\"\n        for details.\n      tags:\n      - pulls\n      operationId: pulls/request-reviewers\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/review_requests/#request-reviewers-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                reviewers:\n                  type: array\n                  description: An array of user `login`s that will be requested.\n                  items:\n                    type: string\n                team_reviewers:\n                  type: array\n                  description: An array of team `slug`s that will be requested.\n                  items:\n                    type: string\n            example:\n              reviewers:\n              - octocat\n              - hubot\n              - other_user\n              team_reviewers:\n              - justice-league\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-request\"\n        '422':\n          description: Response if user is not a collaborator\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Remove requested reviewers from a pull request\n      description: ''\n      tags:\n      - pulls\n      operationId: pulls/remove-requested-reviewers\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/review_requests/#remove-requested-reviewers-from-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                reviewers:\n                  type: array\n                  description: An array of user `login`s that will be removed.\n                  items:\n                    type: string\n                team_reviewers:\n                  type: array\n                  description: An array of team `slug`s that will be removed.\n                  items:\n                    type: string\n            example:\n              reviewers:\n              - octocat\n              - hubot\n              - other_user\n              team_reviewers:\n              - justice-league\n      responses:\n        '200':\n          description: response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}\":\n    get:\n      summary: Get a pull request\n      description: |-\n        Draft pull requests are available in public repositories with GitHub Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository billing plans, and in public and private repositories with GitHub Team and GitHub Enterprise Cloud. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        Lists details of a pull request by providing its number.\n\n        When you get, [create](https://developer.github.com/enterprise/2.20/v3/pulls/#create-a-pull-request), or [edit](https://developer.github.com/enterprise/2.20/v3/pulls/#update-a-pull-request) a pull request, GitHub Enterprise Server creates a merge commit to test whether the pull request can be automatically merged into the base branch. This test commit is not added to the base branch or the head branch. You can review the status of the test commit using the `mergeable` key. For more information, see \"[Checking mergeability of pull requests](https://developer.github.com/enterprise/2.20/v3/git/#checking-mergeability-of-pull-requests)\".\n\n        The value of the `mergeable` attribute can be `true`, `false`, or `null`. If the value is `null`, then GitHub Enterprise Server has started a background job to compute the mergeability. After giving the job time to complete, resubmit the request. When the job finishes, you will see a non-`null` value for the `mergeable` attribute in the response. If `mergeable` is `true`, then `merge_commit_sha` will be the SHA of the _test_ merge commit.\n\n        The value of the `merge_commit_sha` attribute changes depending on the state of the pull request. Before merging a pull request, the `merge_commit_sha` attribute holds the SHA of the _test_ merge commit. After merging a pull request, the `merge_commit_sha` attribute changes depending on how you merged the pull request:\n\n        *   If merged as a [merge commit](https://help.github.com/articles/about-merge-methods-on-github/), `merge_commit_sha` represents the SHA of the merge commit.\n        *   If merged via a [squash](https://help.github.com/articles/about-merge-methods-on-github/#squashing-your-merge-commits), `merge_commit_sha` represents the SHA of the squashed commit on the base branch.\n        *   If [rebased](https://help.github.com/articles/about-merge-methods-on-github/#rebasing-and-merging-your-commits), `merge_commit_sha` represents the commit that the base branch was updated to.\n\n        Pass the appropriate [media type](https://developer.github.com/enterprise/2.20/v3/media/#commits-commit-comparison-and-pull-requests) to fetch diff and patch formats.\n      tags:\n      - pulls\n      operationId: pulls/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#get-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      responses:\n        '200':\n          description: Pass the appropriate [media type](https://developer.github.com/enterprise/2.20/v3/media/#commits-commit-comparison-and-pull-requests)\n            to fetch diff and patch formats.\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '500':\n          \"$ref\": \"#/components/responses/internal_error\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n    patch:\n      summary: Update a pull request\n      description: |-\n        Draft pull requests are available in public repositories with GitHub Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository billing plans, and in public and private repositories with GitHub Team and GitHub Enterprise Cloud. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        To open or update a pull request in a public repository, you must have write access to the head or the source branch. For organization-owned repositories, you must be a member of the organization that owns the repository to open or update a pull request.\n      tags:\n      - pulls\n      operationId: pulls/update\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#update-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The title of the pull request.\n                body:\n                  type: string\n                  description: The contents of the pull request.\n                state:\n                  type: string\n                  description: State of this Pull Request. Either `open` or `closed`.\n                  enum:\n                  - open\n                  - closed\n                base:\n                  type: string\n                  description: The name of the branch you want your changes pulled\n                    into. This should be an existing branch on the current repository.\n                    You cannot update the base branch on a pull request to point to\n                    another repository.\n                maintainer_can_modify:\n                  type: boolean\n                  description: Indicates whether [maintainers can modify](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/)\n                    the pull request.\n            example:\n              title: new title\n              body: updated body\n              state: open\n              base: master\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/reviews\":\n    post:\n      summary: Create a review for a pull request\n      description: |-\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n\n        Pull request reviews created in the `PENDING` state do not include the `submitted_at` property in the response.\n\n        **Note:** To comment on a specific line in a file, you need to first determine the _position_ of that line in the diff. The GitHub REST API v3 offers the `application/vnd.github.v3.diff` [media type](https://developer.github.com/enterprise/2.20/v3/media/#commits-commit-comparison-and-pull-requests). To see a pull request diff, add this media type to the `Accept` header of a call to the [single pull request](https://developer.github.com/enterprise/2.20/v3/pulls/#get-a-pull-request) endpoint.\n\n        The `position` value equals the number of lines down from the first \"@@\" hunk header in the file you want to add a comment. The line just below the \"@@\" line is position 1, the next line is position 2, and so on. The position in the diff continues to increase through lines of whitespace and additional hunks until the beginning of a new file.\n      tags:\n      - pulls\n      operationId: pulls/create-review\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#create-a-review-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                commit_id:\n                  type: string\n                  description: The SHA of the commit that needs a review. Not using\n                    the latest commit SHA may render your review comment outdated\n                    if a subsequent commit modifies the line you specify as the `position`.\n                    Defaults to the most recent commit in the pull request when you\n                    do not specify a value.\n                body:\n                  type: string\n                  description: \"**Required** when using `REQUEST_CHANGES` or `COMMENT`\n                    for the `event` parameter. The body text of the pull request review.\"\n                event:\n                  type: string\n                  description: 'The review action you want to perform. The review\n                    actions include: `APPROVE`, `REQUEST_CHANGES`, or `COMMENT`. By\n                    leaving this blank, you set the review action state to `PENDING`,\n                    which means you will need to [submit the pull request review](https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#submit-a-review-for-a-pull-request)\n                    when you are ready.'\n                  enum:\n                  - APPROVE\n                  - REQUEST_CHANGES\n                  - COMMENT\n                comments:\n                  type: array\n                  description: Use the following table to specify the location, destination,\n                    and contents of the draft review comment.\n                  items:\n                    type: object\n                    properties:\n                      path:\n                        type: string\n                        description: The relative path to the file that necessitates\n                          a review comment.\n                      position:\n                        type: integer\n                        description: The position in the diff where you want to add\n                          a review comment. Note this value is not the same as the\n                          line number in the file. For help finding the position value,\n                          read the note below.\n                      body:\n                        type: string\n                        description: Text of the review comment.\n                      line:\n                        type: integer\n                        example: '28'\n                      side:\n                        type: string\n                        example: '\"RIGHT\"'\n                      start_line:\n                        type: integer\n                        example: '26'\n                      start_side:\n                        type: string\n                        example: '\"LEFT\"'\n                    required:\n                    - path\n                    - body\n            example:\n              commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\n              body: This is close to perfect! Please address the suggested inline\n                change.\n              event: REQUEST_CHANGES\n              comments:\n              - path: file.md\n                position: 6\n                body: Please add more information here, and fix this typo.\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List reviews for a pull request\n      description: The list of reviews returns in chronological order.\n      tags:\n      - pulls\n      operationId: pulls/list-reviews\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#list-reviews-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: The list of reviews returns in chronological order.\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/merge\":\n    get:\n      summary: Check if a pull request has been merged\n      description: ''\n      tags:\n      - pulls\n      operationId: pulls/check-if-merged\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#check-if-a-pull-request-has-been-merged\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      responses:\n        '204':\n          description: Response if pull request has been merged\n        '404':\n          description: Response if pull request has not been merged\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    put:\n      summary: Merge a pull request\n      description: This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/).\n        Creating content too quickly using this endpoint may result in abuse rate\n        limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\"\n        and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\"\n        for details.\n      tags:\n      - pulls\n      operationId: pulls/merge\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#merge-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                commit_title:\n                  type: string\n                  description: Title for the automatic commit message.\n                commit_message:\n                  type: string\n                  description: Extra detail to append to automatic commit message.\n                sha:\n                  type: string\n                  description: SHA that pull request head must match to allow merge.\n                merge_method:\n                  type: string\n                  description: Merge method to use. Possible values are `merge`, `squash`\n                    or `rebase`. Default is `merge`.\n                  enum:\n                  - merge\n                  - squash\n                  - rebase\n      responses:\n        '200':\n          description: Response if merge was successful\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-merge-result\"\n              examples:\n                response-if-merge-was-successful:\n                  \"$ref\": \"#/components/examples/pull-request-merge-result-response-if-merge-was-successful\"\n        '405':\n          description: Response if merge cannot be performed\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n              examples:\n                response-if-merge-cannot-be-performed:\n                  value:\n                    message: Pull Request is not mergeable\n                    documentation_url: https://developer.github.com/enterprise/2.20/v3/pulls/#merge-a-pull-request-merge-button\n        '409':\n          description: Response if sha was provided and pull request head did not\n            match\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  documentation_url:\n                    type: string\n              examples:\n                response-if-sha-was-provided-and-pull-request-head-did-not-match:\n                  value:\n                    message: Head branch was modified. Review and try the merge again.\n                    documentation_url: https://developer.github.com/enterprise/2.20/v3/pulls/#merge-a-pull-request-merge-button\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/update-branch\":\n    put:\n      summary: Update a pull request branch\n      description: Updates the pull request branch with the latest upstream changes\n        by merging HEAD from the base branch into the pull request branch.\n      tags:\n      - pulls\n      operationId: pulls/update-branch\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#update-a-pull-request-branch\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                expected_head_sha:\n                  type: string\n                  description: 'The expected SHA of the pull request''s HEAD ref.\n                    This is the most recent commit on the pull request''s branch.\n                    If the expected SHA does not match the pull request''s HEAD, you\n                    will receive a `422 Unprocessable Entity` status. You can use\n                    the \"[List commits](https://developer.github.com/enterprise/2.20/v3/repos/commits/#list-commits)\"\n                    endpoint to find the most recent commit SHA. Default: SHA of the\n                    pull request''s current HEAD ref.'\n            example:\n              expected_head_sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  url:\n                    type: string\n              example:\n                message: Updating pull request branch.\n                url: https://github.com/repos/octocat/Hello-World/pulls/53\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: lydian\n          note: |-\n            Updating the pull request branch with latest upstream changes is currently available for developers to preview. To access this new endpoint during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.lydian-preview+json\n            ```\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/files\":\n    get:\n      summary: List pull requests files\n      description: \"**Note:** Responses include a maximum of 3000 files. The paginated\n        response returns 30 files per page by default.\"\n      tags:\n      - pulls\n      operationId: pulls/list-files\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests-files\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/diff-entry\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/diff-entry-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '500':\n          \"$ref\": \"#/components/responses/internal_error\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls\":\n    get:\n      summary: List pull requests\n      description: Draft pull requests are available in public repositories with GitHub\n        Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository\n        billing plans, and in public and private repositories with GitHub Team and\n        GitHub Enterprise Cloud. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products)\n        in the GitHub Help documentation.\n      tags:\n      - pulls\n      operationId: pulls/list\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: state\n        description: Either `open`, `closed`, or `all` to filter by state.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - name: head\n        description: 'Filter pulls by head user or head organization and branch name\n          in the format of `user:ref-name` or `organization:ref-name`. For example:\n          `github:new-script-format` or `octocat:test-branch`.'\n        in: query\n        required: false\n        schema:\n          type: string\n      - name: base\n        description: 'Filter pulls by base branch name. Example: `gh-pages`.'\n        in: query\n        required: false\n        schema:\n          type: string\n      - name: sort\n        description: What to sort results by. Can be either `created`, `updated`,\n          `popularity` (comment count) or `long-running` (age, filtering by pulls\n          updated in the last month).\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - popularity\n          - long-running\n          default: created\n      - name: direction\n        description: 'The direction of the sort. Can be either `asc` or `desc`. Default:\n          `desc` when sort is `created` or sort is not specified, otherwise `asc`.'\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pull-request-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-simple-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n    post:\n      summary: Create a pull request\n      description: |-\n        Draft pull requests are available in public repositories with GitHub Free and GitHub Free for organizations, GitHub Pro, and legacy per-repository billing plans, and in public and private repositories with GitHub Team and GitHub Enterprise Cloud. For more information, see [GitHub's products](https://help.github.com/github/getting-started-with-github/githubs-products) in the GitHub Help documentation.\n\n        To open or update a pull request in a public repository, you must have write access to the head or the source branch. For organization-owned repositories, you must be a member of the organization that owns the repository to open or update a pull request.\n\n        You can create a new pull request.\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n      tags:\n      - pulls\n      operationId: pulls/create\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#create-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The title of the new pull request.\n                head:\n                  type: string\n                  description: 'The name of the branch where your changes are implemented.\n                    For cross-repository pull requests in the same network, namespace\n                    `head` with a user like this: `username:branch`.'\n                base:\n                  type: string\n                  description: The name of the branch you want the changes pulled\n                    into. This should be an existing branch on the current repository.\n                    You cannot submit a pull request to one repository that requests\n                    a merge to a base of another repository.\n                body:\n                  type: string\n                  description: The contents of the pull request.\n                maintainer_can_modify:\n                  type: boolean\n                  description: Indicates whether [maintainers can modify](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/)\n                    the pull request.\n                draft:\n                  type: boolean\n                  description: Indicates whether the pull request is a draft. See\n                    \"[Draft Pull Requests](https://help.github.com/en/articles/about-pull-requests#draft-pull-requests)\"\n                    in the GitHub Help documentation to learn more.\n                issue:\n                  type: integer\n                  example: '1'\n              required:\n              - head\n              - base\n            example:\n              title: Amazing new feature\n              body: Please pull these awesome changes in!\n              head: octocat:new-feature\n              base: master\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n              schema:\n                type: string\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/comments/{comment_id}/replies\":\n    post:\n      summary: Create a reply for a review comment\n      description: |-\n        Creates a reply to a review comment for a pull request. For the `comment_id`, provide the ID of the review comment you are replying to. This must be the ID of a _top-level review comment_, not a reply to that comment. Replies to replies are not supported.\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n      tags:\n      - pulls\n      operationId: pulls/create-reply-for-review-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/comments/#create-a-reply-for-a-review-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The text of the review comment.\n              required:\n              - body\n            example:\n              body: Great stuff!\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-comment\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n              schema:\n                type: string\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/commits\":\n    get:\n      summary: List commits on a pull request\n      description: Lists a maximum of 250 commits for a pull request. To receive a\n        complete commit list for pull requests with more than 250 commits, use the\n        [List commits](https://developer.github.com/enterprise/2.20/v3/repos/commits/#list-commits)\n        endpoint.\n      tags:\n      - pulls\n      operationId: pulls/list-commits\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/#list-commits-on-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-commit-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/events\":\n    post:\n      summary: Submit a review for a pull request\n      description: ''\n      tags:\n      - pulls\n      operationId: pulls/submit-review\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#submit-a-review-for-a-pull-request\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/review_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The body text of the pull request review\n                event:\n                  type: string\n                  description: 'The review action you want to perform. The review\n                    actions include: `APPROVE`, `REQUEST_CHANGES`, or `COMMENT`. When\n                    you leave this blank, the API returns _HTTP 422 (Unrecognizable\n                    entity)_ and sets the review action state to `PENDING`, which\n                    means you will need to re-submit the pull request review using\n                    a review action.'\n                  enum:\n                  - APPROVE\n                  - REQUEST_CHANGES\n                  - COMMENT\n              required:\n              - event\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pull-request-review\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pull-request-review-4\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}/comments\":\n    get:\n      summary: List comments for a pull request review\n      description: List comments for a specific pull request review.\n      tags:\n      - pulls\n      operationId: pulls/list-comments-for-review\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/pulls/reviews/#list-comments-for-a-pull-request-review\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pull-number\"\n      - \"$ref\": \"#/components/parameters/review_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/review-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/review-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/emojis\":\n    get:\n      summary: Get emojis\n      description: Lists all the emojis available to use on GitHub Enterprise Server.\n      operationId: emojis/get\n      tags:\n      - emojis\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/emojis/#get-emojis\n      parameters: []\n      responses:\n        '200':\n          content:\n            application/json:\n              schema:\n                type: object\n                additionalProperties:\n                  type: string\n          description: response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/orgs/{org}/issues\":\n    get:\n      summary: List organization issues assigned to the authenticated user\n      description: |-\n        List issues in an organization assigned to the authenticated user.\n\n        **Note**: GitHub's REST API v3 considers every pull request an issue, but not every issue is a pull request. For this\n        reason, \"Issues\" endpoints may return both issues and pull requests in the response. You can identify pull requests by\n        the `pull_request` key. Be aware that the `id` of a pull request returned from \"Issues\" endpoints will be an _issue id_. To find out the pull\n        request id, use the \"[List pull requests](https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests)\" endpoint.\n      tags:\n      - issues\n      operationId: issues/list-for-org\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#list-organization-issues-assigned-to-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - name: filter\n        description: \"Indicates which sorts of issues to return. Can be one of:  \\n\\\\*\n          `assigned`: Issues assigned to you  \\n\\\\* `created`: Issues created by you\n          \\ \\n\\\\* `mentioned`: Issues mentioning you  \\n\\\\* `subscribed`: Issues you're\n          subscribed to updates for  \\n\\\\* `all`: All issues the authenticated user\n          can see, regardless of participation or creation\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - assigned\n          - created\n          - mentioned\n          - subscribed\n          - all\n          default: assigned\n      - name: state\n        description: Indicates the state of the issues to return. Can be either `open`,\n          `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - \"$ref\": \"#/components/parameters/labels\"\n      - name: sort\n        description: What to sort results by. Can be either `created`, `updated`,\n          `comments`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - comments\n          default: created\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-with-repo-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/issues/{issue_number}/lock\":\n    put:\n      summary: Lock an issue\n      description: |-\n        Users with push access can lock an issue or pull request's conversation.\n\n        Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      tags:\n      - issues\n      operationId: issues/lock\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#lock-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                lock_reason:\n                  type: string\n                  description: \"The reason for locking the issue or pull request conversation.\n                    Lock will fail if you don't use one of these reasons:  \\n\\\\* `off-topic`\n                    \\ \\n\\\\* `too heated`  \\n\\\\* `resolved`  \\n\\\\* `spam`\"\n                  enum:\n                  - off-topic\n                  - too heated\n                  - resolved\n                  - spam\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n    delete:\n      summary: Unlock an issue\n      description: Users with push access can unlock an issue's conversation.\n      tags:\n      - issues\n      operationId: issues/unlock\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#unlock-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/milestones/{milestone_number}\":\n    delete:\n      summary: Delete a milestone\n      description: ''\n      tags:\n      - issues\n      operationId: issues/delete-milestone\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/milestones/#delete-a-milestone\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/milestone_number\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update a milestone\n      description: ''\n      tags:\n      - issues\n      operationId: issues/update-milestone\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/milestones/#update-a-milestone\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/milestone_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The title of the milestone.\n                state:\n                  type: string\n                  description: The state of the milestone. Either `open` or `closed`.\n                  enum:\n                  - open\n                  - closed\n                  default: open\n                description:\n                  type: string\n                  description: A description of the milestone.\n                due_on:\n                  type: string\n                  description: 'The milestone due date. This is a timestamp in [ISO\n                    8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.'\n            example:\n              title: v1.0\n              state: open\n              description: Tracking milestone for version 1.0\n              due_on: '2012-10-09T23:39:01Z'\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/milestone\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/milestone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get a milestone\n      description: ''\n      tags:\n      - issues\n      operationId: issues/get-milestone\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/milestones/#get-a-milestone\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/milestone_number\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/milestone\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/milestone\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/issues/{issue_number}/labels/{name}\":\n    delete:\n      summary: Remove a label from an issue\n      description: Removes the specified label from the issue, and returns the remaining\n        labels on the issue. This endpoint returns a `404 Not Found` status if the\n        label does not exist.\n      tags:\n      - issues\n      operationId: issues/remove-label\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#remove-a-label-from-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      - name: name\n        description: name parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-items-2\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/milestones\":\n    get:\n      summary: List milestones\n      description: ''\n      tags:\n      - issues\n      operationId: issues/list-milestones\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/milestones/#list-milestones\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: state\n        description: The state of the milestone. Either `open`, `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - name: sort\n        description: What to sort results by. Either `due_on` or `completeness`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - due_on\n          - completeness\n          default: due_on\n      - name: direction\n        description: The direction of the sort. Either `asc` or `desc`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n          default: asc\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/milestone\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/milestone-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Create a milestone\n      description: ''\n      tags:\n      - issues\n      operationId: issues/create-milestone\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/milestones/#create-a-milestone\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The title of the milestone.\n                state:\n                  type: string\n                  description: The state of the milestone. Either `open` or `closed`.\n                  enum:\n                  - open\n                  - closed\n                  default: open\n                description:\n                  type: string\n                  description: A description of the milestone.\n                due_on:\n                  type: string\n                  description: 'The milestone due date. This is a timestamp in [ISO\n                    8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.'\n              required:\n              - title\n            example:\n              title: v1.0\n              state: open\n              description: Tracking milestone for version 1.0\n              due_on: '2012-10-09T23:39:01Z'\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/milestone\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/milestone\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/milestones/1\n              schema:\n                type: string\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/issues/comments/{comment_id}\":\n    delete:\n      summary: Delete an issue comment\n      description: ''\n      tags:\n      - issues\n      operationId: issues/delete-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/comments/#delete-an-issue-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: Get an issue comment\n      description: ''\n      tags:\n      - issues\n      operationId: issues/get-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/comments/#get-an-issue-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-comment\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    patch:\n      summary: Update an issue comment\n      description: ''\n      tags:\n      - issues\n      operationId: issues/update-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/comments/#update-an-issue-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The contents of the comment.\n              required:\n              - body\n            example:\n              body: Me too\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-comment\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/issues/{issue_number}\":\n    get:\n      summary: Get an issue\n      description: |-\n        The API returns a [`301 Moved Permanently` status](https://developer.github.com/enterprise/2.20/v3/#http-redirects) if the issue was\n        [transferred](https://help.github.com/articles/transferring-an-issue-to-another-repository/) to another repository. If\n        the issue was transferred to or deleted from a repository where the authenticated user lacks read access, the API\n        returns a `404 Not Found` status. If the issue was deleted from a repository where the authenticated user has read\n        access, the API returns a `410 Gone` status. To receive webhook events for transferred and deleted issues, subscribe\n        to the [`issues`](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#issues) webhook.\n\n        **Note**: GitHub's REST API v3 considers every pull request an issue, but not every issue is a pull request. For this\n        reason, \"Issues\" endpoints may return both issues and pull requests in the response. You can identify pull requests by\n        the `pull_request` key. Be aware that the `id` of a pull request returned from \"Issues\" endpoints will be an _issue id_. To find out the pull\n        request id, use the \"[List pull requests](https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests)\" endpoint.\n      tags:\n      - issues\n      operationId: issues/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#get-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue\"\n        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n    patch:\n      summary: Update an issue\n      description: Issue owners and users with push access can edit an issue.\n      tags:\n      - issues\n      operationId: issues/update\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#update-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The title of the issue.\n                body:\n                  type: string\n                  description: The contents of the issue.\n                assignee:\n                  type: string\n                  description: Login for the user that this issue should be assigned\n                    to. **This field is deprecated.**\n                state:\n                  type: string\n                  description: State of the issue. Either `open` or `closed`.\n                  enum:\n                  - open\n                  - closed\n                milestone:\n                  type: integer\n                  description: 'The `number` of the milestone to associate this issue\n                    with or `null` to remove current. _NOTE: Only users with push\n                    access can set the milestone for issues. The milestone is silently\n                    dropped otherwise._'\n                  nullable: true\n                labels:\n                  type: array\n                  description: 'Labels to associate with this issue. Pass one or more\n                    Labels to _replace_ the set of Labels on this Issue. Send an empty\n                    array (`[]`) to clear all Labels from the Issue. _NOTE: Only users\n                    with push access can set labels for issues. Labels are silently\n                    dropped otherwise._'\n                  items:\n                    oneOf:\n                    - type: string\n                    - type: object\n                      properties:\n                        id:\n                          type: integer\n                        name:\n                          type: string\n                        description:\n                          type: string\n                        color:\n                          type: string\n                assignees:\n                  type: array\n                  description: 'Logins for Users to assign to this issue. Pass one\n                    or more user logins to _replace_ the set of assignees on this\n                    Issue. Send an empty array (`[]`) to clear all assignees from\n                    the Issue. _NOTE: Only users with push access can set assignees\n                    for new issues. Assignees are silently dropped otherwise._'\n                  items:\n                    type: string\n            example:\n              title: Found a bug\n              body: I'm having a problem with this.\n              assignees:\n              - octocat\n              milestone: 1\n              state: open\n              labels:\n              - bug\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/labels/{name}\":\n    get:\n      summary: Get a label\n      description: ''\n      tags:\n      - issues\n      operationId: issues/get-label\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#get-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: name\n        description: name parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update a label\n      description: ''\n      tags:\n      - issues\n      operationId: issues/update-label\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#update-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: name\n        description: name parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                new_name:\n                  type: string\n                  description: The new name of the label. Emoji can be added to label\n                    names, using either native emoji or colon-style markup. For example,\n                    typing `:strawberry:` will render the emoji ![:strawberry:](https://github.githubassets.com/images/icons/emoji/unicode/1f353.png\n                    \":strawberry:\"). For a full list of available emoji and codes,\n                    see [emoji-cheat-sheet.com](http://emoji-cheat-sheet.com/).\n                color:\n                  type: string\n                  description: The [hexadecimal color code](http://www.color-hex.com/)\n                    for the label, without the leading `#`.\n                description:\n                  type: string\n                  description: A short description of the label.\n            example:\n              new_name: 'bug :bug:'\n              description: Small bug fix required\n              color: b01f26\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-2\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Delete a label\n      description: ''\n      tags:\n      - issues\n      operationId: issues/delete-label\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#delete-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: name\n        description: name parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/labels\":\n    get:\n      summary: List labels for a repository\n      description: ''\n      tags:\n      - issues\n      operationId: issues/list-labels-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#list-labels-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Create a label\n      description: ''\n      tags:\n      - issues\n      operationId: issues/create-label\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#create-a-label\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the label. Emoji can be added to label\n                    names, using either native emoji or colon-style markup. For example,\n                    typing `:strawberry:` will render the emoji ![:strawberry:](https://github.githubassets.com/images/icons/emoji/unicode/1f353.png\n                    \":strawberry:\"). For a full list of available emoji and codes,\n                    see [emoji-cheat-sheet.com](http://emoji-cheat-sheet.com/).\n                color:\n                  type: string\n                  description: The [hexadecimal color code](http://www.color-hex.com/)\n                    for the label, without the leading `#`.\n                description:\n                  type: string\n                  description: A short description of the label.\n              required:\n              - name\n            example:\n              name: bug\n              description: Something isn't working\n              color: f29513\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/labels/bug\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/issues/{issue_number}/timeline\":\n    get:\n      summary: List timeline events for an issue\n      description: ''\n      tags:\n      - issues\n      operationId: issues/list-events-for-timeline\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/timeline/#list-timeline-events-for-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue-event-for-issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-event-for-issue-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: mockingbird\n          note: |-\n            The API to get issue timeline events is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-23-timeline-preview-api/) for full details. To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.mockingbird-preview\n            ```\n        - required: false\n          name: starfox\n          note: |-\n            Project card details are now shown in REST API v3 responses for project-related issue and timeline events. This feature is now available for developers to preview. For details, see the [blog post](https://developer.github.com/changes/2018-09-05-project-card-events).\n\n            To receive the `project_card` attribute, project boards must be [enabled](https://help.github.com/articles/disabling-project-boards-in-a-repository) for a repository, and you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.starfox-preview+json\n            ```\n  \"/repos/{owner}/{repo}/assignees\":\n    get:\n      summary: List assignees\n      description: Lists the [available assignees](https://help.github.com/articles/assigning-issues-and-pull-requests-to-other-github-users/)\n        for issues in a repository.\n      tags:\n      - issues\n      operationId: issues/list-assignees\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/assignees/#list-assignees\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/issues\":\n    get:\n      summary: List issues assigned to the authenticated user\n      description: |-\n        List issues assigned to the authenticated user across all visible repositories including owned repositories, member\n        repositories, and organization repositories. You can use the `filter` query parameter to fetch issues that are not\n        necessarily assigned to you. See the [Parameters table](https://developer.github.com/enterprise/2.20/v3/issues/#parameters) for more\n        information.\n\n\n        **Note**: GitHub's REST API v3 considers every pull request an issue, but not every issue is a pull request. For this\n        reason, \"Issues\" endpoints may return both issues and pull requests in the response. You can identify pull requests by\n        the `pull_request` key. Be aware that the `id` of a pull request returned from \"Issues\" endpoints will be an _issue id_. To find out the pull\n        request id, use the \"[List pull requests](https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests)\" endpoint.\n      tags:\n      - issues\n      operationId: issues/list\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#list-issues-assigned-to-the-authenticated-user\n      parameters:\n      - name: filter\n        description: \"Indicates which sorts of issues to return. Can be one of:  \\n\\\\*\n          `assigned`: Issues assigned to you  \\n\\\\* `created`: Issues created by you\n          \\ \\n\\\\* `mentioned`: Issues mentioning you  \\n\\\\* `subscribed`: Issues you're\n          subscribed to updates for  \\n\\\\* `all`: All issues the authenticated user\n          can see, regardless of participation or creation\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - assigned\n          - created\n          - mentioned\n          - subscribed\n          - all\n          default: assigned\n      - name: state\n        description: Indicates the state of the issues to return. Can be either `open`,\n          `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - \"$ref\": \"#/components/parameters/labels\"\n      - name: sort\n        description: What to sort results by. Can be either `created`, `updated`,\n          `comments`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - comments\n          default: created\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - name: collab\n        in: query\n        required: false\n        schema:\n          type: boolean\n      - name: orgs\n        in: query\n        required: false\n        schema:\n          type: boolean\n      - name: owned\n        in: query\n        required: false\n        schema:\n          type: boolean\n      - name: pulls\n        in: query\n        required: false\n        schema:\n          type: boolean\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-with-repo-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/issues/{issue_number}/labels\":\n    put:\n      summary: Set labels for an issue\n      description: Removes any previous labels and sets the new labels for an issue.\n      tags:\n      - issues\n      operationId: issues/set-labels\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#set-labels-for-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                labels:\n                  type: array\n                  description: The names of the labels to add to the issue. You can\n                    pass an empty array to remove all labels. **Note:** Alternatively,\n                    you can pass a single label as a `string` or an `array` of labels\n                    directly, but GitHub recommends passing an object with the `labels`\n                    key.\n                  items:\n                    type: string\n            example:\n              labels:\n              - bug\n              - enhancement\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-items\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    delete:\n      summary: Remove all labels from an issue\n      description: ''\n      tags:\n      - issues\n      operationId: issues/remove-all-labels\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#remove-all-labels-from-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      responses:\n        '204':\n          description: Empty response\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Add labels to an issue\n      description: ''\n      tags:\n      - issues\n      operationId: issues/add-labels\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#add-labels-to-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                labels:\n                  type: array\n                  description: The name of the label to add to the issue. Must contain\n                    at least one label. **Note:** Alternatively, you can pass a single\n                    label as a `string` or an `array` of labels directly, but GitHub\n                    recommends passing an object with the `labels` key.\n                  items:\n                    type: string\n              required:\n              - labels\n            example:\n              labels:\n              - bug\n              - enhancement\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-items\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List labels for an issue\n      description: ''\n      tags:\n      - issues\n      operationId: issues/list-labels-on-issue\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#list-labels-for-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/issues/{issue_number}/events\":\n    get:\n      summary: List issue events\n      description: ''\n      tags:\n      - issues\n      operationId: issues/list-events\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/events/#list-issue-events\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue-event-for-issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-event-for-issue-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: starfox\n          note: |-\n            Project card details are now shown in REST API v3 responses for project-related issue and timeline events. This feature is now available for developers to preview. For details, see the [blog post](https://developer.github.com/changes/2018-09-05-project-card-events).\n\n            To receive the `project_card` attribute, project boards must be [enabled](https://help.github.com/articles/disabling-project-boards-in-a-repository) for a repository, and you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.starfox-preview+json\n            ```\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n  \"/repos/{owner}/{repo}/issues\":\n    post:\n      summary: Create an issue\n      description: |-\n        Any user with pull access to a repository can create an issue. If [issues are disabled in the repository](https://help.github.com/articles/disabling-issues/), the API returns a `410 Gone` status.\n\n        This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/). Creating content too quickly using this endpoint may result in abuse rate limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\" and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\" for details.\n      tags:\n      - issues\n      operationId: issues/create\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#create-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                title:\n                  type: string\n                  description: The title of the issue.\n                body:\n                  type: string\n                  description: The contents of the issue.\n                assignee:\n                  type: string\n                  description: 'Login for the user that this issue should be assigned\n                    to. _NOTE: Only users with push access can set the assignee for\n                    new issues. The assignee is silently dropped otherwise. **This\n                    field is deprecated.**_'\n                  nullable: true\n                milestone:\n                  type: integer\n                  description: 'The `number` of the milestone to associate this issue\n                    with. _NOTE: Only users with push access can set the milestone\n                    for new issues. The milestone is silently dropped otherwise._'\n                  nullable: true\n                labels:\n                  type: array\n                  description: 'Labels to associate with this issue. _NOTE: Only users\n                    with push access can set labels for new issues. Labels are silently\n                    dropped otherwise._'\n                  items:\n                    oneOf:\n                    - type: string\n                    - type: object\n                      properties:\n                        id:\n                          type: integer\n                        name:\n                          type: string\n                        description:\n                          type: string\n                        color:\n                          type: string\n                assignees:\n                  type: array\n                  description: 'Logins for Users to assign to this issue. _NOTE: Only\n                    users with push access can set assignees for new issues. Assignees\n                    are silently dropped otherwise._'\n                  items:\n                    type: string\n              required:\n              - title\n            example:\n              title: Found a bug\n              body: I'm having a problem with this.\n              assignees:\n              - octocat\n              milestone: 1\n              labels:\n              - bug\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/issues/1347\n              schema:\n                type: string\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '503':\n          \"$ref\": \"#/components/responses/service_unavailable\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List repository issues\n      description: |-\n        List issues in a repository.\n\n        **Note**: GitHub's REST API v3 considers every pull request an issue, but not every issue is a pull request. For this\n        reason, \"Issues\" endpoints may return both issues and pull requests in the response. You can identify pull requests by\n        the `pull_request` key. Be aware that the `id` of a pull request returned from \"Issues\" endpoints will be an _issue id_. To find out the pull\n        request id, use the \"[List pull requests](https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests)\" endpoint.\n      tags:\n      - issues\n      operationId: issues/list-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#list-repository-issues\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: milestone\n        description: If an `integer` is passed, it should refer to a milestone by\n          its `number` field. If the string `*` is passed, issues with any milestone\n          are accepted. If the string `none` is passed, issues without milestones\n          are returned.\n        in: query\n        required: false\n        schema:\n          type: string\n      - name: state\n        description: Indicates the state of the issues to return. Can be either `open`,\n          `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - name: assignee\n        description: Can be the name of a user. Pass in `none` for issues with no\n          assigned user, and `*` for issues assigned to any user.\n        in: query\n        required: false\n        schema:\n          type: string\n      - name: creator\n        description: The user that created the issue.\n        in: query\n        required: false\n        schema:\n          type: string\n      - name: mentioned\n        description: A user that's mentioned in the issue.\n        in: query\n        required: false\n        schema:\n          type: string\n      - \"$ref\": \"#/components/parameters/labels\"\n      - name: sort\n        description: What to sort results by. Can be either `created`, `updated`,\n          `comments`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - comments\n          default: created\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-simple-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/issues/{issue_number}/comments\":\n    post:\n      summary: Create an issue comment\n      description: This endpoint triggers [notifications](https://help.github.com/articles/about-notifications/).\n        Creating content too quickly using this endpoint may result in abuse rate\n        limiting. See \"[Abuse rate limits](https://developer.github.com/enterprise/2.20/v3/#abuse-rate-limits)\"\n        and \"[Dealing with abuse rate limits](https://developer.github.com/enterprise/2.20/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits)\"\n        for details.\n      tags:\n      - issues\n      operationId: issues/create-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/comments/#create-an-issue-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                body:\n                  type: string\n                  description: The contents of the comment.\n              required:\n              - body\n            example:\n              body: Me too\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-comment\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1\n              schema:\n                type: string\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        triggersNotification: true\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    get:\n      summary: List issue comments\n      description: Issue Comments are ordered by ascending ID.\n      tags:\n      - issues\n      operationId: issues/list-comments\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/comments/#list-issue-comments\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/issues/{issue_number}/assignees\":\n    delete:\n      summary: Remove assignees from an issue\n      description: Removes one or more assignees from an issue.\n      tags:\n      - issues\n      operationId: issues/remove-assignees\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/assignees/#remove-assignees-from-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                assignees:\n                  type: array\n                  description: 'Usernames of assignees to remove from an issue. _NOTE:\n                    Only users with push access can remove assignees from an issue.\n                    Assignees are silently ignored otherwise._'\n                  items:\n                    type: string\n            example:\n              assignees:\n              - hubot\n              - other_user\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    post:\n      summary: Add assignees to an issue\n      description: Adds up to 10 assignees to an issue. Users already assigned to\n        an issue are not replaced.\n      tags:\n      - issues\n      operationId: issues/add-assignees\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/assignees/#add-assignees-to-an-issue\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/issue_number\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                assignees:\n                  type: array\n                  description: 'Usernames of people to assign this issue to. _NOTE:\n                    Only users with push access can add assignees to an issue. Assignees\n                    are silently ignored otherwise._'\n                  items:\n                    type: string\n            example:\n              assignees:\n              - hubot\n              - other_user\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/issues/events\":\n    get:\n      summary: List issue events for a repository\n      description: ''\n      tags:\n      - issues\n      operationId: issues/list-events-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/events/#list-issue-events-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue-event\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-event-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: starfox\n          note: |-\n            Project card details are now shown in REST API v3 responses for project-related issue and timeline events. This feature is now available for developers to preview. For details, see the [blog post](https://developer.github.com/changes/2018-09-05-project-card-events).\n\n            To receive the `project_card` attribute, project boards must be [enabled](https://help.github.com/articles/disabling-project-boards-in-a-repository) for a repository, and you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.starfox-preview+json\n            ```\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n  \"/repos/{owner}/{repo}/assignees/{assignee}\":\n    get:\n      summary: Check if a user can be assigned\n      description: |-\n        Checks if a user has permission to be assigned to an issue in this repository.\n\n        If the `assignee` can be assigned to issues in the repository, a `204` header with no content is returned.\n\n        Otherwise a `404` status code is returned.\n      tags:\n      - issues\n      operationId: issues/check-user-can-be-assigned\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/assignees/#check-if-a-user-can-be-assigned\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: assignee\n        description: assignee parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '204':\n          description: If the `assignee` can be assigned to issues in the repository,\n            a `204` header with no content is returned.\n        '404':\n          description: Otherwise a `404` status code is returned.\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/basic-error\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/user/issues\":\n    get:\n      summary: List user account issues assigned to the authenticated user\n      description: |-\n        List issues across owned and member repositories assigned to the authenticated user.\n\n        **Note**: GitHub's REST API v3 considers every pull request an issue, but not every issue is a pull request. For this\n        reason, \"Issues\" endpoints may return both issues and pull requests in the response. You can identify pull requests by\n        the `pull_request` key. Be aware that the `id` of a pull request returned from \"Issues\" endpoints will be an _issue id_. To find out the pull\n        request id, use the \"[List pull requests](https://developer.github.com/enterprise/2.20/v3/pulls/#list-pull-requests)\" endpoint.\n      tags:\n      - issues\n      operationId: issues/list-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/#list-user-account-issues-assigned-to-the-authenticated-user\n      parameters:\n      - name: filter\n        description: \"Indicates which sorts of issues to return. Can be one of:  \\n\\\\*\n          `assigned`: Issues assigned to you  \\n\\\\* `created`: Issues created by you\n          \\ \\n\\\\* `mentioned`: Issues mentioning you  \\n\\\\* `subscribed`: Issues you're\n          subscribed to updates for  \\n\\\\* `all`: All issues the authenticated user\n          can see, regardless of participation or creation\"\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - assigned\n          - created\n          - mentioned\n          - subscribed\n          - all\n          default: assigned\n      - name: state\n        description: Indicates the state of the issues to return. Can be either `open`,\n          `closed`, or `all`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - open\n          - closed\n          - all\n          default: open\n      - \"$ref\": \"#/components/parameters/labels\"\n      - name: sort\n        description: What to sort results by. Can be either `created`, `updated`,\n          `comments`.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - created\n          - updated\n          - comments\n          default: created\n      - \"$ref\": \"#/components/parameters/direction\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-with-repo-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/repos/{owner}/{repo}/milestones/{milestone_number}/labels\":\n    get:\n      summary: List labels for issues in a milestone\n      description: ''\n      tags:\n      - issues\n      operationId: issues/list-labels-for-milestone\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/labels/#list-labels-for-issues-in-a-milestone\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/milestone_number\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/label\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/label-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/issues/events/{event_id}\":\n    get:\n      summary: Get an issue event\n      description: ''\n      tags:\n      - issues\n      operationId: issues/get-event\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/events/#get-an-issue-event\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: event_id\n        description: event_id parameter\n        in: path\n        required: true\n        schema:\n          type: integer\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/issue-event\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-event\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: starfox\n          note: |-\n            Project card details are now shown in REST API v3 responses for project-related issue and timeline events. This feature is now available for developers to preview. For details, see the [blog post](https://developer.github.com/changes/2018-09-05-project-card-events).\n\n            To receive the `project_card` attribute, project boards must be [enabled](https://help.github.com/articles/disabling-project-boards-in-a-repository) for a repository, and you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.starfox-preview+json\n            ```\n        - required: false\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: sailor-v\n          note: |-\n            You can now use the REST API to add a reason when you lock an issue, and you will see lock reasons in responses that include issues or pull requests. You will also see lock reasons in `locked` events. This feature is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2018-01-10-lock-reason-api-preview) for full details. To access this feature, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.sailor-v-preview+json\n            ```\n  \"/repos/{owner}/{repo}/issues/comments\":\n    get:\n      summary: List issue comments for a repository\n      description: By default, Issue Comments are ordered by ascending ID.\n      tags:\n      - issues\n      operationId: issues/list-comments-for-repo\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/issues/comments/#list-issue-comments-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/sort\"\n      - name: direction\n        description: Either `asc` or `desc`. Ignored without the `sort` parameter.\n        in: query\n        required: false\n        schema:\n          type: string\n          enum:\n          - asc\n          - desc\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/issue-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/issue-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: false\n          name: squirrel-girl\n          note: |-\n            An additional `reactions` object in the issue comment payload is currently available for developers to preview. During the preview period, the APIs may change without advance notice. Please see the [blog post](https://developer.github.com/changes/2016-05-12-reactions-api-preview) for full details.\n\n            To access the API you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.squirrel-girl-preview\n            ```\n            The `reactions` key will have the following payload where `url` can be used to construct the API location for [listing and creating](https://developer.github.com/v3/reactions) reactions.\n  \"/applications/{client_id}/token\":\n    delete:\n      summary: Delete an app token\n      description: OAuth application owners can revoke a single token for an OAuth\n        application. You must use [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication)\n        when accessing this endpoint, using the OAuth application's `client_id` and\n        `client_secret` as the username and password.\n      tags:\n      - apps\n      operationId: apps/delete-token\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#delete-an-app-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                access_token:\n                  type: string\n                  description: The OAuth access token used to authenticate to the\n                    GitHub API.\n            example:\n              access_token: e72e16c7e42f292c6912e7710c838347ae178b4a\n      responses:\n        '204':\n          description: Empty response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    patch:\n      summary: Reset a token\n      description: OAuth applications can use this API method to reset a valid OAuth\n        token without end-user involvement. Applications must save the \"token\" property\n        in the response because changes take effect immediately. You must use [Basic\n        Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication)\n        when accessing this endpoint, using the OAuth application's `client_id` and\n        `client_secret` as the username and password. Invalid tokens will return `404\n        NOT FOUND`.\n      tags:\n      - apps\n      operationId: apps/reset-token\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#reset-a-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                access_token:\n                  description: The access_token of the OAuth application.\n                  type: string\n              required:\n              - access_token\n              type: object\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-with-user\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    post:\n      summary: Check a token\n      description: OAuth applications can use a special API method for checking OAuth\n        token validity without exceeding the normal rate limits for failed login attempts.\n        Authentication works differently with this particular endpoint. You must use\n        [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication)\n        to use this endpoint, where the username is the OAuth application `client_id`\n        and the password is its `client_secret`. Invalid tokens will return `404 NOT\n        FOUND`.\n      tags:\n      - apps\n      operationId: apps/check-token\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#check-a-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                access_token:\n                  description: The access_token of the OAuth application.\n                  type: string\n              required:\n              - access_token\n              type: object\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-with-user\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/installation\":\n    get:\n      summary: Get a user installation for the authenticated app\n      description: |-\n        Enables an authenticated GitHub App to find the user’s installation information.\n\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/get-user-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#get-a-user-installation-for-the-authenticated-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/installation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/installation\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/content_references/{content_reference_id}/attachments\":\n    post:\n      summary: Create a content attachment\n      description: |-\n        Creates an attachment under a content reference URL in the body or comment of an issue or pull request. Use the `id` of the content reference from the [`content_reference` event](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#content_reference) to create an attachment.\n\n        The app must create a content attachment within six hours of the content reference URL being posted. See \"[Using content attachments](https://developer.github.com/enterprise/2.20/apps/using-content-attachments/)\" for details about content attachments.\n\n        You must use an [installation access token](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/create-content-attachment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/installations/#create-a-content-attachment\n      parameters:\n      - name: content_reference_id\n        description: content_reference_id parameter\n        in: path\n        required: true\n        schema:\n          type: integer\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                title:\n                  description: The title of the attachment\n                  example: Title of the attachment\n                  type: string\n                  maxLength: 1024\n                body:\n                  description: The body of the attachment\n                  example: Body of the attachment\n                  type: string\n                  maxLength: 262144\n              required:\n              - title\n              - body\n              type: object\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/content-reference-attachment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/content-reference-attachment\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '410':\n          \"$ref\": \"#/components/responses/gone\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: corsair\n          note: |-\n            To access the Content Attachments API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.corsair-preview+json\n            ```\n  \"/repos/{owner}/{repo}/installation\":\n    get:\n      summary: Get a repository installation for the authenticated app\n      description: |-\n        Enables an authenticated GitHub App to find the repository's installation information. The installation's account type will be either an organization or a user account, depending which account the repository belongs to.\n\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/get-repo-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#get-a-repository-installation-for-the-authenticated-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/installation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/installation\"\n        '301':\n          \"$ref\": \"#/components/responses/moved_permanently\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/user/installations\":\n    get:\n      summary: List app installations accessible to the user access token\n      description: |-\n        Lists installations of your GitHub App that the authenticated user has explicit permission (`:read`, `:write`, or `:admin`) to access.\n\n        You must use a [user-to-server OAuth access token](https://developer.github.com/enterprise/2.20/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#identifying-users-on-your-site), created for a user who has authorized your GitHub App, to access this endpoint.\n\n        The authenticated user has explicit permission to access repositories they own, repositories where they are a collaborator, and repositories that they can access through an organization membership.\n\n        You can find the permissions for the installation under the `permissions` key.\n      tags:\n      - apps\n      operationId: apps/list-installations-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/installations/#list-app-installations-accessible-to-the-user-access-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: You can find the permissions for the installation under the\n            `permissions` key.\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  installations:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/installation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-installation-for-auth-user-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/installation/repositories\":\n    get:\n      summary: List repositories accessible to the app installation\n      description: |-\n        List repositories that an app installation can access.\n\n        You must use an [installation access token](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/list-repos-accessible-to-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/installations/#list-repositories-accessible-to-the-app-installation\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  repositories:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/repository\"\n                  repository_selection:\n                    type: string\n                    example: selected\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-paginated-2\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: mercy\n          note: |-\n            The `topics` property for repositories on GitHub is currently available for developers to preview. To view the `topics` property in calls that return repository results, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.mercy-preview+json\n            ```\n  \"/user/installations/{installation_id}/repositories\":\n    get:\n      summary: List repositories accessible to the user access token\n      description: |-\n        List repositories that the authenticated user has explicit permission (`:read`, `:write`, or `:admin`) to access for an installation.\n\n        The authenticated user has explicit permission to access repositories they own, repositories where they are a collaborator, and repositories that they can access through an organization membership.\n\n        You must use a [user-to-server OAuth access token](https://developer.github.com/enterprise/2.20/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/#identifying-users-on-your-site), created for a user who has authorized your GitHub App, to access this endpoint.\n\n        The access the user has to each repository is included in the hash under the `permissions` key.\n      tags:\n      - apps\n      operationId: apps/list-installation-repos-for-authenticated-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/installations/#list-repositories-accessible-to-the-user-access-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: The access the user has to each repository is included in the\n            hash under the `permissions` key.\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  total_count:\n                    type: integer\n                  repository_selection:\n                    type: string\n                  repositories:\n                    type: array\n                    items:\n                      \"$ref\": \"#/components/schemas/repository\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-paginated\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n        - required: false\n          name: mercy\n          note: |-\n            The `topics` property for repositories on GitHub is currently available for developers to preview. To view the `topics` property in calls that return repository results, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.mercy-preview+json\n            ```\n  \"/applications/{client_id}/grants/{access_token}\":\n    delete:\n      summary: Revoke a grant for an application\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will replace and discontinue OAuth endpoints containing `access_token` in the path parameter. We are introducing new endpoints that allow you to securely manage tokens for OAuth Apps by using `access_token` as an input parameter. The OAuth Application API will be removed on May 5, 2021. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\n        OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. You must also provide a valid token as `:access_token` and the grant for the token's owner will be deleted.\n\n        Deleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on [the Applications settings page under \"Authorized OAuth Apps\" on GitHub Enterprise Server](https://github.com/settings/applications#authorized).\n      tags:\n      - apps\n      operationId: apps/revoke-grant-for-application\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#revoke-a-grant-for-an-application\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      - \"$ref\": \"#/components/parameters/access-token\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/app/installations/{installation_id}/access_tokens\":\n    post:\n      summary: Create an installation access token for an app\n      description: |-\n        Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access. To restrict the access to specific repositories, you can provide the `repository_ids` when creating the token. When you omit `repository_ids`, the response does not contain the `repositories` key.\n\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/create-installation-access-token\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#create-an-installation-access-token-for-an-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                repositories:\n                  description: List of repository names that the token should have\n                    access to\n                  type: array\n                  items:\n                    type: string\n                    example: rails\n                repository_ids:\n                  description: List of repository IDs that the token should have access\n                    to\n                  example:\n                  - 1\n                  type: array\n                  items:\n                    type: integer\n                permissions:\n                  type: object\n                  properties:\n                    contents:\n                      type: string\n                    issues:\n                      type: string\n                    deployments:\n                      type: string\n                    single_file:\n                      type: string\n                    def_not_a_repo:\n                      type: string\n                      example: '\"read\"'\n                  example:\n                    contents: read\n                    issues: read\n                    deployments: write\n                    single_file: read\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/installation-token\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/installation-token\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/installation/token\":\n    delete:\n      summary: Revoke an installation access token\n      description: |-\n        Revokes the installation token you're using to authenticate as an installation and access this endpoint.\n\n        Once an installation token is revoked, the token is invalidated and cannot be used. Other endpoints that require the revoked installation token must have a new installation token to work. You can create a new token using the \"[Create an installation access token for an app](https://developer.github.com/enterprise/2.20/v3/apps/#create-an-installation-access-token-for-an-app)\" endpoint.\n\n        You must use an [installation access token](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/revoke-installation-access-token\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/installations/#revoke-an-installation-access-token\n      parameters: []\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/applications/{client_id}/tokens/{access_token}\":\n    post:\n      summary: Reset an authorization\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will replace and discontinue OAuth endpoints containing `access_token` in the path parameter. We are introducing new endpoints that allow you to securely manage tokens for OAuth Apps by using `access_token` as an input parameter. The OAuth Application API will be removed on May 5, 2021. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\n        OAuth applications can use this API method to reset a valid OAuth token without end-user involvement. Applications must save the \"token\" property in the response because changes take effect immediately. You must use [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. Invalid tokens will return `404 NOT FOUND`.\n      tags:\n      - apps\n      operationId: apps/reset-authorization\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#reset-an-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      - \"$ref\": \"#/components/parameters/access-token\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-with-user\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n    get:\n      summary: Check an authorization\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will replace and discontinue OAuth endpoints containing `access_token` in the path parameter. We are introducing new endpoints that allow you to securely manage tokens for OAuth Apps by using `access_token` as an input parameter. The OAuth Application API will be removed on May 5, 2021. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\n        OAuth applications can use a special API method for checking OAuth token validity without exceeding the normal rate limits for failed login attempts. Authentication works differently with this particular endpoint. You must use [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. Invalid tokens will return `404 NOT FOUND`.\n      tags:\n      - apps\n      operationId: apps/check-authorization\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#check-an-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      - \"$ref\": \"#/components/parameters/access-token\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                nullable: true\n                allOf:\n                - \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-with-user\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n    delete:\n      summary: Revoke an authorization for an application\n      description: |-\n        **Deprecation Notice:** GitHub Enterprise Server will replace and discontinue OAuth endpoints containing `access_token` in the path parameter. We are introducing new endpoints that allow you to securely manage tokens for OAuth Apps by using `access_token` as an input parameter. The OAuth Application API will be removed on May 5, 2021. For more information, including scheduled brownouts, see the [blog post](https://developer.github.com/enterprise/2.20/changes/2020-02-14-deprecating-oauth-app-endpoint/).\n\n        OAuth application owners can revoke a single token for an OAuth application. You must use [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password.\n      tags:\n      - apps\n      operationId: apps/revoke-authorization-for-application\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#revoke-an-authorization-for-an-application\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      - \"$ref\": \"#/components/parameters/access-token\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n        removalDate: '2021-05-05'\n        deprecationDate: '2020-02-14'\n      deprecated: true\n  \"/app/installations\":\n    get:\n      summary: List installations for the authenticated app\n      description: |-\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n\n        The permissions the installation has are included under the `permissions` key.\n      tags:\n      - apps\n      operationId: apps/list-installations\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#list-installations-for-the-authenticated-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - name: outdated\n        in: query\n        required: false\n        schema:\n          type: string\n      responses:\n        '200':\n          description: The permissions the installation has are included under the\n            `permissions` key.\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/installation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-installation-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/app-manifests/{code}/conversions\":\n    post:\n      summary: Create a GitHub App from a manifest\n      description: Use this endpoint to complete the handshake necessary when implementing\n        the [GitHub App Manifest flow](https://developer.github.com/enterprise/2.20/apps/building-github-apps/creating-github-apps-from-a-manifest/).\n        When you create a GitHub App with the manifest flow, you receive a temporary\n        `code` used to retrieve the GitHub App's `id`, `pem` (private key), and `webhook_secret`.\n      tags:\n      - apps\n      operationId: apps/create-from-manifest\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#create-a-github-app-from-a-manifest\n      parameters:\n      - name: code\n        description: code parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                allOf:\n                - \"$ref\": \"#/components/schemas/integration\"\n                - type: object\n                  properties:\n                    client_id:\n                      type: string\n                    client_secret:\n                      type: string\n                    webhook_secret:\n                      type: string\n                    pem:\n                      type: string\n                  required:\n                  - client_id\n                  - client_secret\n                  - webhook_secret\n                  - pem\n                  additionalProperties: true\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/integration-from-manifest\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed_simple\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/applications/{client_id}/grant\":\n    delete:\n      summary: Delete an app authorization\n      description: |-\n        OAuth application owners can revoke a grant for their OAuth application and a specific user. You must use [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth#basic-authentication) when accessing this endpoint, using the OAuth application's `client_id` and `client_secret` as the username and password. You must also provide a valid OAuth `access_token` as an input parameter and the grant for the token's owner will be deleted.\n        Deleting an OAuth application's grant will also delete all OAuth tokens associated with the application for the user. Once deleted, the application will have no access to the user's account and will no longer be listed on [the application authorizations settings screen within GitHub](https://github.com/settings/applications#authorized).\n      operationId: apps/delete-authorization\n      tags:\n      - apps\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/oauth_applications/#delete-an-app-authorization\n      parameters:\n      - \"$ref\": \"#/components/parameters/client-id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                access_token:\n                  type: string\n                  description: The OAuth access token used to authenticate to the\n                    GitHub API.\n            example:\n              access_token: e72e16c7e42f292c6912e7710c838347ae178b4a\n      responses:\n        '204':\n          description: Empty response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/orgs/{org}/installation\":\n    get:\n      summary: Get an organization installation for the authenticated app\n      description: |-\n        Enables an authenticated GitHub App to find the organization's installation information.\n\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/get-org-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#get-an-organization-installation-for-the-authenticated-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/installation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/installation\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/app\":\n    get:\n      summary: Get the authenticated app\n      description: |-\n        Returns the GitHub App associated with the authentication credentials used. To see how many app installations are associated with this GitHub App, see the `installations_count` in the response. For more details about your app's installations, see the \"[List installations for the authenticated app](https://developer.github.com/enterprise/2.20/v3/apps/#list-installations-for-the-authenticated-app)\" endpoint.\n\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/get-authenticated\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#get-the-authenticated-app\n      parameters: []\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/integration\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/integration\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/app/installations/{installation_id}\":\n    get:\n      summary: Get an installation for the authenticated app\n      description: |-\n        Enables an authenticated GitHub App to find an installation's information using the installation id. The installation's account type (`target_type`) will be either an organization or a user account, depending which account the repository belongs to.\n\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/get-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#get-an-installation-for-the-authenticated-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/installation\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-installation\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n    delete:\n      summary: Delete an installation for the authenticated app\n      description: |-\n        Uninstalls a GitHub App on a user, organization, or business account. If you prefer to temporarily suspend an app's access to your account's resources, then we recommend the \"[Suspend an app installation](https://developer.github.com/enterprise/2.20/v3/apps/#suspend-an-app-installation)\" endpoint.\n\n        You must use a [JWT](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/delete-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#delete-an-installation-for-the-authenticated-app\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation_id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/user/installations/{installation_id}/repositories/{repository_id}\":\n    put:\n      summary: Add a repository to an app installation\n      description: |-\n        Add a single repository to an installation. The authenticated user must have admin access to the repository.\n\n        You must use a personal access token (which you can create via the [command line](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/) or the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#create-a-new-authorization)) or [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth/#basic-authentication) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/add-repo-to-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/installations/#add-a-repository-to-an-app-installation\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation_id\"\n      - name: repository_id\n        description: repository_id parameter\n        in: path\n        required: true\n        schema:\n          type: integer\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n    delete:\n      summary: Remove a repository from an app installation\n      description: |-\n        Remove a single repository from an installation. The authenticated user must have admin access to the repository.\n\n        You must use a personal access token (which you can create via the [command line](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/) or the [OAuth Authorizations API](https://developer.github.com/enterprise/2.20/v3/oauth_authorizations/#create-a-new-authorization)) or [Basic Authentication](https://developer.github.com/enterprise/2.20/v3/auth/#basic-authentication) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/remove-repo-from-installation\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/installations/#remove-a-repository-from-an-app-installation\n      parameters:\n      - \"$ref\": \"#/components/parameters/installation_id\"\n      - name: repository_id\n        description: repository_id parameter\n        in: path\n        required: true\n        schema:\n          type: integer\n      responses:\n        '204':\n          description: Empty response\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/apps/{app_slug}\":\n    get:\n      summary: Get an app\n      description: |-\n        **Note**: The `:app_slug` is just the URL-friendly name of your GitHub App. You can find this on the settings page for your GitHub App (e.g., `https://github.com/settings/apps/:app_slug`).\n\n        If the GitHub App you specify is public, you can access this endpoint without authenticating. If the GitHub App you specify is private, you must authenticate with a [personal access token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/) or an [installation access token](https://developer.github.com/enterprise/2.20/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation) to access this endpoint.\n      tags:\n      - apps\n      operationId: apps/get-by-slug\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/apps/#get-an-app\n      parameters:\n      - name: app_slug\n        description: app_slug parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/integration\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/integration\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '415':\n          \"$ref\": \"#/components/responses/preview_header_missing\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: machine-man\n          note: To access the API with your GitHub App, you must provide a custom\n            [media type](https://developer.github.com/enterprise/2.20/v3/media) in\n            the `Accept` Header for your requests. ```shell application/vnd.github.machine-man-preview+json\n            ```\n  \"/gists/{gist_id}/star\":\n    delete:\n      summary: Unstar a gist\n      description: ''\n      tags:\n      - gists\n      operationId: gists/unstar\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#unstar-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Check if a gist is starred\n      description: ''\n      tags:\n      - gists\n      operationId: gists/check-is-starred\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#check-if-a-gist-is-starred\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      responses:\n        '204':\n          description: Response if gist is starred\n        '404':\n          description: Response if gist is not starred\n          content:\n            application/json:\n              schema:\n                type: object\n                properties: {}\n                additionalProperties: false\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    put:\n      summary: Star a gist\n      description: Note that you'll need to set `Content-Length` to zero when calling\n        out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      tags:\n      - gists\n      operationId: gists/star\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#star-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/starred\":\n    get:\n      summary: List starred gists\n      description: 'List the authenticated user''s starred gists:'\n      tags:\n      - gists\n      operationId: gists/list-starred\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#list-starred-gists\n      parameters:\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/base-gist\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-gist-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '401':\n          \"$ref\": \"#/components/responses/requires_authentication\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/{gist_id}/comments/{comment_id}\":\n    delete:\n      summary: Delete a gist comment\n      description: ''\n      tags:\n      - gists\n      operationId: gists/delete-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/comments/#delete-a-gist-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '204':\n          description: Empty response\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Get a gist comment\n      description: ''\n      tags:\n      - gists\n      operationId: gists/get-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/comments/#get-a-gist-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gist-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-comment\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden_gist\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    patch:\n      summary: Update a gist comment\n      description: ''\n      tags:\n      - gists\n      operationId: gists/update-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/comments/#update-a-gist-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      - \"$ref\": \"#/components/parameters/comment_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                body:\n                  description: The comment text.\n                  type: string\n                  maxLength: 65535\n                  example: Body of the attachment\n              type: object\n              required:\n              - body\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gist-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-comment\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/public\":\n    get:\n      summary: List public gists\n      description: |-\n        List public gists sorted by most recently updated to least recently updated.\n\n        Note: With [pagination](https://developer.github.com/enterprise/2.20/v3/#pagination), you can fetch up to 3000 gists. For example, you can fetch 100 pages with 30 gists per page or 30 pages with 100 gists per page.\n      tags:\n      - gists\n      operationId: gists/list-public\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#list-public-gists\n      parameters:\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/base-gist\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-gist-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/gists\":\n    get:\n      summary: List gists for a user\n      description: 'Lists public gists for the specified user:'\n      tags:\n      - gists\n      operationId: gists/list-for-user\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#list-gists-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/base-gist\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-gist-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/{gist_id}\":\n    delete:\n      summary: Delete a gist\n      description: ''\n      tags:\n      - gists\n      operationId: gists/delete\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#delete-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      responses:\n        '204':\n          description: Empty response\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Get a gist\n      description: ''\n      tags:\n      - gists\n      operationId: gists/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#get-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gist-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden_gist\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    patch:\n      summary: Update a gist\n      description: Allows you to update or delete a gist file and rename gist files.\n        Files from the previous version of the gist that aren't explicitly changed\n        during an edit are unchanged.\n      tags:\n      - gists\n      operationId: gists/update\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#update-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                description:\n                  description: Description of the gist\n                  example: Example Ruby script\n                  type: string\n                files:\n                  description: Names of files to be updated\n                  example:\n                    hello.rb:\n                      content: blah\n                      filename: goodbye.rb\n                  type: object\n                  additionalProperties:\n                    type: object\n                    properties:\n                      content:\n                        description: The new content of the file\n                        type: string\n                      filename:\n                        description: The new filename for the file\n                        type: string\n                        nullable: true\n                    nullable: true\n              anyOf:\n              - required:\n                - description\n              - required:\n                - files\n              type: object\n              nullable: true\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gist-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-3\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/{gist_id}/forks\":\n    get:\n      summary: List gist forks\n      description: ''\n      tags:\n      - gists\n      operationId: gists/list-forks\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#list-gist-forks\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/gist-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-fork-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    post:\n      summary: Fork a gist\n      description: \"**Note**: This was previously `/gists/:gist_id/fork`.\"\n      tags:\n      - gists\n      operationId: gists/fork\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#fork-a-gist\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/base-gist\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-gist\"\n          headers:\n            Location:\n              example: https://api.github.com/gists/aa5a315d61ae9438b18d\n              schema:\n                type: string\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists\":\n    get:\n      summary: List gists for the authenticated user\n      description: 'Lists the authenticated user''s gists or if called anonymously,\n        this endpoint returns all public gists:'\n      tags:\n      - gists\n      operationId: gists/list\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#list-gists-for-the-authenticated-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/since\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/base-gist\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/base-gist-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    post:\n      summary: Create a gist\n      description: |-\n        Allows you to add a new gist with one or more files.\n\n        **Note:** Don't name your files \"gistfile\" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally.\n      operationId: gists/create\n      tags:\n      - gists\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#create-a-gist\n      parameters: []\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                description:\n                  description: Description of the gist\n                  example: Example Ruby script\n                  type: string\n                files:\n                  description: Names and content for the files that make up the gist\n                  example:\n                    hello.rb:\n                      content: puts \"Hello, World!\"\n                  type: object\n                  additionalProperties:\n                    type: object\n                    properties:\n                      content:\n                        description: Content of the file\n                        readOnly: false\n                        type: string\n                    required:\n                    - content\n                public:\n                  oneOf:\n                  - description: Flag indicating whether the gist is public\n                    example: true\n                    type: boolean\n                  - type: string\n                    enum:\n                    - 'true'\n                    - 'false'\n                  - nullable: true\n              required:\n              - files\n              type: object\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gist-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist\"\n          headers:\n            Location:\n              example: https://api.github.com/gists/aa5a315d61ae9438b18d\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/{gist_id}/commits\":\n    get:\n      summary: List gist commits\n      description: ''\n      tags:\n      - gists\n      operationId: gists/list-commits\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#list-gist-commits\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/gist-commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-commit-items\"\n          headers:\n            Link:\n              example: <https://api.github.com/resource?page=2>; rel=\"next\"\n              schema:\n                type: string\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/{gist_id}/comments\":\n    post:\n      summary: Create a gist comment\n      description: ''\n      tags:\n      - gists\n      operationId: gists/create-comment\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/comments/#create-a-gist-comment\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              properties:\n                body:\n                  description: The comment text.\n                  type: string\n                  maxLength: 65535\n                  example: Body of the attachment\n              type: object\n              required:\n              - body\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gist-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-comment\"\n          headers:\n            Location:\n              example: https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\n              schema:\n                type: string\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: List gist comments\n      description: ''\n      tags:\n      - gists\n      operationId: gists/list-comments\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/comments/#list-gist-comments\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/gist-comment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-comment-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/gists/{gist_id}/{sha}\":\n    get:\n      summary: Get a gist revision\n      description: ''\n      tags:\n      - gists\n      operationId: gists/get-revision\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gists/#get-a-gist-revision\n      parameters:\n      - \"$ref\": \"#/components/parameters/gist_id\"\n      - name: sha\n        description: sha parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gist-full\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gist-2\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/rate_limit\":\n    get:\n      summary: Get rate limit status for the authenticated user\n      description: |-\n        **Note:** Accessing this endpoint does not count against your REST API rate limit.\n\n        **Note:** The `rate` object is deprecated. If you're writing new API client code or updating existing code, you should use the `core` object instead of the `rate` object. The `core` object contains the same information that is present in the `rate` object.\n      tags:\n      - rate-limit\n      operationId: rate-limit/get\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/rate_limit/#get-rate-limit-status-for-the-authenticated-user\n      parameters: []\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/rate-limit-overview\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/rate-limit-overview\"\n          headers:\n            X-RateLimit-Limit:\n              \"$ref\": \"#/components/headers/x-rate-limit-limit\"\n            X-RateLimit-Remaining:\n              \"$ref\": \"#/components/headers/x-rate-limit-remaining\"\n            X-RateLimit-Reset:\n              \"$ref\": \"#/components/headers/x-rate-limit-reset\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/trees/{tree_sha}\":\n    get:\n      summary: Get a tree\n      description: |-\n        Returns a single tree using the SHA1 value for that tree.\n\n        If `truncated` is `true` in the response then the number of items in the `tree` array exceeded our maximum limit. If you need to fetch more items, use the non-recursive method of fetching trees, and fetch one sub-tree at a time.\n      tags:\n      - git\n      operationId: git/get-tree\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/trees/#get-a-tree\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: tree_sha\n        description: tree_sha parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - name: recursive\n        description: 'Setting this parameter to any value returns the objects or subtrees\n          referenced by the tree specified in `:tree_sha`. For example, setting `recursive`\n          to any of the following will enable returning objects or subtrees: `0`,\n          `1`, `\"true\"`, and `\"false\"`. Omit this parameter to prevent recursively\n          returning objects or subtrees.'\n        in: query\n        required: false\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-tree\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/git-tree-default-response\"\n                response-recursively-retrieving-a-tree:\n                  \"$ref\": \"#/components/examples/git-tree-response-recursively-retrieving-a-tree\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/matching-refs/{ref}\":\n    get:\n      summary: List matching references\n      description: |-\n        Returns an array of references from your Git database that match the supplied name. The `:ref` in the URL must be formatted as `heads/<branch name>` for branches and `tags/<tag name>` for tags. If the `:ref` doesn't exist in the repository, but existing refs start with `:ref`, they will be returned as an array.\n\n        When you use this endpoint without providing a `:ref`, it will return an array of all the references from your Git database, including notes and stashes if they exist on the server. Anything in the namespace is returned, not just `heads` and `tags`.\n\n        **Note:** You need to explicitly [request a pull request](https://developer.github.com/enterprise/2.20/v3/pulls/#get-a-pull-request) to trigger a test merge commit, which checks the mergeability of pull requests. For more information, see \"[Checking mergeability of pull requests](https://developer.github.com/enterprise/2.20/v3/git/#checking-mergeability-of-pull-requests)\".\n\n        If you request matching references for a branch named `feature` but the branch `feature` doesn't exist, the response can still include other matching head refs that start with the word `feature`, such as `featureA` and `featureB`.\n      tags:\n      - git\n      operationId: git/list-matching-refs\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/refs/#list-matching-references\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      - \"$ref\": \"#/components/parameters/per_page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/git-ref\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-ref-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/refs/{ref}\":\n    delete:\n      summary: Delete a reference\n      description: ''\n      tags:\n      - git\n      operationId: git/delete-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/refs/#delete-a-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '204':\n          description: Empty response\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n    patch:\n      summary: Update a reference\n      description: ''\n      tags:\n      - git\n      operationId: git/update-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/refs/#update-a-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                sha:\n                  type: string\n                  description: The SHA1 value to set this reference to\n                force:\n                  type: boolean\n                  description: Indicates whether to force the update or to make sure\n                    the update is a fast-forward update. Leaving this out or setting\n                    it to `false` will make sure you're not overwriting work.\n                  default: false\n              required:\n              - sha\n            example:\n              sha: aa218f56b14c9653891f9e74264a383fa43fefbd\n              force: true\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-ref\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-ref\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/commits\":\n    post:\n      summary: Create a commit\n      description: |-\n        Creates a new Git [commit object](https://git-scm.com/book/en/v1/Git-Internals-Git-Objects#Commit-Objects).\n\n        In this example, the payload of the signature would be:\n\n\n\n        **Signature verification object**\n\n        The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:\n\n        These are the possible values for `reason` in the `verification` object:\n\n        | Value                    | Description                                                                                                                       |\n        | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n        | `expired_key`            | The key that made the signature is expired.                                                                                       |\n        | `not_signing_key`        | The \"signing\" flag is not among the usage flags in the GPG key that made the signature.                                           |\n        | `gpgverify_error`        | There was an error communicating with the signature verification service.                                                         |\n        | `gpgverify_unavailable`  | The signature verification service is currently unavailable.                                                                      |\n        | `unsigned`               | The object does not include a signature.                                                                                          |\n        | `unknown_signature_type` | A non-PGP signature was found in the commit.                                                                                      |\n        | `no_user`                | No user was associated with the `committer` email address in the commit.                                                          |\n        | `unverified_email`       | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |\n        | `bad_email`              | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature.             |\n        | `unknown_key`            | The key that made the signature has not been registered with any user's account.                                                  |\n        | `malformed_signature`    | There was an error parsing the signature.                                                                                         |\n        | `invalid`                | The signature could not be cryptographically verified using the key whose key-id was found in the signature.                      |\n        | `valid`                  | None of the above errors applied, so the signature is considered to be verified.                                                  |\n      tags:\n      - git\n      operationId: git/create-commit\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/commits/#create-a-commit\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                message:\n                  type: string\n                  description: The commit message\n                tree:\n                  type: string\n                  description: The SHA of the tree object this commit points to\n                parents:\n                  type: array\n                  description: The SHAs of the commits that were the parents of this\n                    commit. If omitted or empty, the commit will be written as a root\n                    commit. For a single parent, an array of one SHA should be provided;\n                    for a merge commit, an array of more than one should be provided.\n                  items:\n                    type: string\n                author:\n                  type: object\n                  description: Information about the author of the commit. By default,\n                    the `author` will be the authenticated user and the current date.\n                    See the `author` and `committer` object below for details.\n                  properties:\n                    name:\n                      type: string\n                      description: The name of the author (or committer) of the commit\n                    email:\n                      type: string\n                      description: The email of the author (or committer) of the commit\n                    date:\n                      type: string\n                      description: 'Indicates when this commit was authored (or committed).\n                        This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)\n                        format: `YYYY-MM-DDTHH:MM:SSZ`.'\n                committer:\n                  type: object\n                  description: Information about the person who is making the commit.\n                    By default, `committer` will use the information set in `author`.\n                    See the `author` and `committer` object below for details.\n                  properties:\n                    name:\n                      type: string\n                      description: The name of the author (or committer) of the commit\n                    email:\n                      type: string\n                      description: The email of the author (or committer) of the commit\n                    date:\n                      type: string\n                      description: 'Indicates when this commit was authored (or committed).\n                        This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)\n                        format: `YYYY-MM-DDTHH:MM:SSZ`.'\n                signature:\n                  type: string\n                  description: The [PGP signature](https://en.wikipedia.org/wiki/Pretty_Good_Privacy)\n                    of the commit. GitHub adds the signature to the `gpgsig` header\n                    of the created commit. For a commit signature to be verifiable\n                    by Git or GitHub, it must be an ASCII-armored detached PGP signature\n                    over the string commit as it would be written to the object database.\n                    To pass a `signature` parameter, you need to first manually create\n                    a valid PGP signature, which can be complicated. You may find\n                    it easier to [use the command line](https://git-scm.com/book/id/v2/Git-Tools-Signing-Your-Work)\n                    to create signed commits.\n              required:\n              - message\n              - tree\n            example:\n              message: my commit message\n              author:\n                name: Mona Octocat\n                email: octocat@github.com\n                date: '2008-07-09T16:13:30+12:00'\n              parents:\n              - 7d1b31e74ee336d15cbd21741bc88a537ed063a0\n              tree: 827efc6d56897b048c772eb4087f854f46256132\n              signature: |\n                -----BEGIN PGP SIGNATURE-----\n\n                iQIzBAABAQAdFiEESn/54jMNIrGSE6Tp6cQjvhfv7nAFAlnT71cACgkQ6cQjvhfv\n                7nCWwA//XVqBKWO0zF+bZl6pggvky3Oc2j1pNFuRWZ29LXpNuD5WUGXGG209B0hI\n                DkmcGk19ZKUTnEUJV2Xd0R7AW01S/YSub7OYcgBkI7qUE13FVHN5ln1KvH2all2n\n                2+JCV1HcJLEoTjqIFZSSu/sMdhkLQ9/NsmMAzpf/iIM0nQOyU4YRex9eD1bYj6nA\n                OQPIDdAuaTQj1gFPHYLzM4zJnCqGdRlg0sOM/zC5apBNzIwlgREatOYQSCfCKV7k\n                nrU34X8b9BzQaUx48Qa+Dmfn5KQ8dl27RNeWAqlkuWyv3pUauH9UeYW+KyuJeMkU\n                +NyHgAsWFaCFl23kCHThbLStMZOYEnGagrd0hnm1TPS4GJkV4wfYMwnI4KuSlHKB\n                jHl3Js9vNzEUQipQJbgCgTiWvRJoK3ENwBTMVkKHaqT4x9U4Jk/XZB6Q8MA09ezJ\n                3QgiTjTAGcum9E9QiJqMYdWQPWkaBIRRz5cET6HPB48YNXAAUsfmuYsGrnVLYbG+\n                UpC6I97VybYHTy2O9XSGoaLeMI9CsFn38ycAxxbWagk5mhclNTP5mezIq6wKSwmr\n                X11FW3n1J23fWZn5HJMBsRnUCgzqzX3871IqLYHqRJ/bpZ4h20RhTyPj5c/z7QXp\n                eSakNQMfbbMcljkha+ZMuVQX1K9aRlVqbmv3ZMWh+OijLYVU2bc=\n                =5Io4\n                -----END PGP SIGNATURE-----\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-commit\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/tags/{tag_sha}\":\n    get:\n      summary: Get a tag\n      description: |-\n        **Signature verification object**\n\n        The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:\n\n        These are the possible values for `reason` in the `verification` object:\n\n        | Value                    | Description                                                                                                                       |\n        | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n        | `expired_key`            | The key that made the signature is expired.                                                                                       |\n        | `not_signing_key`        | The \"signing\" flag is not among the usage flags in the GPG key that made the signature.                                           |\n        | `gpgverify_error`        | There was an error communicating with the signature verification service.                                                         |\n        | `gpgverify_unavailable`  | The signature verification service is currently unavailable.                                                                      |\n        | `unsigned`               | The object does not include a signature.                                                                                          |\n        | `unknown_signature_type` | A non-PGP signature was found in the commit.                                                                                      |\n        | `no_user`                | No user was associated with the `committer` email address in the commit.                                                          |\n        | `unverified_email`       | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |\n        | `bad_email`              | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature.             |\n        | `unknown_key`            | The key that made the signature has not been registered with any user's account.                                                  |\n        | `malformed_signature`    | There was an error parsing the signature.                                                                                         |\n        | `invalid`                | The signature could not be cryptographically verified using the key whose key-id was found in the signature.                      |\n        | `valid`                  | None of the above errors applied, so the signature is considered to be verified.                                                  |\n      tags:\n      - git\n      operationId: git/get-tag\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/tags/#get-a-tag\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: tag_sha\n        description: tag_sha parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-tag\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-tag\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/trees\":\n    post:\n      summary: Create a tree\n      description: |-\n        The tree creation API accepts nested entries. If you specify both a tree and a nested path modifying that tree, this endpoint will overwrite the contents of the tree with the new path contents, and create a new tree structure.\n\n        If you use this endpoint to add, delete, or modify the file contents in a tree, you will need to commit the tree and then update a branch to point to the commit. For more information see \"[Create a commit](https://developer.github.com/enterprise/2.20/v3/git/commits/#create-a-commit)\" and \"[Update a reference](https://developer.github.com/enterprise/2.20/v3/git/refs/#update-a-reference).\"\n      tags:\n      - git\n      operationId: git/create-tree\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/trees/#create-a-tree\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                tree:\n                  type: array\n                  description: Objects (of `path`, `mode`, `type`, and `sha`) specifying\n                    a tree structure.\n                  items:\n                    type: object\n                    properties:\n                      path:\n                        type: string\n                        description: The file referenced in the tree.\n                      mode:\n                        type: string\n                        description: The file mode; one of `100644` for file (blob),\n                          `100755` for executable (blob), `040000` for subdirectory\n                          (tree), `160000` for submodule (commit), or `120000` for\n                          a blob that specifies the path of a symlink.\n                        enum:\n                        - '100644'\n                        - '100755'\n                        - '040000'\n                        - '160000'\n                        - '120000'\n                      type:\n                        type: string\n                        description: Either `blob`, `tree`, or `commit`.\n                        enum:\n                        - blob\n                        - tree\n                        - commit\n                      sha:\n                        type: string\n                        description: \"The SHA1 checksum ID of the object in the tree.\n                          Also called `tree.sha`. If the value is `null` then the\n                          file will be deleted.  \\n  \\n**Note:** Use either `tree.sha`\n                          or `content` to specify the contents of the entry. Using\n                          both `tree.sha` and `content` will return an error.\"\n                        nullable: true\n                      content:\n                        type: string\n                        description: \"The content you want this file to have. GitHub\n                          will write this blob out and use that SHA for this entry.\n                          Use either this, or `tree.sha`.  \\n  \\n**Note:** Use either\n                          `tree.sha` or `content` to specify the contents of the entry.\n                          Using both `tree.sha` and `content` will return an error.\"\n                base_tree:\n                  type: string\n                  description: The SHA1 of the tree you want to update with new data.\n                    If you don't set this, the commit will be created on top of everything;\n                    however, it will only contain your change, the rest of your files\n                    will show up as deleted.\n              required:\n              - tree\n            example:\n              base_tree: 9fb037999f264ba9a7fc6274d15fa3ae2ab98312\n              tree:\n              - path: file.rb\n                mode: '100644'\n                type: blob\n                sha: 44b4fc6d56897b048c772eb4087f854f46256132\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-tree\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-tree\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/refs\":\n    post:\n      summary: Create a reference\n      description: Creates a reference for your repository. You are unable to create\n        new references for empty repositories, even if the commit SHA-1 hash used\n        exists. Empty repositories are repositories without branches.\n      tags:\n      - git\n      operationId: git/create-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/refs/#create-a-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                ref:\n                  type: string\n                  description: 'The name of the fully qualified reference (ie: `refs/heads/master`).\n                    If it doesn''t start with ''refs'' and have at least two slashes,\n                    it will be rejected.'\n                sha:\n                  type: string\n                  description: The SHA1 value for this reference.\n                key:\n                  type: string\n                  example: '\"refs/heads/newbranch\"'\n              required:\n              - ref\n              - sha\n            example:\n              ref: refs/heads/featureA\n              sha: aa218f56b14c9653891f9e74264a383fa43fefbd\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-ref\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-ref\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/tags\":\n    post:\n      summary: Create a tag object\n      description: |-\n        Note that creating a tag object does not create the reference that makes a tag in Git. If you want to create an annotated tag in Git, you have to do this call to create the tag object, and then [create](https://developer.github.com/enterprise/2.20/v3/git/refs/#create-a-reference) the `refs/tags/[tag]` reference. If you want to create a lightweight tag, you only have to [create](https://developer.github.com/enterprise/2.20/v3/git/refs/#create-a-reference) the tag reference - this call would be unnecessary.\n\n        **Signature verification object**\n\n        The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:\n\n        These are the possible values for `reason` in the `verification` object:\n\n        | Value                    | Description                                                                                                                       |\n        | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n        | `expired_key`            | The key that made the signature is expired.                                                                                       |\n        | `not_signing_key`        | The \"signing\" flag is not among the usage flags in the GPG key that made the signature.                                           |\n        | `gpgverify_error`        | There was an error communicating with the signature verification service.                                                         |\n        | `gpgverify_unavailable`  | The signature verification service is currently unavailable.                                                                      |\n        | `unsigned`               | The object does not include a signature.                                                                                          |\n        | `unknown_signature_type` | A non-PGP signature was found in the commit.                                                                                      |\n        | `no_user`                | No user was associated with the `committer` email address in the commit.                                                          |\n        | `unverified_email`       | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |\n        | `bad_email`              | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature.             |\n        | `unknown_key`            | The key that made the signature has not been registered with any user's account.                                                  |\n        | `malformed_signature`    | There was an error parsing the signature.                                                                                         |\n        | `invalid`                | The signature could not be cryptographically verified using the key whose key-id was found in the signature.                      |\n        | `valid`                  | None of the above errors applied, so the signature is considered to be verified.                                                  |\n      tags:\n      - git\n      operationId: git/create-tag\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/tags/#create-a-tag-object\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                tag:\n                  type: string\n                  description: The tag's name. This is typically a version (e.g.,\n                    \"v0.0.1\").\n                message:\n                  type: string\n                  description: The tag message.\n                object:\n                  type: string\n                  description: The SHA of the git object this is tagging.\n                type:\n                  type: string\n                  description: The type of the object we're tagging. Normally this\n                    is a `commit` but it can also be a `tree` or a `blob`.\n                  enum:\n                  - commit\n                  - tree\n                  - blob\n                tagger:\n                  type: object\n                  description: An object with information about the individual creating\n                    the tag.\n                  properties:\n                    name:\n                      type: string\n                      description: The name of the author of the tag\n                    email:\n                      type: string\n                      description: The email of the author of the tag\n                    date:\n                      type: string\n                      description: 'When this object was tagged. This is a timestamp\n                        in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n                        `YYYY-MM-DDTHH:MM:SSZ`.'\n              required:\n              - tag\n              - message\n              - object\n              - type\n            example:\n              tag: v0.0.1\n              message: initial version\n              object: c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\n              type: commit\n              tagger:\n                name: Monalisa Octocat\n                email: octocat@github.com\n                date: '2011-06-17T14:53:35-07:00'\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-tag\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-tag\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\n              schema:\n                type: string\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/ref/{ref}\":\n    get:\n      summary: Get a reference\n      description: |-\n        Returns a single reference from your Git database. The `:ref` in the URL must be formatted as `heads/<branch name>` for branches and `tags/<tag name>` for tags. If the `:ref` doesn't match an existing ref, a `404` is returned.\n\n        **Note:** You need to explicitly [request a pull request](https://developer.github.com/enterprise/2.20/v3/pulls/#get-a-pull-request) to trigger a test merge commit, which checks the mergeability of pull requests. For more information, see \"[Checking mergeability of pull requests](https://developer.github.com/enterprise/2.20/v3/git/#checking-mergeability-of-pull-requests)\".\n      tags:\n      - git\n      operationId: git/get-ref\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/refs/#get-a-reference\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: ref\n        description: ref+ parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-ref\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-ref\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/blobs\":\n    post:\n      summary: Create a blob\n      description: ''\n      tags:\n      - git\n      operationId: git/create-blob\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/blobs/#create-a-blob\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                content:\n                  type: string\n                  description: The new blob's content.\n                encoding:\n                  type: string\n                  description: The encoding used for `content`. Currently, `\"utf-8\"`\n                    and `\"base64\"` are supported.\n                  default: utf-8\n              required:\n              - content\n            example:\n              content: Content of the blob\n              encoding: utf-8\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/short-blob\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/short-blob\"\n          headers:\n            Location:\n              example: https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\n              schema:\n                type: string\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '409':\n          \"$ref\": \"#/components/responses/conflict\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/blobs/{file_sha}\":\n    get:\n      summary: Get a blob\n      description: |-\n        The `content` in the response will always be Base64 encoded.\n\n        _Note_: This API supports blobs up to 100 megabytes in size.\n      tags:\n      - git\n      operationId: git/get-blob\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/blobs/#get-a-blob\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - name: file_sha\n        description: file_sha parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/blob\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/blob\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n        '422':\n          \"$ref\": \"#/components/responses/validation_failed\"\n        '403':\n          \"$ref\": \"#/components/responses/forbidden\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/repos/{owner}/{repo}/git/commits/{commit_sha}\":\n    get:\n      summary: Get a commit\n      description: |-\n        Gets a Git [commit object](https://git-scm.com/book/en/v1/Git-Internals-Git-Objects#Commit-Objects).\n\n        **Signature verification object**\n\n        The response will include a `verification` object that describes the result of verifying the commit's signature. The following fields are included in the `verification` object:\n\n        These are the possible values for `reason` in the `verification` object:\n\n        | Value                    | Description                                                                                                                       |\n        | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------- |\n        | `expired_key`            | The key that made the signature is expired.                                                                                       |\n        | `not_signing_key`        | The \"signing\" flag is not among the usage flags in the GPG key that made the signature.                                           |\n        | `gpgverify_error`        | There was an error communicating with the signature verification service.                                                         |\n        | `gpgverify_unavailable`  | The signature verification service is currently unavailable.                                                                      |\n        | `unsigned`               | The object does not include a signature.                                                                                          |\n        | `unknown_signature_type` | A non-PGP signature was found in the commit.                                                                                      |\n        | `no_user`                | No user was associated with the `committer` email address in the commit.                                                          |\n        | `unverified_email`       | The `committer` email address in the commit was associated with a user, but the email address is not verified on her/his account. |\n        | `bad_email`              | The `committer` email address in the commit is not included in the identities of the PGP key that made the signature.             |\n        | `unknown_key`            | The key that made the signature has not been registered with any user's account.                                                  |\n        | `malformed_signature`    | There was an error parsing the signature.                                                                                         |\n        | `invalid`                | The signature could not be cryptographically verified using the key whose key-id was found in the signature.                      |\n        | `valid`                  | None of the above errors applied, so the signature is considered to be verified.                                                  |\n      tags:\n      - git\n      operationId: git/get-commit\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/git/commits/#get-a-commit\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/commit_sha\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/git-commit\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/git-commit-2\"\n        '404':\n          \"$ref\": \"#/components/responses/not_found\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/gitignore/templates/{name}\":\n    get:\n      summary: Get a gitignore template\n      description: |-\n        The API also allows fetching the source of a single template.\n        Use the raw [media type](https://developer.github.com/enterprise/2.20/v3/media/) to get the raw contents.\n      operationId: gitignore/get-template\n      tags:\n      - gitignore\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gitignore/#get-a-gitignore-template\n      parameters:\n      - name: name\n        description: name parameter\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/gitignore-template\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/gitignore-template\"\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/gitignore/templates\":\n    get:\n      summary: Get all gitignore templates\n      description: List all templates available to pass as an option when [creating\n        a repository](https://developer.github.com/enterprise/2.20/v3/repos/#create-a-repository-for-the-authenticated-user).\n      operationId: gitignore/get-all-templates\n      tags:\n      - gitignore\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/gitignore/#get-all-gitignore-templates\n      parameters: []\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  type: string\n              example:\n              - Actionscript\n              - Android\n              - AppceleratorTitanium\n              - Autotools\n              - Bancha\n              - C\n              - C++\n        '304':\n          \"$ref\": \"#/components/responses/not_modified\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews: []\n  \"/admin/pre-receive-hooks/{pre_receive_hook_id}\":\n    get:\n      summary: Get a pre-receive hook\n      description: ''\n      operationId: enterprise-admin/get-pre-receive-hook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_hooks/#get-a-pre-receive-hook\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-hook\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    delete:\n      summary: Delete a pre-receive hook\n      description: ''\n      operationId: enterprise-admin/delete-pre-receive-hook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_hooks/#delete-a-pre-receive-hook\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    patch:\n      summary: Update a pre-receive hook\n      description: ''\n      operationId: enterprise-admin/update-pre-receive-hook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_hooks/#update-a-pre-receive-hook\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-hook-2\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the hook.\n                script:\n                  type: string\n                  description: The script that the hook runs.\n                script_repository:\n                  type: object\n                  description: The GitHub repository where the script is kept.\n                  properties: {}\n                  additionalProperties: true\n                environment:\n                  type: object\n                  description: The pre-receive environment where the script is executed.\n                  properties: {}\n                  additionalProperties: true\n                enforcement:\n                  type: string\n                  description: The state of enforcement for this hook.\n                allow_downstream_configuration:\n                  type: boolean\n                  description: Whether enforcement can be overridden at the org or\n                    repo level.\n            example:\n              name: Check Commits\n              environment:\n                id: 1\n              allow_downstream_configuration: true\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/admin/pre-receive-hooks\":\n    get:\n      summary: List pre-receive hooks\n      description: ''\n      operationId: enterprise-admin/list-pre-receive-hooks\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_hooks/#list-pre-receive-hooks\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-hook-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    post:\n      summary: Create a pre-receive hook\n      description: ''\n      operationId: enterprise-admin/create-pre-receive-hook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_hooks/#create-a-pre-receive-hook\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-hook\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The name of the hook.\n                script:\n                  type: string\n                  description: The script that the hook runs.\n                script_repository:\n                  type: object\n                  description: The GitHub repository where the script is kept.\n                  properties: {}\n                  additionalProperties: true\n                environment:\n                  type: object\n                  description: The pre-receive environment where the script is executed.\n                  properties: {}\n                  additionalProperties: true\n                enforcement:\n                  type: string\n                  description: 'The state of enforcement for this hook. default: `disabled`'\n                allow_downstream_configuration:\n                  type: boolean\n                  description: 'Whether enforcement can be overridden at the org or\n                    repo level. default: `false`'\n              required:\n              - name\n              - script\n              - script_repository\n              - environment\n            example:\n              name: Check Commits\n              script: scripts/commit_check.sh\n              enforcement: disabled\n              allow_downstream_configuration: false\n              script_repository:\n                full_name: DevIT/hooks\n              environment:\n                id: 2\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/admin/organizations\":\n    post:\n      summary: Create an organization\n      description: ''\n      operationId: enterprise-admin/create-org\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/orgs/#create-an-organization\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/organization-simple\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/organization-simple\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                login:\n                  type: string\n                  description: The organization's username.\n                admin:\n                  type: string\n                  description: The login of the user who will manage this organization.\n                profile_name:\n                  type: string\n                  description: The organization's display name.\n              required:\n              - login\n              - admin\n            example:\n              login: github\n              profile_name: GitHub, Inc.\n              admin: monalisaoctocat\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/hooks/{hook_id}/pings\":\n    post:\n      summary: Ping a global webhook\n      description: This will trigger a [ping event](https://developer.github.com/enterprise/2.20/webhooks/#ping-event)\n        to be sent to the webhook.\n      operationId: enterprise-admin/ping-global-webhook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/global_webhooks/#ping-a-global-webhook\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.superpro-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: superpro\n          note: |-\n            The [Global Webhooks API](https://developer.github.com/v3/enterprise-admin/global_webhooks/) is currently available for developers to preview. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.superpro-preview+json\n            ```\n  \"/setup/api/settings/authorized-keys\":\n    delete:\n      summary: Remove an authorized SSH key\n      description: ''\n      operationId: enterprise-admin/remove-authorized-ssh-key\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#remove-an-authorized-ssh-key\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/ssh-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/ssh-key-items\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                authorized_key:\n                  type: string\n                  description: The path to the public SSH key.\n              required:\n              - authorized_key\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Get all authorized SSH keys\n      description: ''\n      operationId: enterprise-admin/get-all-authorized-ssh-keys\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#get-all-authorized-ssh-keys\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/ssh-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/ssh-key-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    post:\n      summary: Add an authorized SSH key\n      description: ''\n      operationId: enterprise-admin/add-authorized-ssh-key\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#add-an-authorized-ssh-key\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/ssh-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/ssh-key-items\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                authorized_key:\n                  type: string\n                  description: The path to the public SSH key.\n              required:\n              - authorized_key\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/pre-receive-environments/{pre_receive_environment_id}/downloads/latest\":\n    get:\n      summary: Get the download status for a pre-receive environment\n      description: In addition to seeing the download status at the \"[Get a pre-receive\n        environment](#get-a-pre-receive-environment)\" endpoint, there is also this\n        separate endpoint for just the download status.\n      operationId: enterprise-admin/get-download-status-for-pre-receive-environment\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_environments/#get-the-download-status-for-a-pre-receive-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-environment-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-environment-download-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-environment-download-status\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/admin/ldap/users/{username}/sync\":\n    post:\n      summary: Sync LDAP mapping for a user\n      description: Note that this API call does not automatically initiate an LDAP\n        sync. Rather, if a `201` is returned, the sync job is queued successfully,\n        and is performed when the instance is ready.\n      operationId: enterprise-admin/sync-ldap-mapping-for-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/ldap/#sync-ldap-mapping-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  status:\n                    type: string\n              example:\n                status: queued\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/hooks/{hook_id}\":\n    patch:\n      summary: Update a global webhook\n      description: Parameters that are not provided will be overwritten with the default\n        value or removed if no default exists.\n      operationId: enterprise-admin/update-global-webhook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/global_webhooks/#update-a-global-webhook\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.superpro-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/global-hook-2\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/global-hook-2\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                config:\n                  type: object\n                  description: Key/value pairs to provide settings for this webhook.\n                  properties:\n                    url:\n                      type: string\n                      description: The URL to which the payloads will be delivered.\n                    content_type:\n                      type: string\n                      description: The media type used to serialize the payloads.\n                        Supported values include `json` and `form`. The default is\n                        `form`.\n                    secret:\n                      type: string\n                      description: If provided, the `secret` will be used as the `key`\n                        to generate the HMAC hex digest value in the [`X-Hub-Signature`](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#delivery-headers)\n                        header.\n                    insecure_ssl:\n                      type: string\n                      description: Determines whether the SSL certificate of the host\n                        for `url` will be verified when delivering payloads. Supported\n                        values include `0` (verification is performed) and `1` (verification\n                        is not performed). The default is `0`. **We strongly recommend\n                        not setting this to `1` as you are subject to man-in-the-middle\n                        and other attacks.**\n                  required:\n                  - url\n                events:\n                  type: array\n                  description: 'The [events](https://developer.github.com/enterprise/2.20/webhooks/event-payloads)\n                    that trigger this webhook. A global webhook can be triggered by\n                    `user` and `organization` events. Default: `user` and `organization`.'\n                  items:\n                    type: string\n                active:\n                  type: boolean\n                  description: Determines if notifications are sent when the webhook\n                    is triggered. Set to `true` to send notifications.\n                  default: true\n            example:\n              events:\n              - organization\n              config:\n                url: https://example.com/webhook\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: superpro\n          note: |-\n            The [Global Webhooks API](https://developer.github.com/v3/enterprise-admin/global_webhooks/) is currently available for developers to preview. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.superpro-preview+json\n            ```\n    get:\n      summary: Get a global webhook\n      description: ''\n      operationId: enterprise-admin/get-global-webhook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/global_webhooks/#get-a-global-webhook\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.superpro-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/global-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/global-hook\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: superpro\n          note: |-\n            The [Global Webhooks API](https://developer.github.com/v3/enterprise-admin/global_webhooks/) is currently available for developers to preview. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.superpro-preview+json\n            ```\n    delete:\n      summary: Delete a global webhook\n      description: ''\n      operationId: enterprise-admin/delete-global-webhook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/global_webhooks/#delete-a-global-webhook\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.superpro-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/hook-id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: superpro\n          note: |-\n            The [Global Webhooks API](https://developer.github.com/v3/enterprise-admin/global_webhooks/) is currently available for developers to preview. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.superpro-preview+json\n            ```\n  \"/admin/keys\":\n    get:\n      summary: List public keys\n      description: ''\n      operationId: enterprise-admin/list-public-keys\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#list-public-keys\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/enterprise-public-key\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/enterprise-public-key-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/tokens\":\n    get:\n      summary: List personal access tokens\n      description: Lists personal access tokens for all users, including admin users.\n      operationId: enterprise-admin/list-personal-access-tokens\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#list-personal-access-tokens\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/enterprise/stats/{type}\":\n    get:\n      summary: Get statistics\n      description: |-\n        There are a variety of types to choose from:\n\n        | Type         | Description                                                                                         |\n        | ------------ | --------------------------------------------------------------------------------------------------- |\n        | `issues`     | The number of open and closed issues.                                                               |\n        | `hooks`      | The number of active and inactive hooks.                                                            |\n        | `milestones` | The number of open and closed milestones.                                                           |\n        | `orgs`       | The number of organizations, teams, team members, and disabled organizations.                       |\n        | `comments`   | The number of comments on issues, pull requests, commits, and gists.                                |\n        | `pages`      | The number of GitHub Pages sites.                                                                   |\n        | `users`      | The number of suspended and admin users.                                                            |\n        | `gists`      | The number of private and public gists.                                                             |\n        | `pulls`      | The number of merged, mergeable, and unmergeable pull requests.                                     |\n        | `repos`      | The number of organization-owned repositories, root repositories, forks, pushed commits, and wikis. |\n        | `all`        | All of the statistics listed above.                                                                 |\n\n        These statistics are cached and will be updated approximately every 10 minutes.\n      operationId: enterprise-admin/get-type-stats\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/admin_stats/#get-statistics\n      parameters:\n      - name: type\n        in: path\n        required: true\n        schema:\n          type: string\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-overview\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/enterprise-overview\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/pre-receive-environments\":\n    post:\n      summary: Create a pre-receive environment\n      description: ''\n      operationId: enterprise-admin/create-pre-receive-environment\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_environments/#create-a-pre-receive-environment\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-environment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-environment\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: The new pre-receive environment's name.\n                image_url:\n                  type: string\n                  description: URL from which to download a tarball of this environment.\n              required:\n              - name\n              - image_url\n            example:\n              name: DevTools Hook Env\n              image_url: https://my_file_server/path/to/devtools_env.tar.gz\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    get:\n      summary: List pre-receive environments\n      description: ''\n      operationId: enterprise-admin/list-pre-receive-environments\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_environments/#list-pre-receive-environments\n      parameters:\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/pre-receive-environment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-environment-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/staff/indexing_jobs\":\n    post:\n      summary: Create an indexing job\n      description: |-\n        You can index the following targets (replace `{owner}` with the name of a user or organization account and `{repository}` with the name of a repository):\n\n        | Target                      | Description                                                          |\n        | --------------------------- | -------------------------------------------------------------------- |\n        | `{owner}`                    | A user or organization account.                                      |\n        | `{owner}/{repository}`        | A repository.                                                        |\n        | `{owner}/*`                  | All of a user or organization's repositories.                        |\n        | `{owner}/{repository}/issues` | All the issues in a repository.                                      |\n        | `{owner}/*/issues`           | All the issues in all of a user or organization's repositories.      |\n        | `{owner}/{repository}/code`   | All the source code in a repository.                                 |\n        | `{owner}/*/code`             | All the source code in all of a user or organization's repositories. |\n      operationId: enterprise-admin/create-indexing-job\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/search_indexing/#create-an-indexing-job\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n              example:\n                message: Repository 'kansaichris/japaning' has been added to the indexing\n                  queue\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                target:\n                  type: string\n                  description: A string representing the item to index.\n              required:\n              - target\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/setup/api/settings\":\n    put:\n      summary: Set settings\n      description: For a list of the available settings, see the [Get settings endpoint](https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#get-settings).\n      operationId: enterprise-admin/set-settings\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#set-settings\n      responses:\n        '204':\n          description: Empty response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                settings:\n                  type: string\n                  description: A JSON string with the new settings. Note that you\n                    only need to pass the specific settings you want to modify.\n              required:\n              - settings\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Get settings\n      description: ''\n      operationId: enterprise-admin/get-settings\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#get-settings\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/enterprise-settings\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/enterprise-settings\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/hooks\":\n    get:\n      summary: List global webhooks\n      description: ''\n      operationId: enterprise-admin/list-global-webhooks\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/global_webhooks/#list-global-webhooks\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.superpro-preview+json\n        required: true\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/global-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/global-hook-items\"\n          headers:\n            Link:\n              \"$ref\": \"#/components/headers/link\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: superpro\n          note: |-\n            The [Global Webhooks API](https://developer.github.com/v3/enterprise-admin/global_webhooks/) is currently available for developers to preview. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.superpro-preview+json\n            ```\n    post:\n      summary: Create a global webhook\n      description: ''\n      operationId: enterprise-admin/create-global-webhook\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/global_webhooks/#create-a-global-webhook\n      parameters:\n      - name: accept\n        description: This API is under preview and subject to change.\n        in: header\n        schema:\n          type: string\n          default: application/vnd.github.superpro-preview+json\n        required: true\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/global-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/global-hook\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: Must be passed as \"web\".\n                config:\n                  type: object\n                  description: Key/value pairs to provide settings for this webhook.\n                  properties:\n                    url:\n                      type: string\n                      description: The URL to which the payloads will be delivered.\n                    content_type:\n                      type: string\n                      description: The media type used to serialize the payloads.\n                        Supported values include `json` and `form`. The default is\n                        `form`.\n                    secret:\n                      type: string\n                      description: If provided, the `secret` will be used as the `key`\n                        to generate the HMAC hex digest value in the [`X-Hub-Signature`](https://developer.github.com/enterprise/2.20/webhooks/event-payloads/#delivery-headers)\n                        header.\n                    insecure_ssl:\n                      type: string\n                      description: Determines whether the SSL certificate of the host\n                        for `url` will be verified when delivering payloads. Supported\n                        values include `0` (verification is performed) and `1` (verification\n                        is not performed). The default is `0`. **We strongly recommend\n                        not setting this to `1` as you are subject to man-in-the-middle\n                        and other attacks.**\n                  required:\n                  - url\n                events:\n                  type: array\n                  description: 'The [events](https://developer.github.com/enterprise/2.20/webhooks/event-payloads)\n                    that trigger this webhook. A global webhook can be triggered by\n                    `user` and `organization` events. Default: `user` and `organization`.'\n                  items:\n                    type: string\n                active:\n                  type: boolean\n                  description: Determines if notifications are sent when the webhook\n                    is triggered. Set to `true` to send notifications.\n                  default: true\n              required:\n              - name\n              - config\n            example:\n              name: web\n              events:\n              - organization\n              - user\n              config:\n                url: https://example.com/webhook\n                content_type: json\n                secret: secret\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: superpro\n          note: |-\n            The [Global Webhooks API](https://developer.github.com/v3/enterprise-admin/global_webhooks/) is currently available for developers to preview. To access the API during the preview period, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.superpro-preview+json\n            ```\n  \"/repos/{owner}/{repo}/pre-receive-hooks/{pre_receive_hook_id}\":\n    patch:\n      summary: Update pre-receive hook enforcement for a repository\n      description: For pre-receive hooks which are allowed to be configured at the\n        repo level, you can set `enforcement`\n      operationId: enterprise-admin/update-pre-receive-hook-enforcement-for-repo\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/repo_pre_receive_hooks/#update-pre-receive-hook-enforcement-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-pre-receive-hook-2\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                enforcement:\n                  description: The state of enforcement for the hook on this repository.\n                  type: string\n            example:\n              enforcement: enabled\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    get:\n      summary: Get a pre-receive hook for a repository\n      description: ''\n      operationId: enterprise-admin/get-pre-receive-hook-for-repo\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/repo_pre_receive_hooks/#get-a-pre-receive-hook-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-pre-receive-hook\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    delete:\n      summary: Remove pre-receive hook enforcement for a repository\n      description: |-\n        Deletes any overridden enforcement on this repository for the specified hook.\n\n        Responds with effective values inherited from owner and/or global level.\n      operationId: enterprise-admin/remove-pre-receive-hook-enforcement-for-repo\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/repo_pre_receive_hooks/#remove-pre-receive-hook-enforcement-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: Responds with effective values inherited from owner and/or\n            global level.\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/repository-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-pre-receive-hook\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/setup/api/maintenance\":\n    post:\n      summary: Enable or disable maintenance mode\n      description: |-\n        The possible values for `enabled` are `true` and `false`. When it's `false`, the attribute `when` is ignored and the maintenance mode is turned off. `when` defines the time period when the maintenance was enabled.\n\n        The possible values for `when` are `now` or any date parseable by [mojombo/chronic](https://github.com/mojombo/chronic).\n      operationId: enterprise-admin/enable-or-disable-maintenance-mode\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#enable-or-disable-maintenance-mode\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/maintenance-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/maintenance-status\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                maintenance:\n                  type: string\n                  description: A JSON string with the attributes `enabled` and `when`.\n              required:\n              - maintenance\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    get:\n      summary: Get the maintenance status\n      description: 'Check your installation''s maintenance status:'\n      operationId: enterprise-admin/get-maintenance-status\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#get-the-maintenance-status\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/maintenance-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/maintenance-status\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/suspended\":\n    put:\n      summary: Suspend a user\n      description: |-\n        If your GitHub instance uses [LDAP Sync with Active Directory LDAP servers](https://help.github.com/enterprise/admin/guides/user-management/using-ldap), Active Directory LDAP-authenticated users cannot be suspended through this API. If you attempt to suspend an Active Directory LDAP-authenticated user through this API, it will return a `403` response.\n\n        You can suspend any user account except your own.\n\n        Note that, if you choose not to pass any parameters, you'll need to set `Content-Length` to zero when calling out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      operationId: enterprise-admin/suspend-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#suspend-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                reason:\n                  type: string\n                  description: The reason the user is being suspended. This message\n                    will be logged in the [audit log](https://help.github.com/enterprise/admin/articles/audit-logging/).\n                    If you don't provide a `reason`, it will default to \"Suspended\n                    via API by _SITE\\_ADMINISTRATOR_\", where _SITE\\_ADMINISTRATOR_\n                    is the person who performed the action.\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Unsuspend a user\n      description: If your GitHub instance uses [LDAP Sync with Active Directory LDAP\n        servers](https://help.github.com/enterprise/admin/guides/user-management/using-ldap),\n        this API is disabled and will return a `403` response. Active Directory LDAP-authenticated\n        users cannot be unsuspended using the API.\n      operationId: enterprise-admin/unsuspend-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#unsuspend-a-user\n      responses:\n        '204':\n          description: Empty response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                reason:\n                  type: string\n                  description: The reason the user is being unsuspended. This message\n                    will be logged in the [audit log](https://help.github.com/enterprise/admin/articles/audit-logging/).\n                    If you don't provide a `reason`, it will default to \"Unsuspended\n                    via API by _SITE\\_ADMINISTRATOR_\", where _SITE\\_ADMINISTRATOR_\n                    is the person who performed the action.\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/setup/api/configcheck\":\n    get:\n      summary: Get the configuration status\n      description: |-\n        This endpoint allows you to check the status of the most recent configuration process:\n\n        Note that you may need to wait several seconds after you start a process before you can check its status.\n\n        The different statuses are:\n\n        | Status        | Description                       |\n        | ------------- | --------------------------------- |\n        | `PENDING`     | The job has not started yet       |\n        | `CONFIGURING` | The job is running                |\n        | `DONE`        | The job has finished correctly    |\n        | `FAILED`      | The job has finished unexpectedly |\n      operationId: enterprise-admin/get-configuration-status\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#get-the-configuration-status\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/configuration-status\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/configuration-status\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/keys/{key_ids}\":\n    delete:\n      summary: Delete a public key\n      description: ''\n      operationId: enterprise-admin/delete-public-key\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#delete-a-public-key\n      parameters:\n      - \"$ref\": \"#/components/parameters/key-ids\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/users/{username}/authorizations\":\n    delete:\n      summary: Delete an impersonation OAuth token\n      description: ''\n      operationId: enterprise-admin/delete-impersonation-o-auth-token\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#delete-an-impersonation-oauth-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    post:\n      summary: Create an impersonation OAuth token\n      description: ''\n      operationId: enterprise-admin/create-impersonation-o-auth-token\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#create-an-impersonation-oauth-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/authorization\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/authorization\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                scopes:\n                  type: array\n                  description: A list of [scopes](https://developer.github.com/enterprise/2.20/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/).\n                  items:\n                    type: string\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/users\":\n    post:\n      summary: Create a user\n      description: |-\n        If an external authentication mechanism is used, the login name should match the login name in the external system. If you are using LDAP authentication, you should also [update the LDAP mapping](https://developer.github.com/enterprise/2.20/v3/enterprise-admin/ldap/#update-ldap-mapping-for-a-user) for the user.\n\n        The login name will be normalized to only contain alphanumeric characters or single hyphens. For example, if you send `\"octo_cat\"` as the login, a user named `\"octo-cat\"` will be created.\n\n        If the login name or email address is already associated with an account, the server will return a `422` response.\n      operationId: enterprise-admin/create-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#create-a-user\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/simple-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/simple-user\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                login:\n                  type: string\n                  description: The user's username.\n                email:\n                  type: string\n                  description: \"**Required for built-in authentication.** The user's\n                    email address. This parameter can be omitted when using CAS, LDAP,\n                    or SAML. For details on built-in and centrally-managed authentication,\n                    see the the [GitHub authentication guide](https://help.github.com/enterprise/2.18/admin/guides/user-management/authenticating-users-for-your-github-enterprise-server-instance/).\"\n              required:\n              - login\n            example:\n              login: monalisa\n              email: octocat@github.com\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/ldap/teams/{team_id}/sync\":\n    post:\n      summary: Sync LDAP mapping for a team\n      description: Note that this API call does not automatically initiate an LDAP\n        sync. Rather, if a `201` is returned, the sync job is queued successfully,\n        and is performed when the instance is ready.\n      operationId: enterprise-admin/sync-ldap-mapping-for-team\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/ldap/#sync-ldap-mapping-for-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      responses:\n        '201':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  status:\n                    type: string\n              example:\n                status: queued\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/users/{username}/site_admin\":\n    put:\n      summary: Promote a user to be a site administrator\n      description: Note that you'll need to set `Content-Length` to zero when calling\n        out to this endpoint. For more information, see \"[HTTP verbs](https://developer.github.com/enterprise/2.20/v3/#http-verbs).\"\n      operationId: enterprise-admin/promote-user-to-be-site-administrator\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#promote-a-user-to-be-a-site-administrator\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Demote a site administrator\n      description: You can demote any user account except your own.\n      operationId: enterprise-admin/demote-site-administrator\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#demote-a-site-administrator\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/users/{username}\":\n    patch:\n      summary: Update the username for a user\n      description: ''\n      operationId: enterprise-admin/update-username-for-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#update-the-username-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  url:\n                    type: string\n              example:\n                message: Job queued to rename user. It may take a few minutes to complete.\n                url: https://api.github.com/user/1\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                login:\n                  type: string\n                  description: The user's new username.\n              required:\n              - login\n            example:\n              login: thenewmonalisa\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n    delete:\n      summary: Delete a user\n      description: |-\n        Deleting a user will delete all their repositories, gists, applications, and personal settings. [Suspending a user](https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#suspend-a-user) is often a better option.\n\n        You can delete any user account except your own.\n      operationId: enterprise-admin/delete-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#delete-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/setup/api/configure\":\n    post:\n      summary: Start a configuration process\n      description: 'This endpoint allows you to start a configuration process at any\n        time for your updated settings to take effect:'\n      operationId: enterprise-admin/start-configuration-process\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#start-a-configuration-process\n      responses:\n        '202':\n          description: response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/ldap/users/{username}/mapping\":\n    patch:\n      summary: Update LDAP mapping for a user\n      description: ''\n      operationId: enterprise-admin/update-ldap-mapping-for-user\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/ldap/#update-ldap-mapping-for-a-user\n      parameters:\n      - \"$ref\": \"#/components/parameters/username\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/ldap-mapping-user\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/ldap-mapping-user\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                ldap_dn:\n                  type: string\n                  description: The [distinguished name](https://www.ldap.com/ldap-dns-and-rdns)\n                    (DN) of the LDAP entry to map to a team.\n            example:\n              ldap_dn: uid=asdf,ou=users,dc=github,dc=com\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/repos/{owner}/{repo}/pre-receive-hooks\":\n    get:\n      summary: List pre-receive hooks for a repository\n      description: List all pre-receive hooks that are enabled or testing for this\n        repository as well as any disabled hooks that are allowed to be enabled at\n        the repository level. Pre-receive hooks that are disabled at a higher level\n        and are not configurable will not be listed.\n      operationId: enterprise-admin/list-pre-receive-hooks-for-repo\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/repo_pre_receive_hooks/#list-pre-receive-hooks-for-a-repository\n      parameters:\n      - \"$ref\": \"#/components/parameters/owner\"\n      - \"$ref\": \"#/components/parameters/repo\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/repository-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/repository-pre-receive-hook-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/admin/pre-receive-environments/{pre_receive_environment_id}\":\n    get:\n      summary: Get a pre-receive environment\n      description: ''\n      operationId: enterprise-admin/get-pre-receive-environment\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_environments/#get-a-pre-receive-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-environment-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-environment\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/pre-receive-environment\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    patch:\n      summary: Update a pre-receive environment\n      description: You cannot modify the default environment. If you attempt to modify\n        the default environment, you will receive a `422 Unprocessable Entity` response.\n      operationId: enterprise-admin/update-pre-receive-environment\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_environments/#update-a-pre-receive-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-environment-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-environment\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/pre-receive-environment-default-response\"\n        '422':\n          description: Client Errors\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        resource:\n                          type: string\n                        code:\n                          type: string\n                        message:\n                          type: string\n              examples:\n                client-errors:\n                  value:\n                    message: Validation Failed\n                    errors:\n                    - resource: PreReceiveEnvironment\n                      code: custom\n                      message: Cannot modify or delete the default environment\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                name:\n                  type: string\n                  description: This pre-receive environment's new name.\n                image_url:\n                  type: string\n                  description: URL from which to download a tarball of this environment.\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    delete:\n      summary: Delete a pre-receive environment\n      description: |-\n        If you attempt to delete an environment that cannot be deleted, you will receive a `422 Unprocessable Entity` response.\n\n        The possible error messages are:\n\n        *   _Cannot modify or delete the default environment_\n        *   _Cannot delete environment that has hooks_\n        *   _Cannot delete environment when download is in progress_\n      operationId: enterprise-admin/delete-pre-receive-environment\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_environments/#delete-a-pre-receive-environment\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-environment-id\"\n      responses:\n        '204':\n          description: Empty response\n        '422':\n          description: Client Errors\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        resource:\n                          type: string\n                        code:\n                          type: string\n                        message:\n                          type: string\n              examples:\n                client-errors:\n                  value:\n                    message: Validation Failed\n                    errors:\n                    - resource: PreReceiveEnvironment\n                      code: custom\n                      message: Cannot modify or delete the default environment\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/orgs/{org}/pre-receive-hooks\":\n    get:\n      summary: List pre-receive hooks for an organization\n      description: List all pre-receive hooks that are enabled or testing for this\n        organization as well as any disabled hooks that can be configured at the organization\n        level. Globally disabled pre-receive hooks that do not allow downstream configuration\n        are not listed.\n      operationId: enterprise-admin/list-pre-receive-hooks-for-org\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/org_pre_receive_hooks/#list-pre-receive-hooks-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/per-page\"\n      - \"$ref\": \"#/components/parameters/page\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: array\n                items:\n                  \"$ref\": \"#/components/schemas/org-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-pre-receive-hook-items\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/setup/api/upgrade\":\n    post:\n      summary: Upgrade a license\n      description: 'This API upgrades your license and also triggers the configuration\n        process:'\n      operationId: enterprise-admin/upgrade-license\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#upgrade-a-license\n      responses:\n        '202':\n          description: response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                license:\n                  type: string\n                  description: The content of your new _.ghl_ license file.\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/pre-receive-environments/{pre_receive_environment_id}/downloads\":\n    post:\n      summary: Start a pre-receive environment download\n      description: |-\n        Triggers a new download of the environment tarball from the environment's `image_url`. When the download is finished, the newly downloaded tarball will overwrite the existing environment.\n\n        If a download cannot be triggered, you will receive a `422 Unprocessable Entity` response.\n\n        The possible error messages are:\n\n        * _Cannot modify or delete the default environment_\n        * _Can not start a new download when a download is in progress_\n      operationId: enterprise-admin/start-pre-receive-environment-download\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/pre_receive_environments/#start-a-pre-receive-environment-download\n      parameters:\n      - \"$ref\": \"#/components/parameters/pre-receive-environment-id\"\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/pre-receive-environment-download-status\"\n              examples:\n                default-response:\n                  \"$ref\": \"#/components/examples/pre-receive-environment-download-status-default-response\"\n        '422':\n          description: Client Errors\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  errors:\n                    type: array\n                    items:\n                      type: object\n                      properties:\n                        resource:\n                          type: string\n                        code:\n                          type: string\n                        message:\n                          type: string\n              examples:\n                client-errors:\n                  value:\n                    message: Validation Failed\n                    errors:\n                    - resource: PreReceiveEnvironment\n                      code: custom\n                      message: Can not start a new download when a download is in\n                        progress\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/setup/api/start\":\n    post:\n      summary: Create a GitHub license\n      description: |-\n        When you boot a GitHub instance for the first time, you can use the following endpoint to upload a license:\n\n        Note that you need to POST to [`/setup/api/configure`](https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#start-a-configuration-process) to start the actual configuration process.\n\n        When using this endpoint, your GitHub instance must have a password set. This can be accomplished two ways:\n\n        1.  If you're working directly with the API before accessing the web interface, you must pass in the password parameter to set your password.\n        2.  If you set up your instance via the web interface before accessing the API, your calls to this endpoint do not need the password parameter.\n\n        For a list of the available settings, see the [Get settings endpoint](https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#get-settings).\n      operationId: enterprise-admin/create-enterprise-server-license\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/management_console/#create-a-github-enterprise-server-license\n      responses:\n        '202':\n          description: response\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                license:\n                  type: string\n                  description: The content of your _.ghl_ license file.\n                password:\n                  type: string\n                  description: You **must** provide a password _only if_ you are uploading\n                    your license for the first time. If you previously set a password\n                    through the web interface, you don't need this parameter.\n                settings:\n                  type: string\n                  description: An optional JSON string containing the installation\n                    settings.\n              required:\n              - license\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/organizations/{org}\":\n    patch:\n      summary: Update an organization name\n      description: ''\n      operationId: enterprise-admin/update-org-name\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/orgs/#update-an-organization-name\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      responses:\n        '202':\n          description: response\n          content:\n            application/json:\n              schema:\n                type: object\n                properties:\n                  message:\n                    type: string\n                  url:\n                    type: string\n              example:\n                message: Job queued to rename organization. It may take a few minutes\n                  to complete.\n                url: https://<hostname>/api/v3/organizations/1\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                login:\n                  type: string\n                  description: The organization's new name.\n              required:\n              - login\n            example:\n              login: the-new-octocats\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/orgs/{org}/pre-receive-hooks/{pre_receive_hook_id}\":\n    delete:\n      summary: Remove pre-receive hook enforcement for an organization\n      description: Removes any overrides for this hook at the org level for this org.\n      operationId: enterprise-admin/remove-pre-receive-hook-enforcement-for-org\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/org_pre_receive_hooks/#remove-pre-receive-hook-enforcement-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-pre-receive-hook\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    patch:\n      summary: Update pre-receive hook enforcement for an organization\n      description: For pre-receive hooks which are allowed to be configured at the\n        org level, you can set `enforcement` and `allow_downstream_configuration`\n      operationId: enterprise-admin/update-pre-receive-hook-enforcement-for-org\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/org_pre_receive_hooks/#update-pre-receive-hook-enforcement-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-pre-receive-hook-2\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                enforcement:\n                  description: The state of enforcement for the hook on this repository.\n                  type: string\n                allow_downstream_configuration:\n                  description: Whether repositories can override enforcement.\n                  type: boolean\n            example:\n              enforcement: enabled\n              allow_downstream_configuration: false\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n    get:\n      summary: Get a pre-receive hook for an organization\n      description: ''\n      operationId: enterprise-admin/get-pre-receive-hook-for-org\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/org_pre_receive_hooks/#get-a-pre-receive-hook-for-an-organization\n      parameters:\n      - \"$ref\": \"#/components/parameters/org\"\n      - \"$ref\": \"#/components/parameters/pre-receive-hook-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/org-pre-receive-hook\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/org-pre-receive-hook\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: true\n        previews:\n        - required: true\n          name: eye-scream\n          note: |-\n            APIs for managing pre-receive hooks are currently available for developers to preview. During the preview period, the APIs may change without advance notice.\n\n            To access the API you must provide a custom [media type](/v3/media) in the `Accept` header:\n\n            ```shell\n            application/vnd.github.eye-scream-preview\n            ```\n  \"/admin/tokens/{token_id}\":\n    delete:\n      summary: Delete a personal access token\n      description: Deletes a personal access token. Returns a `403 - Forbidden` status\n        when a personal access token is in use. For example, if you access this endpoint\n        with the same personal access token that you are trying to delete, you will\n        receive this error.\n      operationId: enterprise-admin/delete-personal-access-token\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/users/#delete-a-personal-access-token\n      parameters:\n      - \"$ref\": \"#/components/parameters/token-id\"\n      responses:\n        '204':\n          description: Empty response\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/enterprise/settings/license\":\n    get:\n      summary: Get license information\n      description: ''\n      operationId: enterprise-admin/get-license-information\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/license/#get-license-information\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/license-info\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/license-info\"\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews: []\n  \"/admin/ldap/teams/{team_id}/mapping\":\n    patch:\n      summary: Update LDAP mapping for a team\n      description: |-\n        Updates the [distinguished name](https://www.ldap.com/ldap-dns-and-rdns) (DN) of the LDAP entry to map to a team. [LDAP synchronization](https://help.github.com/enterprise/admin/guides/user-management/using-ldap/#enabling-ldap-sync) must be enabled to map LDAP entries to a team. Use the [Create a team](https://developer.github.com/enterprise/2.20/v3/teams/#create-a-team) endpoint to create a team with LDAP mapping.\n\n        If you pass the `hellcat-preview` media type, you can also update the LDAP mapping of a child team.\n      operationId: enterprise-admin/update-ldap-mapping-for-team\n      tags:\n      - enterprise-admin\n      externalDocs:\n        description: API method documentation\n        url: https://developer.github.com/enterprise/2.20/v3/enterprise-admin/ldap/#update-ldap-mapping-for-a-team\n      parameters:\n      - \"$ref\": \"#/components/parameters/team-id\"\n      responses:\n        '200':\n          description: response\n          content:\n            application/json:\n              schema:\n                \"$ref\": \"#/components/schemas/ldap-mapping-team\"\n              examples:\n                default:\n                  \"$ref\": \"#/components/examples/ldap-mapping-team\"\n      requestBody:\n        content:\n          application/json:\n            schema:\n              type: object\n              properties:\n                ldap_dn:\n                  type: string\n                  description: The [distinguished name](https://www.ldap.com/ldap-dns-and-rdns)\n                    (DN) of the LDAP entry to map to a team.\n            example:\n              ldap_dn: cn=Enterprise Ops,ou=teams,dc=github,dc=com\n      x-github:\n        githubCloudOnly: false\n        enabledForGitHubApps: false\n        previews:\n        - required: false\n          name: hellcat\n          note: |-\n            The Nested Teams API is currently available for developers to preview. See the [blog post](https://developer.github.com/changes/2017-08-30-preview-nested-teams) for full details. To access the API, you must provide a custom [media type](https://developer.github.com/v3/media) in the `Accept` header:\n            ```shell\n            application/vnd.github.hellcat-preview+json\n            ```\ncomponents:\n  parameters:\n    org:\n      name: org\n      in: path\n      required: true\n      schema:\n        type: string\n    per_page:\n      name: per_page\n      description: Results per page (max 100)\n      in: query\n      schema:\n        type: integer\n        default: 30\n    page:\n      name: page\n      description: Page number of the results to fetch.\n      in: query\n      schema:\n        type: integer\n        default: 1\n    owner:\n      name: owner\n      in: path\n      required: true\n      schema:\n        type: string\n    repo:\n      name: repo\n      in: path\n      required: true\n      schema:\n        type: string\n    branch:\n      name: branch\n      description: branch+ parameter\n      in: path\n      required: true\n      schema:\n        type: string\n    commit_sha:\n      name: commit_sha\n      description: commit_sha+ parameter\n      in: path\n      required: true\n      schema:\n        type: string\n    asset_id:\n      name: asset_id\n      description: asset_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    deployment_id:\n      name: deployment_id\n      description: deployment_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    since:\n      name: since\n      description: 'Only show notifications updated after the given time. This is\n        a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n        `YYYY-MM-DDTHH:MM:SSZ`.'\n      in: query\n      required: false\n      schema:\n        type: string\n    hook-id:\n      name: hook_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    username:\n      name: username\n      in: path\n      required: true\n      schema:\n        type: string\n    key_id:\n      name: key_id\n      description: key_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    release_id:\n      name: release_id\n      description: release_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    invitation_id:\n      name: invitation_id\n      description: invitation_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    before:\n      name: before\n      description: 'Only show notifications updated before the given time. This is\n        a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format:\n        `YYYY-MM-DDTHH:MM:SSZ`.'\n      in: query\n      required: false\n      schema:\n        type: string\n    comment_id:\n      name: comment_id\n      description: comment_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    all:\n      name: all\n      description: If `true`, show notifications marked as read.\n      in: query\n      required: false\n      schema:\n        type: boolean\n        default: false\n    participating:\n      name: participating\n      description: If `true`, only shows notifications in which the user is directly\n        participating or mentioned.\n      in: query\n      required: false\n      schema:\n        type: boolean\n        default: false\n    sort:\n      name: sort\n      description: One of `created` (when the repository was starred) or `updated`\n        (when it was last pushed to).\n      in: query\n      required: false\n      schema:\n        type: string\n        enum:\n        - created\n        - updated\n        default: created\n    direction:\n      name: direction\n      description: One of `asc` (ascending) or `desc` (descending).\n      in: query\n      required: false\n      schema:\n        type: string\n        enum:\n        - asc\n        - desc\n        default: desc\n    thread_id:\n      name: thread_id\n      description: thread_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    check_run_id:\n      name: check_run_id\n      description: check_run_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    check_name:\n      name: check_name\n      description: Returns check runs with the specified `name`.\n      in: query\n      required: false\n      schema:\n        type: string\n    status:\n      name: status\n      description: Returns check runs with the specified `status`. Can be one of `queued`,\n        `in_progress`, or `completed`.\n      in: query\n      required: false\n      schema:\n        type: string\n        enum:\n        - queued\n        - in_progress\n        - completed\n    check_suite_id:\n      name: check_suite_id\n      description: check_suite_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    column_id:\n      name: column_id\n      description: column_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    card_id:\n      name: card_id\n      description: card_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    project-id:\n      name: project_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    issue_number:\n      name: issue_number\n      description: issue_number parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    team-id:\n      name: team_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    discussion-number:\n      name: discussion_number\n      in: path\n      required: true\n      schema:\n        type: integer\n    per-page:\n      name: per_page\n      description: Results per page (max 100)\n      in: query\n      schema:\n        type: integer\n        default: 30\n    reaction-id:\n      name: reaction_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    comment-number:\n      name: comment_number\n      in: path\n      required: true\n      schema:\n        type: integer\n    order:\n      name: order\n      description: Determines whether the first search result returned is the highest\n        number of matches (`desc`) or lowest number of matches (`asc`). This parameter\n        is ignored unless you provide `sort`.\n      in: query\n      required: false\n      schema:\n        type: string\n        enum:\n        - desc\n        - asc\n        default: desc\n    grant_id:\n      name: grant_id\n      description: grant_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    client-id:\n      name: client_id\n      in: path\n      required: true\n      schema:\n        type: string\n    authorization_id:\n      name: authorization_id\n      description: authorization_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    gpg_key_id:\n      name: gpg_key_id\n      description: gpg_key_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    team_slug:\n      name: team_slug\n      description: team_slug parameter\n      in: path\n      required: true\n      schema:\n        type: string\n    pull-number:\n      name: pull_number\n      in: path\n      required: true\n      schema:\n        type: integer\n    review_id:\n      name: review_id\n      description: review_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    labels:\n      name: labels\n      description: 'A list of comma separated label names. Example: `bug,ui,@high`'\n      in: query\n      required: false\n      schema:\n        type: string\n    milestone_number:\n      name: milestone_number\n      description: milestone_number parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    installation_id:\n      name: installation_id\n      description: installation_id parameter\n      in: path\n      required: true\n      schema:\n        type: integer\n    access-token:\n      name: access_token\n      in: path\n      required: true\n      schema:\n        type: string\n    gist_id:\n      name: gist_id\n      description: gist_id parameter\n      in: path\n      required: true\n      schema:\n        type: string\n    pre-receive-hook-id:\n      name: pre_receive_hook_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    pre-receive-environment-id:\n      name: pre_receive_environment_id\n      in: path\n      required: true\n      schema:\n        type: integer\n    key-ids:\n      name: key_ids\n      in: path\n      required: true\n      schema:\n        type: string\n    token-id:\n      name: token_id\n      in: path\n      required: true\n      schema:\n        type: integer\n  schemas:\n    simple-user:\n      title: Simple User\n      description: Simple User\n      type: object\n      properties:\n        login:\n          type: string\n          example: octocat\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDQ6VXNlcjE=\n        avatar_url:\n          type: string\n          format: uri\n          example: https://github.com/images/error/octocat_happy.gif\n        gravatar_id:\n          type: string\n          example: ''\n          nullable: true\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat\n        followers_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/followers\n        following_url:\n          type: string\n          example: https://api.github.com/users/octocat/following{/other_user}\n        gists_url:\n          type: string\n          example: https://api.github.com/users/octocat/gists{/gist_id}\n        starred_url:\n          type: string\n          example: https://api.github.com/users/octocat/starred{/owner}{/repo}\n        subscriptions_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/subscriptions\n        organizations_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/orgs\n        repos_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/repos\n        events_url:\n          type: string\n          example: https://api.github.com/users/octocat/events{/privacy}\n        received_events_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/received_events\n        type:\n          type: string\n          example: User\n        site_admin:\n          type: boolean\n        starred_at:\n          type: string\n          example: '\"2020-07-09T00:17:55Z\"'\n      required:\n      - avatar_url\n      - events_url\n      - followers_url\n      - following_url\n      - gists_url\n      - gravatar_id\n      - html_url\n      - id\n      - node_id\n      - login\n      - organizations_url\n      - received_events_url\n      - repos_url\n      - site_admin\n      - starred_url\n      - subscriptions_url\n      - type\n      - url\n      nullable: true\n    minimal-repository:\n      title: Minimal Repository\n      description: Minimal Repository\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1296269\n        node_id:\n          type: string\n          example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name:\n          type: string\n          example: Hello-World\n        full_name:\n          type: string\n          example: octocat/Hello-World\n        owner:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        private:\n          type: boolean\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World\n        description:\n          type: string\n          example: This your first repo!\n          nullable: true\n        fork:\n          type: boolean\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World\n        archive_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/downloads\n        events_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/events\n        forks_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url:\n          type: string\n        issue_comment_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/languages\n        merges_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url:\n          type: string\n        stargazers_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/tags\n        teams_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/teams\n        trees_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url:\n          type: string\n        mirror_url:\n          type: string\n          nullable: true\n        hooks_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url:\n          type: string\n        homepage:\n          type: string\n          nullable: true\n        language:\n          type: string\n          nullable: true\n        forks_count:\n          type: integer\n        stargazers_count:\n          type: integer\n        watchers_count:\n          type: integer\n        size:\n          type: integer\n        default_branch:\n          type: string\n        open_issues_count:\n          type: integer\n        is_template:\n          type: boolean\n        topics:\n          type: array\n          items:\n            type: string\n        has_issues:\n          type: boolean\n        has_projects:\n          type: boolean\n        has_wiki:\n          type: boolean\n        has_pages:\n          type: boolean\n        has_downloads:\n          type: boolean\n        archived:\n          type: boolean\n        disabled:\n          type: boolean\n        visibility:\n          type: string\n        pushed_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:06:43Z'\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n          nullable: true\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:14:43Z'\n          nullable: true\n        permissions:\n          type: object\n          properties:\n            admin:\n              type: boolean\n            push:\n              type: boolean\n            pull:\n              type: boolean\n        template_repository:\n          type: string\n        temp_clone_token:\n          type: string\n        delete_branch_on_merge:\n          type: boolean\n        subscribers_count:\n          type: integer\n        network_count:\n          type: integer\n        license:\n          type: object\n          properties:\n            key:\n              type: string\n            name:\n              type: string\n            spdx_id:\n              type: string\n            url:\n              type: string\n            node_id:\n              type: string\n          nullable: true\n        forks:\n          type: integer\n          example: 0\n        open_issues:\n          type: integer\n          example: 0\n        watchers:\n          type: integer\n          example: 0\n      required:\n      - archive_url\n      - assignees_url\n      - blobs_url\n      - branches_url\n      - collaborators_url\n      - comments_url\n      - commits_url\n      - compare_url\n      - contents_url\n      - contributors_url\n      - deployments_url\n      - description\n      - downloads_url\n      - events_url\n      - fork\n      - forks_url\n      - full_name\n      - git_commits_url\n      - git_refs_url\n      - git_tags_url\n      - hooks_url\n      - html_url\n      - id\n      - node_id\n      - issue_comment_url\n      - issue_events_url\n      - issues_url\n      - keys_url\n      - labels_url\n      - languages_url\n      - merges_url\n      - milestones_url\n      - name\n      - notifications_url\n      - owner\n      - private\n      - pulls_url\n      - releases_url\n      - stargazers_url\n      - statuses_url\n      - subscribers_url\n      - subscription_url\n      - tags_url\n      - teams_url\n      - trees_url\n      - url\n    license-simple:\n      title: License Simple\n      description: License Simple\n      type: object\n      properties:\n        key:\n          type: string\n          example: mit\n        name:\n          type: string\n          example: MIT License\n        url:\n          type: string\n          nullable: true\n          format: uri\n          example: https://api.github.com/licenses/mit\n        spdx_id:\n          type: string\n          nullable: true\n          example: MIT\n        node_id:\n          type: string\n          example: MDc6TGljZW5zZW1pdA==\n        html_url:\n          type: string\n          format: uri\n      required:\n      - key\n      - name\n      - url\n      - spdx_id\n      - node_id\n    repository:\n      title: Repository\n      description: A git repository\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the repository\n          example: 42\n          type: integer\n        node_id:\n          type: string\n          example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name:\n          description: The name of the repository.\n          type: string\n          example: Team Environment\n        full_name:\n          type: string\n          example: octocat/Hello-World\n        license:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/license-simple\"\n        forks:\n          type: integer\n        permissions:\n          type: object\n          properties:\n            admin:\n              type: boolean\n            pull:\n              type: boolean\n            triage:\n              type: boolean\n            push:\n              type: boolean\n            maintain:\n              type: boolean\n          required:\n          - admin\n          - pull\n          - push\n        owner:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        private:\n          description: Whether the repository is private or public.\n          default: false\n          type: boolean\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World\n        description:\n          type: string\n          example: This your first repo!\n          nullable: true\n        fork:\n          type: boolean\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World\n        archive_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/downloads\n        events_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/events\n        forks_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url:\n          type: string\n          example: git:github.com/octocat/Hello-World.git\n        issue_comment_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/languages\n        merges_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url:\n          type: string\n          example: git@github.com:octocat/Hello-World.git\n        stargazers_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/tags\n        teams_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/teams\n        trees_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url:\n          type: string\n          example: https://github.com/octocat/Hello-World.git\n        mirror_url:\n          type: string\n          format: uri\n          example: git:git.example.com/octocat/Hello-World\n          nullable: true\n        hooks_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url:\n          type: string\n          format: uri\n          example: https://svn.github.com/octocat/Hello-World\n        homepage:\n          type: string\n          format: uri\n          example: https://github.com\n          nullable: true\n        language:\n          type: string\n          nullable: true\n        forks_count:\n          type: integer\n          example: 9\n        stargazers_count:\n          type: integer\n          example: 80\n        watchers_count:\n          type: integer\n          example: 80\n        size:\n          type: integer\n          example: 108\n        default_branch:\n          description: The default branch of the repository.\n          type: string\n          example: master\n        open_issues_count:\n          type: integer\n          example: 0\n        is_template:\n          description: Whether this repository acts as a template that can be used\n            to generate new repositories.\n          default: false\n          type: boolean\n          example: true\n        topics:\n          type: array\n          items:\n            type: string\n        has_issues:\n          description: Whether issues are enabled.\n          default: true\n          type: boolean\n          example: true\n        has_projects:\n          description: Whether projects are enabled.\n          default: true\n          type: boolean\n          example: true\n        has_wiki:\n          description: Whether the wiki is enabled.\n          default: true\n          type: boolean\n          example: true\n        has_pages:\n          type: boolean\n        has_downloads:\n          description: Whether downloads are enabled.\n          default: true\n          type: boolean\n          example: true\n        archived:\n          description: Whether the repository is archived.\n          default: false\n          type: boolean\n        disabled:\n          type: boolean\n          description: Returns whether or not this repository disabled.\n        visibility:\n          description: 'The repository visibility: public, private, or internal.'\n          default: public\n          type: string\n        pushed_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:06:43Z'\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n          nullable: true\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:14:43Z'\n          nullable: true\n        allow_rebase_merge:\n          description: Whether to allow rebase merges for pull requests.\n          default: true\n          type: boolean\n          example: true\n        template_repository:\n          type: object\n          nullable: true\n          properties:\n            id:\n              type: integer\n            node_id:\n              type: string\n            name:\n              type: string\n            full_name:\n              type: string\n            owner:\n              type: object\n              properties:\n                login:\n                  type: string\n                id:\n                  type: integer\n                node_id:\n                  type: string\n                avatar_url:\n                  type: string\n                gravatar_id:\n                  type: string\n                url:\n                  type: string\n                html_url:\n                  type: string\n                followers_url:\n                  type: string\n                following_url:\n                  type: string\n                gists_url:\n                  type: string\n                starred_url:\n                  type: string\n                subscriptions_url:\n                  type: string\n                organizations_url:\n                  type: string\n                repos_url:\n                  type: string\n                events_url:\n                  type: string\n                received_events_url:\n                  type: string\n                type:\n                  type: string\n                site_admin:\n                  type: boolean\n            private:\n              type: boolean\n            html_url:\n              type: string\n            description:\n              type: string\n            fork:\n              type: boolean\n            url:\n              type: string\n            archive_url:\n              type: string\n            assignees_url:\n              type: string\n            blobs_url:\n              type: string\n            branches_url:\n              type: string\n            collaborators_url:\n              type: string\n            comments_url:\n              type: string\n            commits_url:\n              type: string\n            compare_url:\n              type: string\n            contents_url:\n              type: string\n            contributors_url:\n              type: string\n            deployments_url:\n              type: string\n            downloads_url:\n              type: string\n            events_url:\n              type: string\n            forks_url:\n              type: string\n            git_commits_url:\n              type: string\n            git_refs_url:\n              type: string\n            git_tags_url:\n              type: string\n            git_url:\n              type: string\n            issue_comment_url:\n              type: string\n            issue_events_url:\n              type: string\n            issues_url:\n              type: string\n            keys_url:\n              type: string\n            labels_url:\n              type: string\n            languages_url:\n              type: string\n            merges_url:\n              type: string\n            milestones_url:\n              type: string\n            notifications_url:\n              type: string\n            pulls_url:\n              type: string\n            releases_url:\n              type: string\n            ssh_url:\n              type: string\n            stargazers_url:\n              type: string\n            statuses_url:\n              type: string\n            subscribers_url:\n              type: string\n            subscription_url:\n              type: string\n            tags_url:\n              type: string\n            teams_url:\n              type: string\n            trees_url:\n              type: string\n            clone_url:\n              type: string\n            mirror_url:\n              type: string\n            hooks_url:\n              type: string\n            svn_url:\n              type: string\n            homepage:\n              type: string\n            language:\n              type: string\n            forks_count:\n              type: integer\n            stargazers_count:\n              type: integer\n            watchers_count:\n              type: integer\n            size:\n              type: integer\n            default_branch:\n              type: string\n            open_issues_count:\n              type: integer\n            is_template:\n              type: boolean\n            topics:\n              type: array\n              items:\n                type: string\n            has_issues:\n              type: boolean\n            has_projects:\n              type: boolean\n            has_wiki:\n              type: boolean\n            has_pages:\n              type: boolean\n            has_downloads:\n              type: boolean\n            archived:\n              type: boolean\n            disabled:\n              type: boolean\n            visibility:\n              type: string\n            pushed_at:\n              type: string\n            created_at:\n              type: string\n            updated_at:\n              type: string\n            permissions:\n              type: object\n              properties:\n                admin:\n                  type: boolean\n                push:\n                  type: boolean\n                pull:\n                  type: boolean\n            allow_rebase_merge:\n              type: boolean\n            template_repository:\n              type: string\n            temp_clone_token:\n              type: string\n            allow_squash_merge:\n              type: boolean\n            delete_branch_on_merge:\n              type: boolean\n            allow_merge_commit:\n              type: boolean\n            subscribers_count:\n              type: integer\n            network_count:\n              type: integer\n        temp_clone_token:\n          type: string\n        allow_squash_merge:\n          description: Whether to allow squash merges for pull requests.\n          default: true\n          type: boolean\n          example: true\n        delete_branch_on_merge:\n          description: Whether to delete head branches when pull requests are merged\n          default: false\n          type: boolean\n          example: false\n        allow_merge_commit:\n          description: Whether to allow merge commits for pull requests.\n          default: true\n          type: boolean\n          example: true\n        subscribers_count:\n          type: integer\n        network_count:\n          type: integer\n        open_issues:\n          type: integer\n        watchers:\n          type: integer\n        master_branch:\n          type: string\n        starred_at:\n          type: string\n          example: '\"2020-07-09T00:17:42Z\"'\n      required:\n      - archive_url\n      - assignees_url\n      - blobs_url\n      - branches_url\n      - collaborators_url\n      - comments_url\n      - commits_url\n      - compare_url\n      - contents_url\n      - contributors_url\n      - deployments_url\n      - description\n      - downloads_url\n      - events_url\n      - fork\n      - forks_url\n      - full_name\n      - git_commits_url\n      - git_refs_url\n      - git_tags_url\n      - hooks_url\n      - html_url\n      - id\n      - node_id\n      - issue_comment_url\n      - issue_events_url\n      - issues_url\n      - keys_url\n      - labels_url\n      - languages_url\n      - merges_url\n      - milestones_url\n      - name\n      - notifications_url\n      - owner\n      - private\n      - pulls_url\n      - releases_url\n      - stargazers_url\n      - statuses_url\n      - subscribers_url\n      - subscription_url\n      - tags_url\n      - teams_url\n      - trees_url\n      - url\n      - clone_url\n      - default_branch\n      - forks\n      - forks_count\n      - git_url\n      - has_downloads\n      - has_issues\n      - has_projects\n      - has_wiki\n      - has_pages\n      - homepage\n      - language\n      - archived\n      - disabled\n      - mirror_url\n      - open_issues\n      - open_issues_count\n      - license\n      - pushed_at\n      - size\n      - ssh_url\n      - stargazers_count\n      - svn_url\n      - watchers\n      - watchers_count\n      - created_at\n      - updated_at\n    basic-error:\n      title: Basic Error\n      description: Basic Error\n      type: object\n      properties:\n        message:\n          type: string\n        documentation_url:\n          type: string\n    validation-error:\n      title: Validation Error\n      description: Validation Error\n      type: object\n      required:\n      - message\n      - documentation_url\n      properties:\n        message:\n          type: string\n        documentation_url:\n          type: string\n        errors:\n          type: array\n          items:\n            type: object\n            required:\n            - code\n            properties:\n              resource:\n                type: string\n              field:\n                type: string\n              message:\n                type: string\n              code:\n                type: string\n              index:\n                type: integer\n              value:\n                oneOf:\n                - type: string\n                  nullable: true\n                - type: integer\n                  nullable: true\n                - type: array\n                  nullable: true\n                  items:\n                    type: string\n    team-simple:\n      title: Team Simple\n      description: Groups of organization members that gives permissions on specified\n        repositories.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the team\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDQ6VGVhbTE=\n        url:\n          description: URL for the team\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/1\n        members_url:\n          type: string\n          example: https://api.github.com/organizations/1/team/1/members{/member}\n        name:\n          description: Name of the team\n          type: string\n          example: Justice League\n        description:\n          description: Description of the team\n          type: string\n          nullable: true\n          example: A great team.\n        permission:\n          description: Permission that the team will have for its repositories\n          type: string\n          example: admin\n        privacy:\n          description: The level of privacy this team should have\n          type: string\n          example: closed\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/orgs/rails/teams/core\n        repositories_url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/1/repos\n        slug:\n          type: string\n          example: justice-league\n        ldap_dn:\n          description: Distinguished Name (DN) that team maps to within LDAP environment\n          example: uid=example,ou=users,dc=github,dc=com\n          type: string\n      required:\n      - id\n      - node_id\n      - url\n      - members_url\n      - name\n      - description\n      - permission\n      - html_url\n      - repositories_url\n      - slug\n      nullable: true\n    team:\n      title: Team\n      description: Groups of organization members that gives permissions on specified\n        repositories.\n      type: object\n      properties:\n        id:\n          type: integer\n        node_id:\n          type: string\n        name:\n          type: string\n        slug:\n          type: string\n        description:\n          type: string\n          nullable: true\n        privacy:\n          type: string\n        permission:\n          type: string\n        url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/orgs/rails/teams/core\n        members_url:\n          type: string\n        repositories_url:\n          type: string\n          format: uri\n        parent:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/team-simple\"\n      required:\n      - id\n      - node_id\n      - url\n      - members_url\n      - name\n      - description\n      - permission\n      - html_url\n      - repositories_url\n      - slug\n    branch-short:\n      title: Branch Short\n      description: Branch Short\n      type: object\n      properties:\n        name:\n          type: string\n        commit:\n          type: object\n          properties:\n            sha:\n              type: string\n            url:\n              type: string\n        protected:\n          type: boolean\n    release-asset:\n      title: Release Asset\n      description: Data related to a release.\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        browser_download_url:\n          type: string\n          format: uri\n        id:\n          type: integer\n        node_id:\n          type: string\n        name:\n          description: The file name of the asset.\n          type: string\n          example: Team Environment\n        label:\n          type: string\n          nullable: true\n        state:\n          description: State of the release asset.\n          type: string\n          enum:\n          - uploaded\n          example: open\n        content_type:\n          type: string\n        size:\n          type: integer\n        download_count:\n          type: integer\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        uploader:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - id\n      - name\n      - content_type\n      - size\n      - state\n      - url\n      - node_id\n      - download_count\n      - label\n      - uploader\n      - browser_download_url\n      - created_at\n      - updated_at\n    content-tree:\n      title: Content Tree\n      description: Content Tree\n      type: object\n      properties:\n        type:\n          type: string\n        size:\n          type: integer\n        name:\n          type: string\n        path:\n          type: string\n        sha:\n          type: string\n        url:\n          type: string\n          format: uri\n        git_url:\n          type: string\n          format: uri\n          nullable: true\n        html_url:\n          type: string\n          format: uri\n          nullable: true\n        download_url:\n          type: string\n          format: uri\n          nullable: true\n        entries:\n          type: array\n          items:\n            type: object\n            properties:\n              type:\n                type: string\n              size:\n                type: integer\n              name:\n                type: string\n              path:\n                type: string\n              content:\n                type: string\n              sha:\n                type: string\n              url:\n                type: string\n                format: uri\n              git_url:\n                type: string\n                format: uri\n                nullable: true\n              html_url:\n                type: string\n                format: uri\n                nullable: true\n              download_url:\n                type: string\n                format: uri\n                nullable: true\n              _links:\n                type: object\n                properties:\n                  git:\n                    type: string\n                    format: uri\n                    nullable: true\n                  html:\n                    type: string\n                    format: uri\n                    nullable: true\n                  self:\n                    type: string\n                    format: uri\n                required:\n                - git\n                - html\n                - self\n            required:\n            - _links\n            - git_url\n            - html_url\n            - download_url\n            - name\n            - path\n            - sha\n            - size\n            - type\n            - url\n        _links:\n          type: object\n          properties:\n            git:\n              type: string\n              format: uri\n              nullable: true\n            html:\n              type: string\n              format: uri\n              nullable: true\n            self:\n              type: string\n              format: uri\n          required:\n          - git\n          - html\n          - self\n      required:\n      - _links\n      - git_url\n      - html_url\n      - download_url\n      - name\n      - path\n      - sha\n      - size\n      - type\n      - url\n      - content\n      - encoding\n    content-directory:\n      title: Content Directory\n      description: A list of directory items\n      type: array\n      items:\n        type: object\n        properties:\n          type:\n            type: string\n          size:\n            type: integer\n          name:\n            type: string\n          path:\n            type: string\n          content:\n            type: string\n          sha:\n            type: string\n          url:\n            type: string\n            format: uri\n          git_url:\n            type: string\n            format: uri\n            nullable: true\n          html_url:\n            type: string\n            format: uri\n            nullable: true\n          download_url:\n            type: string\n            format: uri\n            nullable: true\n          _links:\n            type: object\n            properties:\n              git:\n                type: string\n                format: uri\n                nullable: true\n              html:\n                type: string\n                format: uri\n                nullable: true\n              self:\n                type: string\n                format: uri\n            required:\n            - git\n            - html\n            - self\n        required:\n        - _links\n        - git_url\n        - html_url\n        - download_url\n        - name\n        - path\n        - sha\n        - size\n        - type\n        - url\n    content-file:\n      title: Content File\n      description: Content File\n      type: object\n      properties:\n        type:\n          type: string\n        encoding:\n          type: string\n        size:\n          type: integer\n        name:\n          type: string\n        path:\n          type: string\n        content:\n          type: string\n        sha:\n          type: string\n        url:\n          type: string\n          format: uri\n        git_url:\n          type: string\n          format: uri\n          nullable: true\n        html_url:\n          type: string\n          format: uri\n          nullable: true\n        download_url:\n          type: string\n          format: uri\n          nullable: true\n        _links:\n          type: object\n          properties:\n            git:\n              type: string\n              format: uri\n              nullable: true\n            html:\n              type: string\n              format: uri\n              nullable: true\n            self:\n              type: string\n              format: uri\n          required:\n          - git\n          - html\n          - self\n        target:\n          type: string\n          example: '\"actual/actual.md\"'\n        submodule_git_url:\n          type: string\n          example: '\"git://example.com/defunkt/dotjs.git\"'\n      required:\n      - _links\n      - git_url\n      - html_url\n      - download_url\n      - name\n      - path\n      - sha\n      - size\n      - type\n      - url\n      - content\n      - encoding\n    content-symlink:\n      title: Symlink Content\n      description: An object describing a symlink\n      type: object\n      properties:\n        type:\n          type: string\n        target:\n          type: string\n        size:\n          type: integer\n        name:\n          type: string\n        path:\n          type: string\n        sha:\n          type: string\n        url:\n          type: string\n          format: uri\n        git_url:\n          type: string\n          format: uri\n          nullable: true\n        html_url:\n          type: string\n          format: uri\n          nullable: true\n        download_url:\n          type: string\n          format: uri\n          nullable: true\n        _links:\n          type: object\n          properties:\n            git:\n              type: string\n              format: uri\n              nullable: true\n            html:\n              type: string\n              format: uri\n              nullable: true\n            self:\n              type: string\n              format: uri\n          required:\n          - git\n          - html\n          - self\n      required:\n      - _links\n      - git_url\n      - html_url\n      - download_url\n      - name\n      - path\n      - sha\n      - size\n      - type\n      - url\n      - target\n    content-submodule:\n      title: Symlink Content\n      description: An object describing a symlink\n      type: object\n      properties:\n        type:\n          type: string\n        submodule_git_url:\n          type: string\n          format: uri\n        size:\n          type: integer\n        name:\n          type: string\n        path:\n          type: string\n        sha:\n          type: string\n        url:\n          type: string\n          format: uri\n        git_url:\n          type: string\n          format: uri\n          nullable: true\n        html_url:\n          type: string\n          format: uri\n          nullable: true\n        download_url:\n          type: string\n          format: uri\n          nullable: true\n        _links:\n          type: object\n          properties:\n            git:\n              type: string\n              format: uri\n              nullable: true\n            html:\n              type: string\n              format: uri\n              nullable: true\n            self:\n              type: string\n              format: uri\n          required:\n          - git\n          - html\n          - self\n      required:\n      - _links\n      - git_url\n      - html_url\n      - download_url\n      - name\n      - path\n      - sha\n      - size\n      - type\n      - url\n      - submodule_git_url\n    file-commit:\n      title: File Commit\n      description: File Commit\n      type: object\n      properties:\n        content:\n          type: object\n          properties:\n            name:\n              type: string\n            path:\n              type: string\n            sha:\n              type: string\n            size:\n              type: integer\n            url:\n              type: string\n            html_url:\n              type: string\n            git_url:\n              type: string\n            download_url:\n              type: string\n            type:\n              type: string\n            _links:\n              type: object\n              properties:\n                self:\n                  type: string\n                git:\n                  type: string\n                html:\n                  type: string\n          nullable: true\n        commit:\n          type: object\n          properties:\n            sha:\n              type: string\n            node_id:\n              type: string\n            url:\n              type: string\n            html_url:\n              type: string\n            author:\n              type: object\n              properties:\n                date:\n                  type: string\n                name:\n                  type: string\n                email:\n                  type: string\n            committer:\n              type: object\n              properties:\n                date:\n                  type: string\n                name:\n                  type: string\n                email:\n                  type: string\n            message:\n              type: string\n            tree:\n              type: object\n              properties:\n                url:\n                  type: string\n                sha:\n                  type: string\n            parents:\n              type: array\n              items:\n                type: object\n                properties:\n                  url:\n                    type: string\n                  html_url:\n                    type: string\n                  sha:\n                    type: string\n            verification:\n              type: object\n              properties:\n                verified:\n                  type: boolean\n                reason:\n                  type: string\n                signature:\n                  type: string\n                  nullable: true\n                payload:\n                  type: string\n                  nullable: true\n    topic:\n      title: Topic\n      description: A topic aggregates entities that are related to a subject.\n      type: object\n      properties:\n        names:\n          type: array\n          items:\n            type: string\n    validation-error-simple:\n      title: Validation Error Simple\n      description: Validation Error Simple\n      type: object\n      required:\n      - message\n      - documentation_url\n      properties:\n        message:\n          type: string\n        documentation_url:\n          type: string\n        errors:\n          type: array\n          items:\n            type: string\n    integration:\n      title: GitHub app\n      description: GitHub apps are a new way to extend GitHub. They can be installed\n        directly on organizations and user accounts and granted access to specific\n        repositories. They come with granular permissions and built-in webhooks. GitHub\n        apps are first class actors within GitHub.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the GitHub app\n          example: 37\n          type: integer\n        slug:\n          description: The slug name of the GitHub app\n          example: probot-owners\n          type: string\n        node_id:\n          type: string\n          example: MDExOkludGVncmF0aW9uMQ==\n        owner:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        name:\n          description: The name of the GitHub app\n          example: Probot Owners\n          type: string\n        description:\n          type: string\n          example: ''\n          nullable: true\n        external_url:\n          type: string\n          format: uri\n          example: https://example.com\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/apps/super-ci\n        created_at:\n          type: string\n          format: date-time\n          example: '2017-07-08T16:18:44-04:00'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2017-07-08T16:18:44-04:00'\n        permissions:\n          description: The set of permissions for the GitHub app\n          type: object\n          properties:\n            issues:\n              type: string\n            checks:\n              type: string\n            metadata:\n              type: string\n            contents:\n              type: string\n            deployments:\n              type: string\n          additionalProperties:\n            type: string\n          example:\n            issues: read\n            deployments: write\n        events:\n          description: The list of events for the GitHub app\n          example:\n          - label\n          - deployment\n          type: array\n          items:\n            type: string\n        installations_count:\n          description: The number of installations associated with the GitHub app\n          example: 5\n          type: integer\n        client_id:\n          type: string\n          example: '\"Iv1.25b5d1e65ffc4022\"'\n        client_secret:\n          type: string\n          example: '\"1d4b2097ac622ba702d19de498f005747a8b21d3\"'\n        webhook_secret:\n          type: string\n          example: '\"6fba8f2fc8a7e8f2cca5577eddd82ca7586b3b6b\"'\n        pem:\n          type: string\n          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\n            RSA PRIVATE KEY-----\\n\"'\n      required:\n      - id\n      - node_id\n      - owner\n      - name\n      - description\n      - external_url\n      - html_url\n      - created_at\n      - updated_at\n      - permissions\n      - events\n      additionalProperties: true\n    deployment:\n      title: Deployment\n      description: A request for a specific ref(branch,sha,tag) to be deployed\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example/deployments/1\n        id:\n          description: Unique identifier of the deployment\n          example: 42\n          type: integer\n        node_id:\n          type: string\n          example: MDEwOkRlcGxveW1lbnQx\n        sha:\n          type: string\n          example: a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n        ref:\n          description: The ref to deploy. This can be a branch, tag, or sha.\n          example: topic-branch\n          type: string\n        task:\n          description: Parameter to specify a task to execute\n          example: deploy\n          type: string\n        payload:\n          type: object\n          properties: {}\n        original_environment:\n          type: string\n          example: staging\n        environment:\n          description: Name for the target deployment environment.\n          example: production\n          type: string\n        description:\n          type: string\n          example: Deploy request from hubot\n          nullable: true\n        creator:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        created_at:\n          type: string\n          format: date-time\n          example: '2012-07-20T01:19:13Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2012-07-20T01:19:13Z'\n        statuses_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example/deployments/1/statuses\n        repository_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example\n        transient_environment:\n          description: 'Specifies if the given environment is will no longer exist\n            at some point in hte future. Default: false.'\n          example: true\n          type: boolean\n        production_environment:\n          description: 'Specifies if the given environment is one that end-users directly\n            interact with. Default: false.'\n          example: true\n          type: boolean\n        performed_via_github_app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n      required:\n      - id\n      - node_id\n      - sha\n      - ref\n      - task\n      - environment\n      - creator\n      - payload\n      - description\n      - statuses_url\n      - repository_url\n      - url\n      - created_at\n      - updated_at\n    pages-source-hash:\n      title: Pages Source Hash\n      type: object\n      properties:\n        branch:\n          type: string\n        path:\n          type: string\n      required:\n      - branch\n      - path\n    page:\n      title: GitHub Pages\n      description: The configuration for GitHub Pages for a repository.\n      type: object\n      properties:\n        url:\n          type: string\n          description: The API address for accessing this Page resource.\n          format: uri\n          example: https://api.github.com/repos/github/hello-world/pages\n        status:\n          type: string\n          description: The status of the most recent build of the Page.\n          example: built\n          enum:\n          - built\n          - building\n          - errored\n          nullable: true\n        cname:\n          description: The Pages site's custom domain\n          example: example.com\n          type: string\n          nullable: true\n        custom_404:\n          type: boolean\n          description: Whether the Page has a custom 404 page.\n          example: false\n          default: false\n        html_url:\n          type: string\n          description: The web address the Page can be accessed from.\n          format: uri\n          example: https://example.com\n        source:\n          \"$ref\": \"#/components/schemas/pages-source-hash\"\n      required:\n      - url\n      - status\n      - cname\n      - custom_404\n    scim-error:\n      title: Scim Error\n      description: Scim Error\n      type: object\n      properties:\n        message:\n          type: string\n          nullable: true\n        documentation_url:\n          type: string\n          nullable: true\n        detail:\n          type: string\n          nullable: true\n        status:\n          type: integer\n        scimType:\n          type: string\n          nullable: true\n        schemas:\n          type: array\n          items:\n            type: string\n    protected-branch-pull-request-review:\n      title: Protected Branch Pull Request Review\n      description: Protected Branch Pull Request Review\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\n        dismissal_restrictions:\n          type: object\n          properties:\n            users:\n              description: The list of users with review dismissal access.\n              type: array\n              items:\n                \"$ref\": \"#/components/schemas/simple-user\"\n            teams:\n              description: The list of teams with review dismissal access.\n              type: array\n              items:\n                \"$ref\": \"#/components/schemas/team\"\n            url:\n              type: string\n              example: '\"https://api.github.com/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions\"'\n            users_url:\n              type: string\n              example: '\"https://api.github.com/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions/users\"'\n            teams_url:\n              type: string\n              example: '\"https://api.github.com/repos/the-org/an-org-repo/branches/master/protection/dismissal_restrictions/teams\"'\n        dismiss_stale_reviews:\n          type: boolean\n          example: true\n        require_code_owner_reviews:\n          type: boolean\n          example: true\n        required_approving_review_count:\n          type: integer\n          minimum: 1\n          maximum: 6\n          example: 2\n      required:\n      - dismiss_stale_reviews\n      - require_code_owner_reviews\n    status:\n      title: Status\n      description: The status of a commit.\n      type: object\n      properties:\n        url:\n          type: string\n        avatar_url:\n          type: string\n          nullable: true\n        id:\n          type: integer\n        node_id:\n          type: string\n        state:\n          type: string\n        description:\n          type: string\n        target_url:\n          type: string\n        context:\n          type: string\n        created_at:\n          type: string\n        updated_at:\n          type: string\n        creator:\n          \"$ref\": \"#/components/schemas/simple-user\"\n    git-user:\n      title: Git User\n      description: Metaproperties for Git author/committer information.\n      type: object\n      properties:\n        name:\n          type: string\n          example: '\"Chris Wanstrath\"'\n        email:\n          type: string\n          example: '\"chris@ozmm.org\"'\n        date:\n          type: string\n          example: '\"2007-10-29T02:42:39.000-07:00\"'\n    verification:\n      title: Verification\n      type: object\n      properties:\n        verified:\n          type: boolean\n        reason:\n          type: string\n        payload:\n          type: string\n          nullable: true\n        signature:\n          type: string\n          nullable: true\n      required:\n      - verified\n      - reason\n      - payload\n      - signature\n    commit:\n      title: Commit\n      description: Commit\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          nullable: true\n        sha:\n          type: string\n          example: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          nullable: true\n        node_id:\n          type: string\n          example: MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        comments_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\n        commit:\n          type: object\n          properties:\n            url:\n              type: string\n              format: uri\n              example: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            author:\n              nullable: true\n              allOf:\n              - \"$ref\": \"#/components/schemas/git-user\"\n            committer:\n              nullable: true\n              allOf:\n              - \"$ref\": \"#/components/schemas/git-user\"\n            message:\n              type: string\n              example: Fix all the bugs\n            comment_count:\n              type: integer\n              example: 0\n            tree:\n              type: object\n              properties:\n                sha:\n                  type: string\n                  example: 827efc6d56897b048c772eb4087f854f46256132\n                url:\n                  type: string\n                  format: uri\n                  example: https://api.github.com/repos/octocat/Hello-World/tree/827efc6d56897b048c772eb4087f854f46256132\n              required:\n              - sha\n              - url\n            verification:\n              \"$ref\": \"#/components/schemas/verification\"\n          required:\n          - author\n          - committer\n          - comment_count\n          - message\n          - tree\n          - url\n        author:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        committer:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        parents:\n          type: array\n          items:\n            type: object\n            properties:\n              sha:\n                type: string\n                example: 7638417db6d59f3c431d3e1f261cc637155684cd\n              url:\n                type: string\n                format: uri\n                example: https://api.github.com/repos/octocat/Hello-World/commits/7638417db6d59f3c431d3e1f261cc637155684cd\n              html_url:\n                type: string\n                format: uri\n                example: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd\n            required:\n            - sha\n            - url\n        stats:\n          type: object\n          properties:\n            additions:\n              type: integer\n            deletions:\n              type: integer\n            total:\n              type: integer\n        files:\n          type: array\n          items:\n            type: object\n            properties:\n              filename:\n                type: string\n              additions:\n                type: integer\n              deletions:\n                type: integer\n              changes:\n                type: integer\n              status:\n                type: string\n              raw_url:\n                type: string\n              blob_url:\n                type: string\n              patch:\n                type: string\n              sha:\n                type: string\n                example: '\"1e8e60ce9733d5283f7836fa602b6365a66b2567\"'\n              contents_url:\n                type: string\n                example: '\"https://api.github.com/repos/owner-3d68404b07d25daeb2d4a6bf/AAA_Public_Repo/contents/geometry.js?ref=c3956841a7cb7e8ba4a6fd923568d86958f01573\"'\n              previous_filename:\n                type: string\n                example: '\"subdir/before_name.txt\"'\n      required:\n      - url\n      - sha\n      - node_id\n      - html_url\n      - comments_url\n      - commit\n      - author\n      - committer\n      - parents\n    diff-entry:\n      title: Diff Entry\n      description: Diff Entry\n      type: object\n      properties:\n        sha:\n          type: string\n          example: bbcd538c8e72b8c175046e27cc8f907076331401\n        filename:\n          type: string\n          example: file1.txt\n        status:\n          type: string\n          example: added\n        additions:\n          type: integer\n          example: 103\n        deletions:\n          type: integer\n          example: 21\n        changes:\n          type: integer\n          example: 124\n        blob_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\n        raw_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\n        contents_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\n        patch:\n          type: string\n          example: \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n        previous_filename:\n          type: string\n          example: file.txt\n      required:\n      - additions\n      - blob_url\n      - changes\n      - contents_url\n      - deletions\n      - filename\n      - raw_url\n      - sha\n      - status\n    commit-comparison:\n      title: Commit Comparison\n      description: Commit Comparison\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/compare/master...topic\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/compare/master...topic\n        permalink_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\n        diff_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/compare/master...topic.diff\n        patch_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/compare/master...topic.patch\n        base_commit:\n          \"$ref\": \"#/components/schemas/commit\"\n        merge_base_commit:\n          \"$ref\": \"#/components/schemas/commit\"\n        status:\n          type: string\n          enum:\n          - diverged\n          - ahead\n          - behind\n          - identical\n          example: ahead\n        ahead_by:\n          type: integer\n          example: 4\n        behind_by:\n          type: integer\n          example: 5\n        total_commits:\n          type: integer\n          example: 6\n        commits:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/commit\"\n        files:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/diff-entry\"\n      required:\n      - url\n      - html_url\n      - permalink_url\n      - diff_url\n      - patch_url\n      - base_commit\n      - merge_base_commit\n      - status\n      - ahead_by\n      - behind_by\n      - total_commits\n      - commits\n      - files\n    milestone:\n      title: Milestone\n      description: A collection of related issues and pull requests.\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/milestones/1\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/milestones/v1.0\n        labels_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n        id:\n          type: integer\n          example: 1002604\n        node_id:\n          type: string\n          example: MDk6TWlsZXN0b25lMTAwMjYwNA==\n        number:\n          description: The number of the milestone.\n          type: integer\n          example: 42\n        state:\n          description: The state of the milestone.\n          example: open\n          type: string\n          enum:\n          - open\n          - closed\n          default: open\n        title:\n          description: The title of the milestone.\n          example: v1.0\n          type: string\n        description:\n          type: string\n          example: Tracking milestone for version 1.0\n          nullable: true\n        creator:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        open_issues:\n          type: integer\n          example: 4\n        closed_issues:\n          type: integer\n          example: 8\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-10T20:09:31Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2014-03-03T18:58:10Z'\n        closed_at:\n          type: string\n          format: date-time\n          example: '2013-02-12T13:22:01Z'\n          nullable: true\n        due_on:\n          type: string\n          format: date-time\n          example: '2012-10-09T23:39:01Z'\n          nullable: true\n      required:\n      - closed_issues\n      - creator\n      - description\n      - due_on\n      - closed_at\n      - id\n      - node_id\n      - labels_url\n      - html_url\n      - number\n      - open_issues\n      - state\n      - title\n      - url\n      - created_at\n      - updated_at\n    link:\n      title: Link\n      description: Hypermedia Link\n      type: object\n      properties:\n        href:\n          type: string\n      required:\n      - href\n    pull-request-simple:\n      title: Pull Request Simple\n      description: Pull Request Simple\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDExOlB1bGxSZXF1ZXN0MQ==\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1347\n        diff_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1347.diff\n        patch_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1347.patch\n        issue_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        commits_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n        review_comments_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n        review_comment_url:\n          type: string\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n        comments_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        statuses_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        number:\n          type: integer\n          example: 1347\n        state:\n          type: string\n          example: open\n        locked:\n          type: boolean\n          example: true\n        title:\n          type: string\n          example: new-feature\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          type: string\n          example: Please pull these awesome changes\n          nullable: true\n        labels:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              node_id:\n                type: string\n              url:\n                type: string\n              name:\n                type: string\n              description:\n                type: string\n              color:\n                type: string\n              default:\n                type: boolean\n        milestone:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/milestone\"\n        active_lock_reason:\n          type: string\n          example: too heated\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n        closed_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n          nullable: true\n        merged_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n          nullable: true\n        merge_commit_sha:\n          type: string\n          example: e5bd3914e2e596debea16f433f57875b5b90bcd6\n          nullable: true\n        assignee:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        assignees:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        requested_reviewers:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        requested_teams:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/team-simple\"\n          nullable: true\n        head:\n          type: object\n          properties:\n            label:\n              type: string\n            ref:\n              type: string\n            repo:\n              \"$ref\": \"#/components/schemas/repository\"\n            sha:\n              type: string\n            user:\n              nullable: true\n              allOf:\n              - \"$ref\": \"#/components/schemas/simple-user\"\n          required:\n          - label\n          - ref\n          - repo\n          - sha\n          - user\n        base:\n          type: object\n          properties:\n            label:\n              type: string\n            ref:\n              type: string\n            repo:\n              \"$ref\": \"#/components/schemas/repository\"\n            sha:\n              type: string\n            user:\n              nullable: true\n              allOf:\n              - \"$ref\": \"#/components/schemas/simple-user\"\n          required:\n          - label\n          - ref\n          - repo\n          - sha\n          - user\n        _links:\n          type: object\n          properties:\n            comments:\n              \"$ref\": \"#/components/schemas/link\"\n            commits:\n              \"$ref\": \"#/components/schemas/link\"\n            statuses:\n              \"$ref\": \"#/components/schemas/link\"\n            html:\n              \"$ref\": \"#/components/schemas/link\"\n            issue:\n              \"$ref\": \"#/components/schemas/link\"\n            review_comments:\n              \"$ref\": \"#/components/schemas/link\"\n            review_comment:\n              \"$ref\": \"#/components/schemas/link\"\n            self:\n              \"$ref\": \"#/components/schemas/link\"\n          required:\n          - comments\n          - commits\n          - statuses\n          - html\n          - issue\n          - review_comments\n          - review_comment\n          - self\n        author_association:\n          type: string\n          example: OWNER\n        draft:\n          description: Indicates whether or not the pull request is a draft.\n          example: false\n          type: boolean\n      required:\n      - _links\n      - assignee\n      - labels\n      - base\n      - body\n      - closed_at\n      - comments_url\n      - commits_url\n      - created_at\n      - diff_url\n      - head\n      - html_url\n      - id\n      - node_id\n      - issue_url\n      - merge_commit_sha\n      - merged_at\n      - milestone\n      - number\n      - patch_url\n      - review_comment_url\n      - review_comments_url\n      - statuses_url\n      - state\n      - locked\n      - title\n      - updated_at\n      - url\n      - user\n      - author_association\n    protected-branch-admin-enforced:\n      title: Protected Branch Admin Enforced\n      description: Protected Branch Admin Enforced\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\n        enabled:\n          type: boolean\n          example: true\n      required:\n      - url\n      - enabled\n    deployment-status:\n      title: Deployment Status\n      description: The status of a deployment.\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example/deployments/42/statuses/1\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDE2OkRlcGxveW1lbnRTdGF0dXMx\n        state:\n          description: The state of the status.\n          enum:\n          - error\n          - failure\n          - inactive\n          - pending\n          - success\n          - queued\n          - in_progress\n          example: success\n          type: string\n        creator:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        description:\n          description: A short description of the status.\n          default: ''\n          type: string\n          maxLength: 140\n          example: Deployment finished successfully.\n        environment:\n          description: The environment of the deployment that the status is for.\n          default: ''\n          type: string\n          example: production\n        target_url:\n          description: 'Deprecated: the URL to associate with this status.'\n          default: ''\n          type: string\n          format: uri\n          example: https://example.com/deployment/42/output\n        created_at:\n          type: string\n          format: date-time\n          example: '2012-07-20T01:19:13Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2012-07-20T01:19:13Z'\n        deployment_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example/deployments/42\n        repository_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example\n        environment_url:\n          description: The URL for accessing your environment.\n          default: ''\n          type: string\n          format: uri\n          example: ''\n        log_url:\n          description: The URL to associate with this status.\n          default: ''\n          type: string\n          format: uri\n          example: https://example.com/deployment/42/output\n        performed_via_github_app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n      required:\n      - id\n      - node_id\n      - state\n      - creator\n      - description\n      - deployment_url\n      - target_url\n      - repository_url\n      - url\n      - created_at\n      - updated_at\n    branch-restriction-policy:\n      title: Branch Restriction Policy\n      description: Branch Restriction Policy\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        users_url:\n          type: string\n          format: uri\n        teams_url:\n          type: string\n          format: uri\n        apps_url:\n          type: string\n          format: uri\n        users:\n          type: array\n          items:\n            type: object\n            properties:\n              login:\n                type: string\n              id:\n                type: integer\n              node_id:\n                type: string\n              avatar_url:\n                type: string\n              gravatar_id:\n                type: string\n              url:\n                type: string\n              html_url:\n                type: string\n              followers_url:\n                type: string\n              following_url:\n                type: string\n              gists_url:\n                type: string\n              starred_url:\n                type: string\n              subscriptions_url:\n                type: string\n              organizations_url:\n                type: string\n              repos_url:\n                type: string\n              events_url:\n                type: string\n              received_events_url:\n                type: string\n              type:\n                type: string\n              site_admin:\n                type: boolean\n        teams:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              node_id:\n                type: string\n              url:\n                type: string\n              html_url:\n                type: string\n              name:\n                type: string\n              slug:\n                type: string\n              description:\n                type: string\n                nullable: true\n              privacy:\n                type: string\n              permission:\n                type: string\n              members_url:\n                type: string\n              repositories_url:\n                type: string\n              parent:\n                type: string\n                nullable: true\n        apps:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              slug:\n                type: string\n              node_id:\n                type: string\n              owner:\n                type: object\n                properties:\n                  login:\n                    type: string\n                  id:\n                    type: integer\n                  node_id:\n                    type: string\n                  url:\n                    type: string\n                  repos_url:\n                    type: string\n                  events_url:\n                    type: string\n                  hooks_url:\n                    type: string\n                  issues_url:\n                    type: string\n                  members_url:\n                    type: string\n                  public_members_url:\n                    type: string\n                  avatar_url:\n                    type: string\n                  description:\n                    type: string\n                  gravatar_id:\n                    type: string\n                    example: '\"\"'\n                  html_url:\n                    type: string\n                    example: '\"https://github.com/testorg-ea8ec76d71c3af4b\"'\n                  followers_url:\n                    type: string\n                    example: '\"https://api.github.com/users/testorg-ea8ec76d71c3af4b/followers\"'\n                  following_url:\n                    type: string\n                    example: '\"https://api.github.com/users/testorg-ea8ec76d71c3af4b/following{/other_user}\"'\n                  gists_url:\n                    type: string\n                    example: '\"https://api.github.com/users/testorg-ea8ec76d71c3af4b/gists{/gist_id}\"'\n                  starred_url:\n                    type: string\n                    example: '\"https://api.github.com/users/testorg-ea8ec76d71c3af4b/starred{/owner}{/repo}\"'\n                  subscriptions_url:\n                    type: string\n                    example: '\"https://api.github.com/users/testorg-ea8ec76d71c3af4b/subscriptions\"'\n                  organizations_url:\n                    type: string\n                    example: '\"https://api.github.com/users/testorg-ea8ec76d71c3af4b/orgs\"'\n                  received_events_url:\n                    type: string\n                    example: '\"https://api.github.com/users/testorg-ea8ec76d71c3af4b/received_events\"'\n                  type:\n                    type: string\n                    example: '\"Organization\"'\n              name:\n                type: string\n              description:\n                type: string\n              external_url:\n                type: string\n              html_url:\n                type: string\n              created_at:\n                type: string\n              updated_at:\n                type: string\n              permissions:\n                type: object\n                properties:\n                  metadata:\n                    type: string\n                  contents:\n                    type: string\n                  issues:\n                    type: string\n                  single_file:\n                    type: string\n              events:\n                type: array\n                items:\n                  type: string\n      required:\n      - url\n      - users_url\n      - teams_url\n      - apps_url\n      - users\n      - teams\n      - apps\n    branch-protection:\n      title: Branch Protection\n      description: Branch Protection\n      type: object\n      properties:\n        url:\n          type: string\n        required_status_checks:\n          type: object\n          properties:\n            url:\n              type: string\n            enforcement_level:\n              type: string\n            contexts:\n              type: array\n              items:\n                type: string\n            contexts_url:\n              type: string\n          required:\n          - enforcement_level\n          - contexts\n        enforce_admins:\n          \"$ref\": \"#/components/schemas/protected-branch-admin-enforced\"\n        required_pull_request_reviews:\n          \"$ref\": \"#/components/schemas/protected-branch-pull-request-review\"\n        restrictions:\n          \"$ref\": \"#/components/schemas/branch-restriction-policy\"\n        required_linear_history:\n          type: object\n          properties:\n            enabled:\n              type: boolean\n        allow_force_pushes:\n          type: object\n          properties:\n            enabled:\n              type: boolean\n        allow_deletions:\n          type: object\n          properties:\n            enabled:\n              type: boolean\n        enabled:\n          type: boolean\n        name:\n          type: string\n          example: '\"branch/with/protection\"'\n        protection_url:\n          type: string\n          example: '\"https://api.github.com/repos/owner-79e94e2d36b3fd06a32bb213/AAA_Public_Repo/branches/branch/with/protection/protection\"'\n      required:\n      - enabled\n      - required_status_checks\n    short-branch:\n      title: Short Branch\n      description: Short Branch\n      type: object\n      properties:\n        name:\n          type: string\n        commit:\n          type: object\n          properties:\n            sha:\n              type: string\n            url:\n              type: string\n              format: uri\n          required:\n          - sha\n          - url\n        protected:\n          type: boolean\n        protection:\n          \"$ref\": \"#/components/schemas/branch-protection\"\n        protection_url:\n          type: string\n          format: uri\n      required:\n      - name\n      - commit\n      - protected\n    repository-invitation:\n      title: Repository Invitation\n      description: Repository invitations let you manage who you collaborate with.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the repository invitation.\n          example: 42\n          type: integer\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        invitee:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        inviter:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        permissions:\n          description: The permission associated with the invitation.\n          example: read\n          type: string\n          enum:\n          - read\n          - write\n          - admin\n        created_at:\n          type: string\n          format: date-time\n          example: '2016-06-13T14:52:50-05:00'\n        url:\n          description: URL for the repository invitation\n          example: https://api.github.com/user/repository-invitations/1\n          type: string\n        html_url:\n          type: string\n          example: https://github.com/octocat/Hello-World/invitations\n        node_id:\n          type: string\n      required:\n      - id\n      - node_id\n      - permissions\n      - inviter\n      - invitee\n      - repository\n      - url\n      - html_url\n      - created_at\n    branch-with-protection:\n      title: Branch With Protection\n      description: Branch With Protection\n      type: object\n      properties:\n        name:\n          type: string\n        commit:\n          \"$ref\": \"#/components/schemas/commit\"\n        _links:\n          type: object\n          properties:\n            html:\n              type: string\n            self:\n              type: string\n              format: uri\n          required:\n          - html\n          - self\n        protected:\n          type: boolean\n        protection:\n          \"$ref\": \"#/components/schemas/branch-protection\"\n        protection_url:\n          type: string\n          format: uri\n        pattern:\n          type: string\n          example: '\"mas*\"'\n        required_approving_review_count:\n          type: integer\n          example: '0'\n      required:\n      - name\n      - commit\n      - _links\n      - protection\n      - protected\n      - protection_url\n    deploy-key:\n      title: Deploy Key\n      description: An SSH key granting access to a single repository.\n      type: object\n      properties:\n        id:\n          type: integer\n        key:\n          type: string\n        url:\n          type: string\n        title:\n          type: string\n        verified:\n          type: boolean\n        created_at:\n          type: string\n        read_only:\n          type: boolean\n    page-build:\n      title: Page Build\n      description: Page Build\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        status:\n          type: string\n        error:\n          type: object\n          properties:\n            message:\n              type: string\n              nullable: true\n          required:\n          - message\n        pusher:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        commit:\n          type: string\n        duration:\n          type: integer\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n      required:\n      - url\n      - status\n      - error\n      - pusher\n      - commit\n      - duration\n      - created_at\n      - updated_at\n    hook-response:\n      title: Hook Response\n      type: object\n      properties:\n        code:\n          type: integer\n          nullable: true\n        status:\n          type: string\n          nullable: true\n        message:\n          type: string\n          nullable: true\n      required:\n      - code\n      - status\n      - message\n    hook:\n      title: Webook\n      description: Webhooks for repositories.\n      type: object\n      properties:\n        type:\n          type: string\n        id:\n          description: Unique identifier of the webhook.\n          example: 42\n          type: integer\n        name:\n          description: The name of a valid service, use 'web' for a webhook.\n          example: web\n          type: string\n        active:\n          description: Determines whether the hook is actually triggered on pushes.\n          type: boolean\n          example: true\n        events:\n          description: 'Determines what events the hook is triggered for. Default:\n            [''push''].'\n          type: array\n          items:\n            type: string\n          example:\n          - push\n          - pull_request\n        config:\n          type: object\n          properties:\n            email:\n              type: string\n              example: '\"foo@bar.com\"'\n            password:\n              type: string\n              example: '\"foo\"'\n            room:\n              type: string\n              example: '\"roomer\"'\n            subdomain:\n              type: string\n              example: '\"foo\"'\n            url:\n              type: string\n              example: '\"http://bar.com\"'\n            insecure_ssl:\n              type: string\n              example: '\"0\"'\n            content_type:\n              type: string\n              example: '\"form\"'\n            digest:\n              type: string\n              example: '\"md5\"'\n            secret:\n              type: string\n              example: '\"********\"'\n            token:\n              type: string\n              example: '\"abc\"'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T20:39:23Z'\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T17:26:27Z'\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/hooks/1\n        test_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/hooks/1/test\n        ping_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/hooks/1/pings\n        last_response:\n          \"$ref\": \"#/components/schemas/hook-response\"\n      required:\n      - id\n      - url\n      - type\n      - name\n      - active\n      - events\n      - config\n      - ping_url\n      - created_at\n      - updated_at\n      - last_response\n      - test_url\n    release:\n      title: Release\n      description: A release.\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        assets_url:\n          type: string\n          format: uri\n        upload_url:\n          type: string\n        tarball_url:\n          type: string\n          format: uri\n          nullable: true\n        zipball_url:\n          type: string\n          format: uri\n          nullable: true\n        id:\n          type: integer\n        node_id:\n          type: string\n        tag_name:\n          description: The name of the tag.\n          example: v1.0.0\n          type: string\n        target_commitish:\n          description: Specifies the commitish value that determines where the Git\n            tag is created from.\n          example: master\n          type: string\n        name:\n          type: string\n          nullable: true\n        body:\n          type: string\n          nullable: true\n        draft:\n          description: true to create a draft (unpublished) release, false to create\n            a published one.\n          example: false\n          type: boolean\n        prerelease:\n          description: Whether to identify the release as a prerelease or a full release.\n          example: false\n          type: boolean\n        created_at:\n          type: string\n          format: date-time\n        published_at:\n          type: string\n          format: date-time\n          nullable: true\n        author:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        assets:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/release-asset\"\n        body_html:\n          type: string\n        body_text:\n          type: string\n      required:\n      - assets_url\n      - upload_url\n      - tarball_url\n      - zipball_url\n      - created_at\n      - published_at\n      - draft\n      - id\n      - node_id\n      - author\n      - html_url\n      - name\n      - prerelease\n      - tag_name\n      - target_commitish\n      - assets\n      - url\n    status-check-policy:\n      title: Status Check Policy\n      description: Status Check Policy\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\n        strict:\n          type: boolean\n          example: true\n        contexts:\n          type: array\n          example:\n          - continuous-integration/travis-ci\n          items:\n            type: string\n        contexts_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\n      required:\n      - url\n      - contexts_url\n      - strict\n      - contexts\n    full-repository:\n      title: Full Repository\n      description: Full Repository\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1296269\n        node_id:\n          type: string\n          example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name:\n          type: string\n          example: Hello-World\n        full_name:\n          type: string\n          example: octocat/Hello-World\n        owner:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        private:\n          type: boolean\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World\n        description:\n          type: string\n          example: This your first repo!\n          nullable: true\n        fork:\n          type: boolean\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World\n        archive_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/downloads\n        events_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/events\n        forks_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url:\n          type: string\n          example: git:github.com/octocat/Hello-World.git\n        issue_comment_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/languages\n        merges_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url:\n          type: string\n          example: git@github.com:octocat/Hello-World.git\n        stargazers_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/tags\n        teams_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/teams\n        trees_url:\n          type: string\n          example: http://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url:\n          type: string\n          example: https://github.com/octocat/Hello-World.git\n        mirror_url:\n          type: string\n          format: uri\n          example: git:git.example.com/octocat/Hello-World\n          nullable: true\n        hooks_url:\n          type: string\n          format: uri\n          example: http://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url:\n          type: string\n          format: uri\n          example: https://svn.github.com/octocat/Hello-World\n        homepage:\n          type: string\n          format: uri\n          example: https://github.com\n          nullable: true\n        language:\n          type: string\n          nullable: true\n        forks_count:\n          type: integer\n          example: 9\n        stargazers_count:\n          type: integer\n          example: 80\n        watchers_count:\n          type: integer\n          example: 80\n        size:\n          type: integer\n          example: 108\n        default_branch:\n          type: string\n          example: master\n        open_issues_count:\n          type: integer\n          example: 0\n        is_template:\n          type: boolean\n          example: true\n        topics:\n          type: array\n          items:\n            type: string\n          example:\n          - octocat\n          - atom\n          - electron\n          - API\n        has_issues:\n          type: boolean\n          example: true\n        has_projects:\n          type: boolean\n          example: true\n        has_wiki:\n          type: boolean\n          example: true\n        has_pages:\n          type: boolean\n        has_downloads:\n          type: boolean\n          example: true\n        archived:\n          type: boolean\n        disabled:\n          type: boolean\n          description: Returns whether or not this repository disabled.\n        visibility:\n          description: 'The repository visibility: public, private, or internal.'\n          type: string\n          example: public\n        pushed_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:06:43Z'\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:14:43Z'\n        permissions:\n          type: object\n          properties:\n            admin:\n              type: boolean\n            pull:\n              type: boolean\n            push:\n              type: boolean\n          required:\n          - admin\n          - pull\n          - push\n        allow_rebase_merge:\n          type: boolean\n          example: true\n        template_repository:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/repository\"\n        temp_clone_token:\n          type: string\n          nullable: true\n        allow_squash_merge:\n          type: boolean\n          example: true\n        delete_branch_on_merge:\n          type: boolean\n          example: false\n        allow_merge_commit:\n          type: boolean\n          example: true\n        subscribers_count:\n          type: integer\n          example: 42\n        network_count:\n          type: integer\n          example: 0\n        license:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/license-simple\"\n        organization:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        parent:\n          \"$ref\": \"#/components/schemas/repository\"\n        source:\n          \"$ref\": \"#/components/schemas/repository\"\n        forks:\n          type: integer\n        master_branch:\n          type: string\n        open_issues:\n          type: integer\n        watchers:\n          type: integer\n        anonymous_access_enabled:\n          description: Whether anonymous git access is allowed.\n          default: true\n          type: boolean\n      required:\n      - archive_url\n      - assignees_url\n      - blobs_url\n      - branches_url\n      - collaborators_url\n      - comments_url\n      - commits_url\n      - compare_url\n      - contents_url\n      - contributors_url\n      - deployments_url\n      - description\n      - downloads_url\n      - events_url\n      - fork\n      - forks_url\n      - full_name\n      - git_commits_url\n      - git_refs_url\n      - git_tags_url\n      - hooks_url\n      - html_url\n      - id\n      - node_id\n      - issue_comment_url\n      - issue_events_url\n      - issues_url\n      - keys_url\n      - labels_url\n      - languages_url\n      - merges_url\n      - milestones_url\n      - name\n      - notifications_url\n      - owner\n      - private\n      - pulls_url\n      - releases_url\n      - stargazers_url\n      - statuses_url\n      - subscribers_url\n      - subscription_url\n      - tags_url\n      - teams_url\n      - trees_url\n      - url\n      - clone_url\n      - default_branch\n      - forks\n      - forks_count\n      - git_url\n      - has_downloads\n      - has_issues\n      - has_projects\n      - has_wiki\n      - has_pages\n      - homepage\n      - language\n      - archived\n      - disabled\n      - mirror_url\n      - open_issues\n      - open_issues_count\n      - license\n      - pushed_at\n      - size\n      - ssh_url\n      - stargazers_count\n      - svn_url\n      - watchers\n      - watchers_count\n      - created_at\n      - updated_at\n      - network_count\n      - subscribers_count\n    protected-branch:\n      title: Protected Branch\n      description: Branch protections protect branches\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        required_status_checks:\n          \"$ref\": \"#/components/schemas/status-check-policy\"\n        required_pull_request_reviews:\n          type: object\n          properties:\n            url:\n              type: string\n              format: uri\n            dismiss_stale_reviews:\n              type: boolean\n            require_code_owner_reviews:\n              type: boolean\n            required_approving_review_count:\n              type: integer\n            dismissal_restrictions:\n              type: object\n              properties:\n                url:\n                  type: string\n                  format: uri\n                users_url:\n                  type: string\n                  format: uri\n                teams_url:\n                  type: string\n                  format: uri\n                users:\n                  type: array\n                  items:\n                    \"$ref\": \"#/components/schemas/simple-user\"\n                teams:\n                  type: array\n                  items:\n                    \"$ref\": \"#/components/schemas/team\"\n              required:\n              - url\n              - users_url\n              - teams_url\n              - users\n              - teams\n          required:\n          - url\n        required_signatures:\n          type: object\n          properties:\n            url:\n              type: string\n              format: uri\n              example: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\n            enabled:\n              type: boolean\n              example: true\n          required:\n          - url\n          - enabled\n        enforce_admins:\n          type: object\n          properties:\n            url:\n              type: string\n              format: uri\n            enabled:\n              type: boolean\n          additionalProperties: false\n          required:\n          - url\n          - enabled\n        required_linear_history:\n          type: object\n          properties:\n            enabled:\n              type: boolean\n          additionalProperties: false\n          required:\n          - enabled\n        allow_force_pushes:\n          type: object\n          properties:\n            enabled:\n              type: boolean\n          additionalProperties: false\n          required:\n          - enabled\n        allow_deletions:\n          type: object\n          properties:\n            enabled:\n              type: boolean\n          additionalProperties: false\n          required:\n          - enabled\n        restrictions:\n          \"$ref\": \"#/components/schemas/branch-restriction-policy\"\n      required:\n      - url\n    tag:\n      title: Tag\n      description: Tag\n      type: object\n      properties:\n        name:\n          type: string\n          example: v0.1\n        commit:\n          type: object\n          properties:\n            sha:\n              type: string\n            url:\n              type: string\n              format: uri\n          required:\n          - sha\n          - url\n        zipball_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/zipball/v0.1\n        tarball_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/tarball/v0.1\n        node_id:\n          type: string\n      required:\n      - name\n      - node_id\n      - commit\n      - zipball_url\n      - tarball_url\n    commit-activity:\n      title: Commit Activity\n      description: Commit Activity\n      type: object\n      properties:\n        days:\n          type: array\n          example:\n          - 0\n          - 3\n          - 26\n          - 20\n          - 39\n          - 1\n          - 0\n          items:\n            type: integer\n        total:\n          type: integer\n          example: 89\n        week:\n          type: integer\n          example: 1336280400\n      required:\n      - days\n      - total\n      - week\n    language:\n      title: Language\n      description: Language\n      type: object\n      additionalProperties:\n        type: integer\n    code-frequency-stat:\n      title: Code Frequency Stat\n      description: Code Frequency Stat\n      type: array\n      items:\n        type: integer\n    page-build-status:\n      title: Page Build Status\n      description: Page Build Status\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/github/hello-world/pages/builds/latest\n        status:\n          type: string\n          example: queued\n      required:\n      - url\n      - status\n    reaction-rollup:\n      title: Reaction Rollup\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        total_count:\n          type: integer\n        \"+1\":\n          type: integer\n        \"-1\":\n          type: integer\n        laugh:\n          type: integer\n        confused:\n          type: integer\n        heart:\n          type: integer\n        hooray:\n          type: integer\n        eyes:\n          type: integer\n        rocket:\n          type: integer\n      required:\n      - url\n      - total_count\n      - \"+1\"\n      - \"-1\"\n      - laugh\n      - confused\n      - heart\n      - hooray\n      - eyes\n      - rocket\n    commit-comment:\n      title: Commit Comment\n      description: Commit Comment\n      type: object\n      properties:\n        html_url:\n          type: string\n          format: uri\n        url:\n          type: string\n          format: uri\n        id:\n          type: integer\n        node_id:\n          type: string\n        body:\n          type: string\n        path:\n          type: string\n          nullable: true\n        position:\n          type: integer\n          nullable: true\n        line:\n          type: integer\n          nullable: true\n        commit_id:\n          type: string\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        author_association:\n          type: string\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\n      required:\n      - url\n      - html_url\n      - id\n      - node_id\n      - user\n      - position\n      - line\n      - path\n      - commit_id\n      - body\n      - author_association\n      - created_at\n      - updated_at\n    participation-stats:\n      title: Participation Stats\n      type: object\n      properties:\n        all:\n          type: array\n          items:\n            type: integer\n        owner:\n          type: array\n          items:\n            type: integer\n    simple-commit:\n      title: Simple Commit\n      description: Simple Commit\n      type: object\n      properties:\n        id:\n          type: string\n        tree_id:\n          type: string\n        message:\n          type: string\n        timestamp:\n          type: string\n          format: date-time\n        author:\n          type: object\n          properties:\n            name:\n              type: string\n            email:\n              type: string\n          required:\n          - name\n          - email\n          nullable: true\n        committer:\n          type: object\n          properties:\n            name:\n              type: string\n            email:\n              type: string\n          required:\n          - name\n          - email\n          nullable: true\n      required:\n      - id\n      - tree_id\n      - message\n      - timestamp\n      - author\n      - committer\n    simple-commit-status:\n      title: Simple Commit Status\n      type: object\n      properties:\n        description:\n          type: string\n          nullable: true\n        id:\n          type: integer\n        node_id:\n          type: string\n        state:\n          type: string\n        context:\n          type: string\n        target_url:\n          type: string\n          format: uri\n        required:\n          type: boolean\n          nullable: true\n        avatar_url:\n          type: string\n          nullable: true\n          format: uri\n        url:\n          type: string\n          format: uri\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n      required:\n      - description\n      - id\n      - node_id\n      - state\n      - context\n      - target_url\n      - avatar_url\n      - url\n      - created_at\n      - updated_at\n    combined-commit-status:\n      title: Combined Commit Status\n      description: Combined Commit Status\n      type: object\n      properties:\n        state:\n          type: string\n        statuses:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-commit-status\"\n        sha:\n          type: string\n        total_count:\n          type: integer\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        commit_url:\n          type: string\n          format: uri\n        url:\n          type: string\n          format: uri\n      required:\n      - state\n      - sha\n      - total_count\n      - statuses\n      - repository\n      - commit_url\n      - url\n    contributor-activity:\n      title: Contributor Activity\n      description: Contributor Activity\n      type: object\n      properties:\n        author:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        total:\n          type: integer\n          example: 135\n        weeks:\n          type: array\n          example:\n          - w: '1367712000'\n            a: 6898\n            d: 77\n            c: 10\n          items:\n            type: object\n            properties:\n              w:\n                type: string\n              a:\n                type: integer\n              d:\n                type: integer\n              c:\n                type: integer\n      required:\n      - author\n      - total\n      - weeks\n    contributor:\n      title: Contributor\n      description: Contributor\n      type: object\n      properties:\n        login:\n          type: string\n        id:\n          type: integer\n        node_id:\n          type: string\n        avatar_url:\n          type: string\n          format: uri\n        gravatar_id:\n          type: string\n          nullable: true\n        url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        followers_url:\n          type: string\n          format: uri\n        following_url:\n          type: string\n        gists_url:\n          type: string\n        starred_url:\n          type: string\n        subscriptions_url:\n          type: string\n          format: uri\n        organizations_url:\n          type: string\n          format: uri\n        repos_url:\n          type: string\n          format: uri\n        events_url:\n          type: string\n        received_events_url:\n          type: string\n          format: uri\n        type:\n          type: string\n        site_admin:\n          type: boolean\n        contributions:\n          type: integer\n        email:\n          type: string\n        name:\n          type: string\n      required:\n      - contributions\n      - type\n    collaborator:\n      title: Collaborator\n      description: Collaborator\n      type: object\n      properties:\n        login:\n          type: string\n          example: octocat\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDQ6VXNlcjE=\n        avatar_url:\n          type: string\n          format: uri\n          example: https://github.com/images/error/octocat_happy.gif\n        gravatar_id:\n          type: string\n          example: ''\n          nullable: true\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat\n        followers_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/followers\n        following_url:\n          type: string\n          example: https://api.github.com/users/octocat/following{/other_user}\n        gists_url:\n          type: string\n          example: https://api.github.com/users/octocat/gists{/gist_id}\n        starred_url:\n          type: string\n          example: https://api.github.com/users/octocat/starred{/owner}{/repo}\n        subscriptions_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/subscriptions\n        organizations_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/orgs\n        repos_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/repos\n        events_url:\n          type: string\n          example: https://api.github.com/users/octocat/events{/privacy}\n        received_events_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/received_events\n        type:\n          type: string\n          example: User\n        site_admin:\n          type: boolean\n        permissions:\n          type: object\n          properties:\n            pull:\n              type: boolean\n            push:\n              type: boolean\n            admin:\n              type: boolean\n          required:\n          - pull\n          - push\n          - admin\n      required:\n      - avatar_url\n      - events_url\n      - followers_url\n      - following_url\n      - gists_url\n      - gravatar_id\n      - html_url\n      - id\n      - node_id\n      - login\n      - organizations_url\n      - received_events_url\n      - repos_url\n      - site_admin\n      - starred_url\n      - subscriptions_url\n      - type\n      - url\n    repository-collaborator-permission:\n      title: Repository Collaborator Permission\n      description: Repository Collaborator Permission\n      type: object\n      properties:\n        permission:\n          type: string\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - permission\n      - user\n    license-content:\n      title: License Content\n      description: License Content\n      type: object\n      properties:\n        name:\n          type: string\n        path:\n          type: string\n        sha:\n          type: string\n        size:\n          type: integer\n        url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n          nullable: true\n        git_url:\n          type: string\n          format: uri\n          nullable: true\n        download_url:\n          type: string\n          format: uri\n          nullable: true\n        type:\n          type: string\n        content:\n          type: string\n        encoding:\n          type: string\n        _links:\n          type: object\n          properties:\n            git:\n              type: string\n              format: uri\n              nullable: true\n            html:\n              type: string\n              format: uri\n              nullable: true\n            self:\n              type: string\n              format: uri\n          required:\n          - git\n          - html\n          - self\n        license:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/license-simple\"\n      required:\n      - _links\n      - git_url\n      - html_url\n      - download_url\n      - name\n      - path\n      - sha\n      - size\n      - type\n      - url\n      - content\n      - encoding\n      - license\n    license:\n      title: License\n      description: License\n      type: object\n      properties:\n        key:\n          type: string\n          example: mit\n        name:\n          type: string\n          example: MIT License\n        spdx_id:\n          type: string\n          example: MIT\n          nullable: true\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/licenses/mit\n          nullable: true\n        node_id:\n          type: string\n          example: MDc6TGljZW5zZW1pdA==\n        html_url:\n          type: string\n          format: uri\n          example: http://choosealicense.com/licenses/mit/\n        description:\n          type: string\n          example: A permissive license that is short and to the point. It lets people\n            do anything with your code with proper attribution and without warranty.\n        implementation:\n          type: string\n          example: Create a text file (typically named LICENSE or LICENSE.txt) in\n            the root of your source code and copy the text of the license into the\n            file. Replace [year] with the current year and [fullname] with the name\n            (or names) of the copyright holders.\n        permissions:\n          type: array\n          example:\n          - commercial-use\n          - modifications\n          - distribution\n          - sublicense\n          - private-use\n          items:\n            type: string\n        conditions:\n          type: array\n          example:\n          - include-copyright\n          items:\n            type: string\n        limitations:\n          type: array\n          example:\n          - no-liability\n          items:\n            type: string\n        body:\n          type: string\n          example: |2\n\n\n            The MIT License (MIT)\n\n            Copyright (c) [year] [fullname]\n\n            Permission is hereby granted, free of charge, to any person obtaining a copy\n            of this software and associated documentation files (the \"Software\"), to deal\n            in the Software without restriction, including without limitation the rights\n            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n            copies of the Software, and to permit persons to whom the Software is\n            furnished to do so, subject to the following conditions:\n\n            The above copyright notice and this permission notice shall be included in all\n            copies or substantial portions of the Software.\n\n            THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n            SOFTWARE.\n        featured:\n          type: boolean\n          example: true\n      required:\n      - key\n      - name\n      - url\n      - spdx_id\n      - node_id\n      - html_url\n      - description\n      - implementation\n      - permissions\n      - conditions\n      - limitations\n      - body\n      - featured\n    repository-subscription:\n      title: Repository Invitation\n      description: Repository invitations let you manage who you collaborate with.\n      type: object\n      properties:\n        subscribed:\n          description: Determines if notifications should be received from this repository.\n          type: boolean\n          example: true\n        ignored:\n          description: Determines if all notifications should be blocked from this\n            repository.\n          type: boolean\n        reason:\n          type: string\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2012-10-06T21:34:12Z'\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example/subscription\n        repository_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/example\n      required:\n      - created_at\n      - ignored\n      - reason\n      - subscribed\n      - url\n      - repository_url\n    actor:\n      title: Actor\n      description: Actor\n      type: object\n      properties:\n        id:\n          type: integer\n        login:\n          type: string\n        display_login:\n          type: string\n        gravatar_id:\n          type: string\n          nullable: true\n        url:\n          type: string\n          format: uri\n        avatar_url:\n          type: string\n          format: uri\n      required:\n      - id\n      - login\n      - gravatar_id\n      - url\n      - avatar_url\n    issue-simple:\n      title: Issue Simple\n      description: Issue Simple\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDU6SXNzdWUx\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        repository_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World\n        labels_url:\n          type: string\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\n        comments_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        events_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347/events\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/issues/1347\n        number:\n          type: integer\n          example: 1347\n        state:\n          type: string\n          example: open\n        title:\n          type: string\n          example: Found a bug\n        body:\n          type: string\n          example: I'm having a problem with this.\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        labels:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              node_id:\n                type: string\n              url:\n                type: string\n              name:\n                type: string\n              description:\n                type: string\n                nullable: true\n              color:\n                type: string\n              default:\n                type: boolean\n        assignee:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        assignees:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        milestone:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/milestone\"\n        locked:\n          type: boolean\n          example: true\n        active_lock_reason:\n          type: string\n          example: too heated\n          nullable: true\n        comments:\n          type: integer\n          example: 0\n        pull_request:\n          type: object\n          properties:\n            merged_at:\n              type: string\n              format: date-time\n              nullable: true\n            diff_url:\n              type: string\n              format: uri\n              nullable: true\n            html_url:\n              type: string\n              format: uri\n              nullable: true\n            patch_url:\n              type: string\n              format: uri\n              nullable: true\n            url:\n              type: string\n              format: uri\n              nullable: true\n          required:\n          - diff_url\n          - html_url\n          - patch_url\n          - url\n        closed_at:\n          type: string\n          format: date-time\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-22T13:33:48Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-04-22T13:33:48Z'\n        author_association:\n          type: string\n        body_html:\n          type: string\n        body_text:\n          type: string\n        timeline_url:\n          type: string\n          format: uri\n        repository:\n          \"$ref\": \"#/components/schemas/repository\"\n        performed_via_github_app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n      required:\n      - assignee\n      - closed_at\n      - comments\n      - comments_url\n      - events_url\n      - html_url\n      - id\n      - node_id\n      - labels\n      - labels_url\n      - milestone\n      - number\n      - repository_url\n      - state\n      - locked\n      - title\n      - url\n      - user\n      - author_association\n      - created_at\n      - updated_at\n    issue-comment:\n      title: Issue Comment\n      description: Comments provide a way for people to collaborate on an issue.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the issue comment\n          example: 42\n          type: integer\n        node_id:\n          type: string\n        url:\n          description: URL for the issue comment\n          example: https://api.github.com/repositories/42/issues/comments/1\n          type: string\n          format: uri\n        body:\n          description: Contents of the issue comment\n          example: What version of Safari were you using when you observed this bug?\n          type: string\n        body_text:\n          type: string\n        body_html:\n          type: string\n        html_url:\n          type: string\n          format: uri\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-14T16:00:49Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-04-14T16:00:49Z'\n        issue_url:\n          type: string\n          format: uri\n        author_association:\n          type: string\n        performed_via_github_app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\n      required:\n      - id\n      - node_id\n      - html_url\n      - issue_url\n      - author_association\n      - user\n      - url\n      - created_at\n      - updated_at\n    event:\n      title: Event\n      description: Event\n      type: object\n      properties:\n        id:\n          type: string\n        type:\n          type: string\n          nullable: true\n        actor:\n          \"$ref\": \"#/components/schemas/actor\"\n        repo:\n          type: object\n          properties:\n            id:\n              type: integer\n            name:\n              type: string\n            url:\n              type: string\n              format: uri\n          required:\n          - id\n          - name\n          - url\n        org:\n          \"$ref\": \"#/components/schemas/actor\"\n        payload:\n          type: object\n          properties:\n            action:\n              type: string\n            issue:\n              \"$ref\": \"#/components/schemas/issue-simple\"\n            comment:\n              \"$ref\": \"#/components/schemas/issue-comment\"\n            pages:\n              type: array\n              items:\n                type: object\n                properties:\n                  page_name:\n                    type: string\n                  title:\n                    type: string\n                  summary:\n                    type: string\n                    nullable: true\n                  action:\n                    type: string\n                  sha:\n                    type: string\n                  html_url:\n                    type: string\n              required:\n              - action\n        public:\n          type: boolean\n        created_at:\n          type: string\n          format: date-time\n          nullable: true\n      required:\n      - id\n      - type\n      - actor\n      - repo\n      - payload\n      - public\n      - created_at\n    thread:\n      title: Thread\n      description: Thread\n      type: object\n      properties:\n        id:\n          type: string\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        subject:\n          type: object\n          properties:\n            title:\n              type: string\n            url:\n              type: string\n            latest_comment_url:\n              type: string\n            type:\n              type: string\n        reason:\n          type: string\n        unread:\n          type: boolean\n        updated_at:\n          type: string\n        last_read_at:\n          type: string\n          nullable: true\n        url:\n          type: string\n        subscription_url:\n          type: string\n          example: https://api.github.com/notifications/threads/2/subscription\n    link-with-type:\n      title: Link With Type\n      description: Hypermedia Link with Type\n      type: object\n      properties:\n        href:\n          type: string\n        type:\n          type: string\n      required:\n      - href\n      - type\n    feed:\n      title: Feed\n      description: Feed\n      type: object\n      properties:\n        timeline_url:\n          type: string\n          example: https://github.com/timeline\n        user_url:\n          type: string\n          example: https://github.com/{user}\n        current_user_public_url:\n          type: string\n          example: https://github.com/octocat\n        current_user_url:\n          type: string\n          example: https://github.com/octocat.private?token=abc123\n        current_user_actor_url:\n          type: string\n          example: https://github.com/octocat.private.actor?token=abc123\n        current_user_organization_url:\n          type: string\n          example: ''\n        current_user_organization_urls:\n          type: array\n          example:\n          - https://github.com/organizations/github/octocat.private.atom?token=abc123\n          items:\n            type: string\n            format: uri\n        security_advisories_url:\n          type: string\n          example: https://github.com/security-advisories\n        _links:\n          type: object\n          properties:\n            timeline:\n              \"$ref\": \"#/components/schemas/link-with-type\"\n            user:\n              \"$ref\": \"#/components/schemas/link-with-type\"\n            security_advisories:\n              \"$ref\": \"#/components/schemas/link-with-type\"\n            current_user:\n              \"$ref\": \"#/components/schemas/link-with-type\"\n            current_user_public:\n              \"$ref\": \"#/components/schemas/link-with-type\"\n            current_user_actor:\n              \"$ref\": \"#/components/schemas/link-with-type\"\n            current_user_organization:\n              \"$ref\": \"#/components/schemas/link-with-type\"\n            current_user_organizations:\n              type: array\n              items:\n                \"$ref\": \"#/components/schemas/link-with-type\"\n          required:\n          - timeline\n          - user\n      required:\n      - _links\n      - timeline_url\n      - user_url\n    starred-repository:\n      title: Starred Repository\n      description: Starred Repository\n      type: object\n      properties:\n        starred_at:\n          type: string\n          format: date-time\n        repo:\n          \"$ref\": \"#/components/schemas/repository\"\n      required:\n      - starred_at\n      - repo\n    thread-subscription:\n      title: Thread Subscription\n      description: Thread Subscription\n      type: object\n      properties:\n        subscribed:\n          type: boolean\n          example: true\n        ignored:\n          type: boolean\n        reason:\n          type: string\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2012-10-06T21:34:12Z'\n          nullable: true\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/notifications/threads/1/subscription\n        thread_url:\n          type: string\n          format: uri\n          example: https://api.github.com/notifications/threads/1\n        repository_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/1\n      required:\n      - created_at\n      - ignored\n      - reason\n      - url\n      - subscribed\n    stargazer:\n      title: Stargazer\n      description: Stargazer\n      type: object\n      properties:\n        starred_at:\n          type: string\n          format: date-time\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - starred_at\n      - user\n    check-annotation:\n      title: Check Annotation\n      description: Check Annotation\n      type: object\n      properties:\n        path:\n          type: string\n          example: README.md\n        start_line:\n          type: integer\n          example: 2\n        end_line:\n          type: integer\n          example: 2\n        start_column:\n          type: integer\n          example: 5\n          nullable: true\n        end_column:\n          type: integer\n          example: 10\n          nullable: true\n        annotation_level:\n          type: string\n          example: warning\n          nullable: true\n        title:\n          type: string\n          example: Spell Checker\n          nullable: true\n        message:\n          type: string\n          example: Check your spelling for 'banaas'.\n          nullable: true\n        raw_details:\n          type: string\n          example: Do you mean 'bananas' or 'banana'?\n          nullable: true\n        blob_href:\n          type: string\n      required:\n      - path\n      - blob_href\n      - start_line\n      - end_line\n      - start_column\n      - end_column\n      - annotation_level\n      - title\n      - message\n      - raw_details\n    pull-request-minimal:\n      title: Pull Request Minimal\n      type: object\n      properties:\n        id:\n          type: integer\n        number:\n          type: integer\n        url:\n          type: string\n        head:\n          type: object\n          properties:\n            ref:\n              type: string\n            sha:\n              type: string\n            repo:\n              type: object\n              properties:\n                id:\n                  type: integer\n                url:\n                  type: string\n                name:\n                  type: string\n              required:\n              - id\n              - url\n              - name\n          required:\n          - ref\n          - sha\n          - repo\n        base:\n          type: object\n          properties:\n            ref:\n              type: string\n            sha:\n              type: string\n            repo:\n              type: object\n              properties:\n                id:\n                  type: integer\n                url:\n                  type: string\n                name:\n                  type: string\n              required:\n              - id\n              - url\n              - name\n          required:\n          - ref\n          - sha\n          - repo\n      required:\n      - id\n      - number\n      - url\n      - head\n      - base\n    check-suite:\n      title: CheckSuite\n      description: A suite of checks performed on the code of a given code change\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 5\n        node_id:\n          type: string\n          example: MDEwOkNoZWNrU3VpdGU1\n        head_branch:\n          type: string\n          example: master\n          nullable: true\n        head_sha:\n          description: The SHA of the head commit that is being checked.\n          example: '009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d'\n          type: string\n        status:\n          type: string\n          example: completed\n          nullable: true\n        conclusion:\n          type: string\n          example: neutral\n          nullable: true\n        url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/check-suites/5\n          nullable: true\n        before:\n          type: string\n          example: 146e867f55c26428e5f9fade55a9bbf5e95a7912\n          nullable: true\n        after:\n          type: string\n          example: d6fde92930d4715a2b49857d24b940956b26d2d3\n          nullable: true\n        pull_requests:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/pull-request-minimal\"\n          nullable: true\n        app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        created_at:\n          type: string\n          format: date-time\n          nullable: true\n        updated_at:\n          type: string\n          format: date-time\n          nullable: true\n        head_commit:\n          \"$ref\": \"#/components/schemas/simple-commit\"\n        latest_check_runs_count:\n          type: integer\n        check_runs_url:\n          type: string\n      required:\n      - id\n      - node_id\n      - head_branch\n      - status\n      - conclusion\n      - head_sha\n      - url\n      - before\n      - after\n      - created_at\n      - updated_at\n      - app\n      - head_commit\n      - repository\n      - latest_check_runs_count\n      - check_runs_url\n      - pull_requests\n    check-run:\n      title: CheckRun\n      description: A check performed on the code of a given code change\n      type: object\n      properties:\n        id:\n          description: The id of the check.\n          example: 21\n          type: integer\n        head_sha:\n          description: The SHA of the commit that is being checked.\n          example: '009b8a3a9ccbb128af87f9b1c0f4c62e8a304f6d'\n          type: string\n        node_id:\n          type: string\n          example: MDg6Q2hlY2tSdW40\n        external_id:\n          type: string\n          example: ''\n          nullable: true\n        url:\n          type: string\n          example: https://api.github.com/repos/github/hello-world/check-runs/4\n        html_url:\n          type: string\n          example: https://github.com/github/hello-world/runs/4\n          nullable: true\n        details_url:\n          type: string\n          example: https://example.com\n          nullable: true\n        status:\n          description: The phase of the lifecycle that the check is currently in.\n          example: queued\n          type: string\n          enum:\n          - queued\n          - in_progress\n          - completed\n        conclusion:\n          type: string\n          example: neutral\n          nullable: true\n        started_at:\n          type: string\n          format: date-time\n          example: '2018-05-04T01:14:52Z'\n          nullable: true\n        completed_at:\n          type: string\n          format: date-time\n          example: '2018-05-04T01:14:52Z'\n          nullable: true\n        output:\n          type: object\n          properties:\n            title:\n              type: string\n              nullable: true\n            summary:\n              type: string\n              nullable: true\n            text:\n              type: string\n              nullable: true\n            annotations_count:\n              type: integer\n            annotations_url:\n              type: string\n              format: uri\n          required:\n          - title\n          - summary\n          - text\n          - annotations_count\n          - annotations_url\n        name:\n          description: The name of the check.\n          example: test-coverage\n          type: string\n        check_suite:\n          type: object\n          properties:\n            id:\n              type: integer\n          required:\n          - id\n          nullable: true\n        app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n        pull_requests:\n          items:\n            \"$ref\": \"#/components/schemas/pull-request-minimal\"\n      required:\n      - id\n      - node_id\n      - head_sha\n      - name\n      - url\n      - html_url\n      - details_url\n      - status\n      - conclusion\n      - started_at\n      - completed_at\n      - external_id\n      - check_suite\n      - output\n      - app\n      - pull_requests\n    check-suite-preference:\n      title: Check Suite Preference\n      description: Check suite configuration preferences for a repository.\n      type: object\n      properties:\n        preferences:\n          type: object\n          properties:\n            auto_trigger_checks:\n              type: array\n              items:\n                type: object\n                properties:\n                  app_id:\n                    type: integer\n                  setting:\n                    type: boolean\n                required:\n                - app_id\n                - setting\n        repository:\n          \"$ref\": \"#/components/schemas/repository\"\n    project:\n      title: Project\n      description: Projects are a way to organize columns and cards of work.\n      type: object\n      properties:\n        owner_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/api-playground/projects-test\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/1002604\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/api-playground/projects-test/projects/12\n        columns_url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/1002604/columns\n        id:\n          type: integer\n          example: 1002604\n        node_id:\n          type: string\n          example: MDc6UHJvamVjdDEwMDI2MDQ=\n        name:\n          description: Name of the project\n          example: Week One Sprint\n          type: string\n        body:\n          description: Body of the project\n          example: This project represents the sprint of the first week in January\n          type: string\n          nullable: true\n        number:\n          type: integer\n          example: 1\n        state:\n          description: State of the project; either 'open' or 'closed'\n          example: open\n          type: string\n        creator:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-10T20:09:31Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2014-03-03T18:58:10Z'\n        organization_permission:\n          description: The baseline permission that all organization members have\n            on this project\n          type: string\n          enum:\n          - read\n          - write\n          - admin\n          - none\n        private:\n          description: Whether or not this project can be seen by everyone.\n          type: boolean\n        cards_url:\n          type: string\n          format: uri\n        permissions:\n          type: object\n          properties:\n            read:\n              type: boolean\n            write:\n              type: boolean\n            admin:\n              type: boolean\n          required:\n          - read\n          - write\n          - admin\n      required:\n      - id\n      - node_id\n      - number\n      - name\n      - body\n      - state\n      - url\n      - html_url\n      - owner_url\n      - creator\n      - columns_url\n      - created_at\n      - updated_at\n    project-card:\n      title: Project Card\n      description: Project cards represent a scope of work.\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/columns/cards/1478\n        id:\n          description: The project card's ID\n          example: 42\n          type: integer\n        node_id:\n          type: string\n          example: MDExOlByb2plY3RDYXJkMTQ3OA==\n        note:\n          type: string\n          example: Add payload for delete Project column\n          nullable: true\n        creator:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        created_at:\n          type: string\n          format: date-time\n          example: '2016-09-05T14:21:06Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2016-09-05T14:20:22Z'\n        archived:\n          description: Whether or not the card is archived\n          example: false\n          type: boolean\n        column_url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/columns/367\n        content_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/api-playground/projects-test/issues/3\n        project_url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/120\n      required:\n      - id\n      - node_id\n      - note\n      - url\n      - column_url\n      - project_url\n      - creator\n      - created_at\n      - updated_at\n    project-column:\n      title: Project Column\n      description: Project columns contain cards of work.\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/columns/367\n        project_url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/120\n        cards_url:\n          type: string\n          format: uri\n          example: https://api.github.com/projects/columns/367/cards\n        id:\n          description: The unique identifier of the project column\n          example: 42\n          type: integer\n        node_id:\n          type: string\n          example: MDEzOlByb2plY3RDb2x1bW4zNjc=\n        name:\n          description: Name of the project column\n          example: Remaining tasks\n          type: string\n        created_at:\n          type: string\n          format: date-time\n          example: '2016-09-05T14:18:44Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2016-09-05T14:22:28Z'\n      required:\n      - id\n      - node_id\n      - url\n      - project_url\n      - cards_url\n      - name\n      - created_at\n      - updated_at\n    reaction:\n      title: Reaction\n      description: Reactions to conversations provide a way to help people express\n        their feelings more simply and effectively.\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDg6UmVhY3Rpb24x\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        content:\n          description: The reaction to use\n          example: heart\n          type: string\n          enum:\n          - \"+1\"\n          - \"-1\"\n          - laugh\n          - confused\n          - heart\n          - hooray\n          - rocket\n          - eyes\n        created_at:\n          type: string\n          format: date-time\n          example: '2016-05-20T20:09:31Z'\n      required:\n      - id\n      - node_id\n      - user\n      - content\n      - created_at\n    api-overview:\n      title: Api Overview\n      description: Api Overview\n      type: object\n      properties:\n        verifiable_password_authentication:\n          type: boolean\n          example: true\n        ssh_key_fingerprints:\n          type: object\n          properties:\n            MD5_RSA:\n              type: string\n            MD5_DSA:\n              type: string\n            SHA256_RSA:\n              type: string\n            SHA256_DSA:\n              type: string\n        hooks:\n          type: array\n          items:\n            type: string\n          example:\n          - 127.0.0.1/32\n        web:\n          type: array\n          items:\n            type: string\n          example:\n          - 127.0.0.1/32\n        api:\n          type: array\n          items:\n            type: string\n          example:\n          - 127.0.0.1/32\n        git:\n          type: array\n          items:\n            type: string\n          example:\n          - 127.0.0.1/32\n        pages:\n          type: array\n          items:\n            type: string\n          example:\n          - 192.30.252.153/32\n          - 192.30.252.154/32\n        importer:\n          type: array\n          items:\n            type: string\n          example:\n          - 54.158.161.132\n          - 54.226.70.38\n        github_services_sha:\n          type: string\n          example: 3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\n        installed_version:\n          type: string\n      required:\n      - verifiable_password_authentication\n    organization-simple:\n      title: Organization Simple\n      description: Organization Simple\n      type: object\n      properties:\n        login:\n          type: string\n          example: github\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDEyOk9yZ2FuaXphdGlvbjE=\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/github\n        repos_url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/github/repos\n        events_url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/github/events\n        hooks_url:\n          type: string\n          example: https://api.github.com/orgs/github/hooks\n        issues_url:\n          type: string\n          example: https://api.github.com/orgs/github/issues\n        members_url:\n          type: string\n          example: https://api.github.com/orgs/github/members{/member}\n        public_members_url:\n          type: string\n          example: https://api.github.com/orgs/github/public_members{/member}\n        avatar_url:\n          type: string\n          example: https://github.com/images/error/octocat_happy.gif\n        description:\n          type: string\n          example: A great organization\n          nullable: true\n      required:\n      - login\n      - url\n      - id\n      - node_id\n      - repos_url\n      - events_url\n      - hooks_url\n      - issues_url\n      - members_url\n      - public_members_url\n      - avatar_url\n      - description\n    org-membership:\n      title: Org Membership\n      description: Org Membership\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/octocat/memberships/defunkt\n        state:\n          type: string\n          example: active\n        role:\n          type: string\n          example: admin\n        organization_url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/octocat\n        organization:\n          \"$ref\": \"#/components/schemas/organization-simple\"\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        permissions:\n          type: object\n          properties:\n            can_create_repository:\n              type: boolean\n          required:\n          - can_create_repository\n      required:\n      - state\n      - role\n      - organization_url\n      - url\n      - organization\n      - user\n    org-hook:\n      title: Org Hook\n      description: Org Hook\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/octocat/hooks/1\n        ping_url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/octocat/hooks/1/pings\n        name:\n          type: string\n          example: web\n        events:\n          type: array\n          example:\n          - push\n          - pull_request\n          items:\n            type: string\n        active:\n          type: boolean\n          example: true\n        config:\n          type: object\n          properties:\n            url:\n              type: string\n              example: '\"http://example.com/2\"'\n            insecure_ssl:\n              type: string\n              example: '\"0\"'\n            content_type:\n              type: string\n              example: '\"form\"'\n            secret:\n              type: string\n              example: '\"********\"'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T20:39:23Z'\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T17:26:27Z'\n        type:\n          type: string\n      required:\n      - id\n      - url\n      - type\n      - name\n      - active\n      - events\n      - config\n      - ping_url\n      - created_at\n      - updated_at\n    organization-full:\n      title: Organization Full\n      description: Organization Full\n      type: object\n      properties:\n        login:\n          type: string\n          example: github\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDEyOk9yZ2FuaXphdGlvbjE=\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/github\n        repos_url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/github/repos\n        events_url:\n          type: string\n          format: uri\n          example: https://api.github.com/orgs/github/events\n        hooks_url:\n          type: string\n          example: https://api.github.com/orgs/github/hooks\n        issues_url:\n          type: string\n          example: https://api.github.com/orgs/github/issues\n        members_url:\n          type: string\n          example: https://api.github.com/orgs/github/members{/member}\n        public_members_url:\n          type: string\n          example: https://api.github.com/orgs/github/public_members{/member}\n        avatar_url:\n          type: string\n          example: https://github.com/images/error/octocat_happy.gif\n        description:\n          type: string\n          example: A great organization\n          nullable: true\n        name:\n          type: string\n          example: github\n        company:\n          type: string\n          example: GitHub\n        blog:\n          type: string\n          format: uri\n          example: https://github.com/blog\n        location:\n          type: string\n          example: San Francisco\n        email:\n          type: string\n          format: email\n          example: octocat@github.com\n        twitter_username:\n          type: string\n          example: github\n          nullable: true\n        is_verified:\n          type: boolean\n          example: true\n        has_organization_projects:\n          type: boolean\n          example: true\n        has_repository_projects:\n          type: boolean\n          example: true\n        public_repos:\n          type: integer\n          example: 2\n        public_gists:\n          type: integer\n          example: 1\n        followers:\n          type: integer\n          example: 20\n        following:\n          type: integer\n          example: 0\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat\n        created_at:\n          type: string\n          format: date-time\n          example: '2008-01-14T04:33:35Z'\n        type:\n          type: string\n          example: Organization\n        total_private_repos:\n          type: integer\n          example: 100\n        owned_private_repos:\n          type: integer\n          example: 100\n        private_gists:\n          type: integer\n          example: 81\n          nullable: true\n        disk_usage:\n          type: integer\n          example: 10000\n          nullable: true\n        collaborators:\n          type: integer\n          example: 8\n          nullable: true\n        billing_email:\n          type: string\n          format: email\n          example: org@example.com\n          nullable: true\n        plan:\n          type: object\n          properties:\n            name:\n              type: string\n            space:\n              type: integer\n            private_repos:\n              type: integer\n            filled_seats:\n              type: integer\n            seats:\n              type: integer\n          required:\n          - name\n          - space\n          - private_repos\n        default_repository_permission:\n          type: string\n          nullable: true\n        members_can_create_repositories:\n          type: boolean\n          example: true\n          nullable: true\n        two_factor_requirement_enabled:\n          type: boolean\n          example: true\n          nullable: true\n        members_allowed_repository_creation_type:\n          type: string\n          example: all\n        members_can_create_public_repositories:\n          type: boolean\n          example: true\n        members_can_create_private_repositories:\n          type: boolean\n          example: true\n        members_can_create_internal_repositories:\n          type: boolean\n          example: true\n        updated_at:\n          type: string\n          format: date-time\n      required:\n      - login\n      - url\n      - id\n      - node_id\n      - repos_url\n      - events_url\n      - hooks_url\n      - issues_url\n      - members_url\n      - public_members_url\n      - avatar_url\n      - description\n      - html_url\n      - has_organization_projects\n      - has_repository_projects\n      - public_repos\n      - public_gists\n      - followers\n      - following\n      - type\n      - created_at\n      - updated_at\n    enterprise:\n      title: Enterprise\n      description: An enterprise account\n      type: object\n      properties:\n        description:\n          description: A short description of the enterprise.\n          type: string\n          nullable: true\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/enterprises/octo-business\n        website_url:\n          description: The enterprise's website URL.\n          type: string\n          nullable: true\n          format: uri\n        id:\n          description: Unique identifier of the enterprise\n          example: 42\n          type: integer\n        node_id:\n          type: string\n          example: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name:\n          description: The name of the enterprise.\n          type: string\n          example: Octo Business\n        slug:\n          description: The slug url identifier for the enterprise.\n          type: string\n          example: octo-business\n        created_at:\n          type: string\n          nullable: true\n          format: date-time\n          example: '2019-01-26T19:01:12Z'\n        updated_at:\n          type: string\n          nullable: true\n          format: date-time\n          example: '2019-01-26T19:14:43Z'\n        avatar_url:\n          type: string\n          format: uri\n      required:\n      - id\n      - node_id\n      - name\n      - slug\n      - html_url\n      - created_at\n      - updated_at\n      - avatar_url\n    installation:\n      title: Installation\n      description: Installation\n      type: object\n      properties:\n        id:\n          description: The ID of the installation.\n          type: integer\n          example: 1\n        account:\n          nullable: true\n          anyOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n          - \"$ref\": \"#/components/schemas/enterprise\"\n        repository_selection:\n          description: Describe whether all repositories have been selected or there's\n            a selection involved\n          type: string\n          enum:\n          - all\n          - selected\n        access_tokens_url:\n          type: string\n          format: uri\n          example: https://api.github.com/installations/1/access_tokens\n        repositories_url:\n          type: string\n          format: uri\n          example: https://api.github.com/installation/repositories\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/organizations/github/settings/installations/1\n        app_id:\n          type: integer\n          example: 1\n        target_id:\n          description: The ID of the user or organization this token is being scoped\n            to.\n          type: integer\n        target_type:\n          type: string\n          example: Organization\n        permissions:\n          type: object\n          example:\n            issues: read\n            deployments: write\n          properties:\n            deployments:\n              type: string\n            checks:\n              type: string\n            metadata:\n              type: string\n            contents:\n              type: string\n            pull_requests:\n              type: string\n            statuses:\n              type: string\n            issues:\n              type: string\n              example: '\"read\"'\n            organization_administration:\n              type: string\n              example: '\"read\"'\n        events:\n          type: array\n          items:\n            type: string\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        single_file_name:\n          type: string\n          example: config.yml\n          nullable: true\n        app_slug:\n          type: string\n          example: github-actions\n        suspended_by:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        suspended_at:\n          type: string\n          format: date-time\n          nullable: true\n        contact_email:\n          type: string\n          example: '\"test_13f1e99741e3e004@d7e1eb0bc0a1ba12.com\"'\n          nullable: true\n      required:\n      - id\n      - app_id\n      - app_slug\n      - target_id\n      - target_type\n      - single_file_name\n      - repository_selection\n      - access_tokens_url\n      - html_url\n      - repositories_url\n      - events\n      - account\n      - permissions\n      - created_at\n      - updated_at\n    search-result-text-matches:\n      title: Search Result Text Matches\n      type: array\n      items:\n        type: object\n        properties:\n          object_url:\n            type: string\n          object_type:\n            nullable: true\n            type: string\n          property:\n            type: string\n          fragment:\n            type: string\n          matches:\n            type: array\n            items:\n              type: object\n              properties:\n                text:\n                  type: string\n                indices:\n                  type: array\n                  items:\n                    type: integer\n    code-search-result-item:\n      title: Code Search Result Item\n      description: Code Search Result Item\n      type: object\n      properties:\n        name:\n          type: string\n        path:\n          type: string\n        sha:\n          type: string\n        url:\n          type: string\n          format: uri\n        git_url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        score:\n          type: integer\n        file_size:\n          type: integer\n        language:\n          type: string\n          nullable: true\n        last_modified_at:\n          type: string\n          format: date-time\n        line_numbers:\n          type: array\n          items:\n            type: string\n            example:\n            - 73..77\n            - 77..78\n        text_matches:\n          \"$ref\": \"#/components/schemas/search-result-text-matches\"\n      required:\n      - score\n      - name\n      - path\n      - sha\n      - git_url\n      - html_url\n      - url\n      - repository\n    label-search-result-item:\n      title: Label Search Result Item\n      description: Label Search Result Item\n      type: object\n      properties:\n        id:\n          type: integer\n        node_id:\n          type: string\n        url:\n          type: string\n          format: uri\n        name:\n          type: string\n        color:\n          type: string\n        default:\n          type: boolean\n        description:\n          type: string\n          nullable: true\n        score:\n          type: integer\n        text_matches:\n          \"$ref\": \"#/components/schemas/search-result-text-matches\"\n      required:\n      - id\n      - node_id\n      - url\n      - name\n      - color\n      - default\n      - description\n      - score\n    user-search-result-item:\n      title: User Search Result Item\n      description: User Search Result Item\n      type: object\n      properties:\n        login:\n          type: string\n        id:\n          type: integer\n        node_id:\n          type: string\n        avatar_url:\n          type: string\n          format: uri\n        gravatar_id:\n          type: string\n          nullable: true\n        url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        followers_url:\n          type: string\n          format: uri\n        subscriptions_url:\n          type: string\n          format: uri\n        organizations_url:\n          type: string\n          format: uri\n        repos_url:\n          type: string\n          format: uri\n        received_events_url:\n          type: string\n          format: uri\n        type:\n          type: string\n        score:\n          type: integer\n        following_url:\n          type: string\n        gists_url:\n          type: string\n        starred_url:\n          type: string\n        events_url:\n          type: string\n        public_repos:\n          type: integer\n        public_gists:\n          type: integer\n        followers:\n          type: integer\n        following:\n          type: integer\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        name:\n          type: string\n          nullable: true\n        bio:\n          type: string\n          nullable: true\n        email:\n          type: string\n          format: email\n          nullable: true\n        location:\n          type: string\n          nullable: true\n        site_admin:\n          type: boolean\n        hireable:\n          type: boolean\n          nullable: true\n        text_matches:\n          \"$ref\": \"#/components/schemas/search-result-text-matches\"\n        blog:\n          type: string\n          nullable: true\n        company:\n          type: string\n          nullable: true\n        suspended_at:\n          type: string\n          format: date-time\n          nullable: true\n      required:\n      - avatar_url\n      - events_url\n      - followers_url\n      - following_url\n      - gists_url\n      - gravatar_id\n      - html_url\n      - id\n      - node_id\n      - login\n      - organizations_url\n      - received_events_url\n      - repos_url\n      - site_admin\n      - starred_url\n      - subscriptions_url\n      - type\n      - url\n      - score\n    commit-search-result-item:\n      title: Commit Search Result Item\n      description: Commit Search Result Item\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        sha:\n          type: string\n        html_url:\n          type: string\n          format: uri\n        comments_url:\n          type: string\n          format: uri\n        commit:\n          type: object\n          properties:\n            author:\n              type: object\n              properties:\n                name:\n                  type: string\n                email:\n                  type: string\n                date:\n                  type: string\n                  format: date-time\n              required:\n              - name\n              - email\n              - date\n            committer:\n              nullable: true\n              allOf:\n              - \"$ref\": \"#/components/schemas/git-user\"\n            comment_count:\n              type: integer\n            message:\n              type: string\n            tree:\n              type: object\n              properties:\n                sha:\n                  type: string\n                url:\n                  type: string\n                  format: uri\n              required:\n              - sha\n              - url\n            url:\n              type: string\n              format: uri\n            verification:\n              \"$ref\": \"#/components/schemas/verification\"\n          required:\n          - author\n          - committer\n          - comment_count\n          - message\n          - tree\n          - url\n        author:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        committer:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/git-user\"\n        parents:\n          type: array\n          items:\n            type: object\n            properties:\n              url:\n                type: string\n              html_url:\n                type: string\n              sha:\n                type: string\n        repository:\n          \"$ref\": \"#/components/schemas/minimal-repository\"\n        score:\n          type: integer\n        node_id:\n          type: string\n        text_matches:\n          \"$ref\": \"#/components/schemas/search-result-text-matches\"\n      required:\n      - sha\n      - node_id\n      - url\n      - html_url\n      - author\n      - committer\n      - parents\n      - comments_url\n      - commit\n      - repository\n      - score\n    issue-search-result-item:\n      title: Issue Search Result Item\n      description: Issue Search Result Item\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        repository_url:\n          type: string\n          format: uri\n        labels_url:\n          type: string\n        comments_url:\n          type: string\n          format: uri\n        events_url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        id:\n          type: integer\n        node_id:\n          type: string\n        number:\n          type: integer\n        title:\n          type: string\n        locked:\n          type: boolean\n        active_lock_reason:\n          type: string\n          nullable: true\n        assignees:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        labels:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              node_id:\n                type: string\n              url:\n                type: string\n              name:\n                type: string\n              color:\n                type: string\n              default:\n                type: boolean\n              description:\n                type: string\n                nullable: true\n        state:\n          type: string\n        assignee:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        milestone:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/milestone\"\n        comments:\n          type: integer\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        closed_at:\n          type: string\n          format: date-time\n          nullable: true\n        text_matches:\n          \"$ref\": \"#/components/schemas/search-result-text-matches\"\n        pull_request:\n          type: object\n          properties:\n            merged_at:\n              type: string\n              format: date-time\n              nullable: true\n            diff_url:\n              type: string\n              format: uri\n              nullable: true\n            html_url:\n              type: string\n              format: uri\n              nullable: true\n            patch_url:\n              type: string\n              format: uri\n              nullable: true\n            url:\n              type: string\n              format: uri\n              nullable: true\n          required:\n          - diff_url\n          - html_url\n          - patch_url\n          - url\n        body:\n          type: string\n        score:\n          type: integer\n        author_association:\n          type: string\n        draft:\n          type: boolean\n        repository:\n          \"$ref\": \"#/components/schemas/repository\"\n        body_html:\n          type: string\n        body_text:\n          type: string\n        timeline_url:\n          type: string\n          format: uri\n        performed_via_github_app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n      required:\n      - assignee\n      - closed_at\n      - comments\n      - comments_url\n      - events_url\n      - html_url\n      - id\n      - node_id\n      - labels\n      - labels_url\n      - milestone\n      - number\n      - repository_url\n      - state\n      - locked\n      - title\n      - url\n      - user\n      - author_association\n      - created_at\n      - updated_at\n      - score\n    repo-search-result-item:\n      title: Repo Search Result Item\n      description: Repo Search Result Item\n      type: object\n      properties:\n        id:\n          type: integer\n        node_id:\n          type: string\n        name:\n          type: string\n        full_name:\n          type: string\n        owner:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        private:\n          type: boolean\n        html_url:\n          type: string\n          format: uri\n        description:\n          type: string\n          nullable: true\n        fork:\n          type: boolean\n        url:\n          type: string\n          format: uri\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        pushed_at:\n          type: string\n          format: date-time\n        homepage:\n          type: string\n          format: uri\n          nullable: true\n        size:\n          type: integer\n        stargazers_count:\n          type: integer\n        watchers_count:\n          type: integer\n        language:\n          type: string\n          nullable: true\n        forks_count:\n          type: integer\n        open_issues_count:\n          type: integer\n        master_branch:\n          type: string\n        default_branch:\n          type: string\n        score:\n          type: integer\n        forks_url:\n          type: string\n          format: uri\n        keys_url:\n          type: string\n        collaborators_url:\n          type: string\n        teams_url:\n          type: string\n          format: uri\n        hooks_url:\n          type: string\n          format: uri\n        issue_events_url:\n          type: string\n        events_url:\n          type: string\n          format: uri\n        assignees_url:\n          type: string\n        branches_url:\n          type: string\n        tags_url:\n          type: string\n          format: uri\n        blobs_url:\n          type: string\n        git_tags_url:\n          type: string\n        git_refs_url:\n          type: string\n        trees_url:\n          type: string\n        statuses_url:\n          type: string\n        languages_url:\n          type: string\n          format: uri\n        stargazers_url:\n          type: string\n          format: uri\n        contributors_url:\n          type: string\n          format: uri\n        subscribers_url:\n          type: string\n          format: uri\n        subscription_url:\n          type: string\n          format: uri\n        commits_url:\n          type: string\n        git_commits_url:\n          type: string\n        comments_url:\n          type: string\n        issue_comment_url:\n          type: string\n        contents_url:\n          type: string\n        compare_url:\n          type: string\n        merges_url:\n          type: string\n          format: uri\n        archive_url:\n          type: string\n        downloads_url:\n          type: string\n          format: uri\n        issues_url:\n          type: string\n        pulls_url:\n          type: string\n        milestones_url:\n          type: string\n        notifications_url:\n          type: string\n        labels_url:\n          type: string\n        releases_url:\n          type: string\n        deployments_url:\n          type: string\n          format: uri\n        git_url:\n          type: string\n        ssh_url:\n          type: string\n        clone_url:\n          type: string\n        svn_url:\n          type: string\n          format: uri\n        forks:\n          type: integer\n        open_issues:\n          type: integer\n        watchers:\n          type: integer\n        topics:\n          type: array\n          items:\n            type: string\n        mirror_url:\n          type: string\n          format: uri\n          nullable: true\n        has_issues:\n          type: boolean\n        has_projects:\n          type: boolean\n        has_pages:\n          type: boolean\n        has_wiki:\n          type: boolean\n        has_downloads:\n          type: boolean\n        archived:\n          type: boolean\n        disabled:\n          type: boolean\n          description: Returns whether or not this repository disabled.\n        license:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/license-simple\"\n        permissions:\n          type: object\n          properties:\n            admin:\n              type: boolean\n            pull:\n              type: boolean\n            push:\n              type: boolean\n          required:\n          - admin\n          - pull\n          - push\n        text_matches:\n          \"$ref\": \"#/components/schemas/search-result-text-matches\"\n        temp_clone_token:\n          type: string\n        allow_merge_commit:\n          type: boolean\n        allow_squash_merge:\n          type: boolean\n        allow_rebase_merge:\n          type: boolean\n        delete_branch_on_merge:\n          type: boolean\n      required:\n      - archive_url\n      - assignees_url\n      - blobs_url\n      - branches_url\n      - collaborators_url\n      - comments_url\n      - commits_url\n      - compare_url\n      - contents_url\n      - contributors_url\n      - deployments_url\n      - description\n      - downloads_url\n      - events_url\n      - fork\n      - forks_url\n      - full_name\n      - git_commits_url\n      - git_refs_url\n      - git_tags_url\n      - hooks_url\n      - html_url\n      - id\n      - node_id\n      - issue_comment_url\n      - issue_events_url\n      - issues_url\n      - keys_url\n      - labels_url\n      - languages_url\n      - merges_url\n      - milestones_url\n      - name\n      - notifications_url\n      - owner\n      - private\n      - pulls_url\n      - releases_url\n      - stargazers_url\n      - statuses_url\n      - subscribers_url\n      - subscription_url\n      - tags_url\n      - teams_url\n      - trees_url\n      - url\n      - clone_url\n      - default_branch\n      - forks\n      - forks_count\n      - git_url\n      - has_downloads\n      - has_issues\n      - has_projects\n      - has_wiki\n      - has_pages\n      - homepage\n      - language\n      - archived\n      - disabled\n      - mirror_url\n      - open_issues\n      - open_issues_count\n      - license\n      - pushed_at\n      - size\n      - ssh_url\n      - stargazers_count\n      - svn_url\n      - watchers\n      - watchers_count\n      - created_at\n      - updated_at\n      - score\n    topic-search-result-item:\n      title: Topic Search Result Item\n      description: Topic Search Result Item\n      type: object\n      properties:\n        name:\n          type: string\n        display_name:\n          type: string\n          nullable: true\n        short_description:\n          type: string\n          nullable: true\n        description:\n          type: string\n          nullable: true\n        created_by:\n          type: string\n          nullable: true\n        released:\n          type: string\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        featured:\n          type: boolean\n        curated:\n          type: boolean\n        score:\n          type: integer\n        repository_count:\n          type: integer\n          nullable: true\n        logo_url:\n          type: string\n          format: uri\n          nullable: true\n        text_matches:\n          \"$ref\": \"#/components/schemas/search-result-text-matches\"\n        related:\n          type: array\n          nullable: true\n          items:\n            type: object\n            properties:\n              topic_relation:\n                type: object\n                properties:\n                  id:\n                    type: integer\n                  name:\n                    type: string\n                  topic_id:\n                    type: integer\n                  relation_type:\n                    type: string\n        aliases:\n          type: array\n          nullable: true\n          items:\n            type: object\n            properties:\n              topic_relation:\n                type: object\n                properties:\n                  id:\n                    type: integer\n                  name:\n                    type: string\n                  topic_id:\n                    type: integer\n                  relation_type:\n                    type: string\n      required:\n      - name\n      - display_name\n      - short_description\n      - description\n      - created_by\n      - released\n      - created_at\n      - updated_at\n      - featured\n      - curated\n      - score\n    application-grant:\n      title: Application Grant\n      description: The authorization associated with an OAuth Access.\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/applications/grants/1\n        app:\n          type: object\n          properties:\n            client_id:\n              type: string\n            name:\n              type: string\n            url:\n              type: string\n              format: uri\n          required:\n          - client_id\n          - name\n          - url\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T17:26:27Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T20:39:23Z'\n        scopes:\n          type: array\n          items:\n            type: string\n          example:\n          - public_repo\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - app\n      - id\n      - scopes\n      - url\n      - created_at\n      - updated_at\n    scoped-installation:\n      title: Scoped Installation\n      type: object\n      properties:\n        permissions:\n          type: object\n          example:\n            issues: read\n            deployments: write\n        repository_selection:\n          description: Describe whether all repositories have been selected or there's\n            a selection involved\n          type: string\n          enum:\n          - all\n          - selected\n        single_file_name:\n          type: string\n          example: config.yml\n          nullable: true\n        repositories_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/repos\n        account:\n          \"$ref\": \"#/components/schemas/simple-user\"\n      required:\n      - permissions\n      - repository_selection\n      - single_file_name\n      - repositories_url\n      - account\n    authorization:\n      title: Authorization\n      description: The authorization for an OAuth app, GitHub App, or a Personal Access\n        Token.\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/authorizations/1\n        scopes:\n          description: A list of scopes that this authorization is in.\n          type: array\n          items:\n            type: string\n          example:\n          - public_repo\n          - user\n          nullable: true\n        token:\n          type: string\n          example: ''\n        token_last_eight:\n          type: string\n          example: '12345678'\n          nullable: true\n        hashed_token:\n          type: string\n          example: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n          nullable: true\n        app:\n          type: object\n          properties:\n            client_id:\n              type: string\n            name:\n              type: string\n            url:\n              type: string\n              format: uri\n          required:\n          - client_id\n          - name\n          - url\n        note:\n          type: string\n          example: optional note\n          nullable: true\n        note_url:\n          type: string\n          format: uri\n          example: http://optional/note/url\n          nullable: true\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T20:39:23Z'\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-09-06T17:26:27Z'\n        fingerprint:\n          type: string\n          example: jklmnop12345678\n          nullable: true\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        installation:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/scoped-installation\"\n      required:\n      - app\n      - id\n      - note\n      - note_url\n      - scopes\n      - token\n      - hashed_token\n      - token_last_eight\n      - fingerprint\n      - url\n      - created_at\n      - updated_at\n    code-of-conduct:\n      title: Code Of Conduct\n      description: Code Of Conduct\n      type: object\n      properties:\n        key:\n          type: string\n          example: contributor_covenant\n        name:\n          type: string\n          example: Contributor Covenant\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/codes_of_conduct/contributor_covenant\n        body:\n          type: string\n          example: |\n            # Contributor Covenant Code of Conduct\n\n            ## Our Pledge\n\n            In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\n\n            ## Our Standards\n\n            Examples of behavior that contributes to creating a positive environment include:\n\n            * Using welcoming and inclusive language\n            * Being respectful of differing viewpoints and experiences\n            * Gracefully accepting constructive criticism\n            * Focusing on what is best for the community\n            * Showing empathy towards other community members\n\n            Examples of unacceptable behavior by participants include:\n\n            * The use of sexualized language or imagery and unwelcome sexual attention or advances\n            * Trolling, insulting/derogatory comments, and personal or political attacks\n            * Public or private harassment\n            * Publishing others' private information, such as a physical or electronic address, without explicit permission\n            * Other conduct which could reasonably be considered inappropriate in a professional setting\n\n            ## Our Responsibilities\n\n            Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\n                              to any instances of unacceptable behavior.\n\n            Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\n\n            ## Scope\n\n            This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\n                              posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\n\n            ## Enforcement\n\n            Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\n\n            Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\n\n            ## Attribution\n\n            This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\n\n            [homepage]: http://contributor-covenant.org\n            [version]: http://contributor-covenant.org/version/1/4/\n        html_url:\n          type: string\n          format: uri\n          nullable: true\n      required:\n      - url\n      - html_url\n      - key\n      - name\n    gpg-key:\n      title: GPG Key\n      description: A unique encryption key\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 3\n        primary_key_id:\n          type: integer\n          nullable: true\n        key_id:\n          type: string\n          example: 3262EFF25BA0D270\n        public_key:\n          type: string\n          example: xsBNBFayYZ...\n        emails:\n          type: array\n          example:\n          - email: mastahyeti@users.noreply.github.com\n            verified: true\n          items:\n            type: object\n            properties:\n              email:\n                type: string\n              verified:\n                type: boolean\n        subkeys:\n          type: array\n          example:\n          - id: 4\n            primary_key_id: 3\n            key_id: 4A595D4C72EE49C7\n            public_key: zsBNBFayYZ...\n            emails: []\n            subkeys: []\n            can_sign: false\n            can_encrypt_comms: true\n            can_encrypt_storage: true\n            can_certify: false\n            created_at: '2016-03-24T11:31:04-06:00'\n            expires_at: \n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              primary_key_id:\n                type: integer\n              key_id:\n                type: string\n              public_key:\n                type: string\n              emails:\n                type: array\n                items: {}\n              subkeys:\n                type: array\n                items: {}\n              can_sign:\n                type: boolean\n              can_encrypt_comms:\n                type: boolean\n              can_encrypt_storage:\n                type: boolean\n              can_certify:\n                type: boolean\n              created_at:\n                type: string\n              expires_at:\n                type: string\n                nullable: true\n              raw_key:\n                type: string\n                nullable: true\n        can_sign:\n          type: boolean\n          example: true\n        can_encrypt_comms:\n          type: boolean\n        can_encrypt_storage:\n          type: boolean\n        can_certify:\n          type: boolean\n          example: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2016-03-24T11:31:04-06:00'\n        expires_at:\n          type: string\n          format: date-time\n          nullable: true\n        raw_key:\n          type: string\n          nullable: true\n      required:\n      - id\n      - primary_key_id\n      - key_id\n      - raw_key\n      - public_key\n      - created_at\n      - expires_at\n      - can_sign\n      - can_encrypt_comms\n      - can_encrypt_storage\n      - can_certify\n      - emails\n      - subkeys\n    key:\n      title: Key\n      description: Key\n      type: object\n      properties:\n        key_id:\n          type: string\n        key:\n          type: string\n        id:\n          type: integer\n        url:\n          type: string\n        title:\n          type: string\n        created_at:\n          type: string\n          format: date-time\n        verified:\n          type: boolean\n        read_only:\n          type: boolean\n    email:\n      title: Email\n      description: Email\n      oneOf:\n      - type: object\n        properties:\n          email:\n            type: string\n            format: email\n            example: octocat@github.com\n          primary:\n            type: boolean\n            example: true\n          verified:\n            type: boolean\n            example: true\n          visibility:\n            type: string\n            example: public\n            nullable: true\n        required:\n        - email\n        - primary\n        - verified\n        - visibility\n      - type: string\n    private-user:\n      title: Private User\n      description: Private User\n      type: object\n      properties:\n        login:\n          type: string\n          example: octocat\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDQ6VXNlcjE=\n        avatar_url:\n          type: string\n          format: uri\n          example: https://github.com/images/error/octocat_happy.gif\n        gravatar_id:\n          type: string\n          example: ''\n          nullable: true\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat\n        followers_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/followers\n        following_url:\n          type: string\n          example: https://api.github.com/users/octocat/following{/other_user}\n        gists_url:\n          type: string\n          example: https://api.github.com/users/octocat/gists{/gist_id}\n        starred_url:\n          type: string\n          example: https://api.github.com/users/octocat/starred{/owner}{/repo}\n        subscriptions_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/subscriptions\n        organizations_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/orgs\n        repos_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/repos\n        events_url:\n          type: string\n          example: https://api.github.com/users/octocat/events{/privacy}\n        received_events_url:\n          type: string\n          format: uri\n          example: https://api.github.com/users/octocat/received_events\n        type:\n          type: string\n          example: User\n        site_admin:\n          type: boolean\n        name:\n          type: string\n          example: monalisa octocat\n          nullable: true\n        company:\n          type: string\n          example: GitHub\n          nullable: true\n        blog:\n          type: string\n          example: https://github.com/blog\n          nullable: true\n        location:\n          type: string\n          example: San Francisco\n          nullable: true\n        email:\n          type: string\n          format: email\n          example: octocat@github.com\n          nullable: true\n        hireable:\n          type: boolean\n          nullable: true\n        bio:\n          type: string\n          example: There once was...\n          nullable: true\n        twitter_username:\n          type: string\n          example: monalisa\n          nullable: true\n        public_repos:\n          type: integer\n          example: 2\n        public_gists:\n          type: integer\n          example: 1\n        followers:\n          type: integer\n          example: 20\n        following:\n          type: integer\n          example: 0\n        created_at:\n          type: string\n          format: date-time\n          example: '2008-01-14T04:33:35Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2008-01-14T04:33:35Z'\n        private_gists:\n          type: integer\n          example: 81\n        total_private_repos:\n          type: integer\n          example: 100\n        owned_private_repos:\n          type: integer\n          example: 100\n        disk_usage:\n          type: integer\n          example: 10000\n        collaborators:\n          type: integer\n          example: 8\n        two_factor_authentication:\n          type: boolean\n          example: true\n        plan:\n          type: object\n          properties:\n            collaborators:\n              type: integer\n            name:\n              type: string\n            space:\n              type: integer\n            private_repos:\n              type: integer\n          required:\n          - collaborators\n          - name\n          - space\n          - private_repos\n        suspended_at:\n          type: string\n          format: date-time\n          nullable: true\n        business_plus:\n          type: boolean\n        ldap_dn:\n          type: string\n      required:\n      - avatar_url\n      - events_url\n      - followers_url\n      - following_url\n      - gists_url\n      - gravatar_id\n      - html_url\n      - id\n      - node_id\n      - login\n      - organizations_url\n      - received_events_url\n      - repos_url\n      - site_admin\n      - starred_url\n      - subscriptions_url\n      - type\n      - url\n      - bio\n      - blog\n      - company\n      - email\n      - followers\n      - following\n      - hireable\n      - location\n      - name\n      - public_gists\n      - public_repos\n      - created_at\n      - updated_at\n      - collaborators\n      - disk_usage\n      - owned_private_repos\n      - private_gists\n      - total_private_repos\n      - two_factor_authentication\n    public-user:\n      title: Public User\n      description: Public User\n      type: object\n      properties:\n        login:\n          type: string\n        id:\n          type: integer\n        node_id:\n          type: string\n        avatar_url:\n          type: string\n          format: uri\n        gravatar_id:\n          type: string\n          nullable: true\n        url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        followers_url:\n          type: string\n          format: uri\n        following_url:\n          type: string\n        gists_url:\n          type: string\n        starred_url:\n          type: string\n        subscriptions_url:\n          type: string\n          format: uri\n        organizations_url:\n          type: string\n          format: uri\n        repos_url:\n          type: string\n          format: uri\n        events_url:\n          type: string\n        received_events_url:\n          type: string\n          format: uri\n        type:\n          type: string\n        site_admin:\n          type: boolean\n        name:\n          type: string\n          nullable: true\n        company:\n          type: string\n          nullable: true\n        blog:\n          type: string\n          nullable: true\n        location:\n          type: string\n          nullable: true\n        email:\n          type: string\n          format: email\n          nullable: true\n        hireable:\n          type: boolean\n          nullable: true\n        bio:\n          type: string\n          nullable: true\n        twitter_username:\n          type: string\n          nullable: true\n        public_repos:\n          type: integer\n        public_gists:\n          type: integer\n        followers:\n          type: integer\n        following:\n          type: integer\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        plan:\n          type: object\n          properties:\n            collaborators:\n              type: integer\n            name:\n              type: string\n            space:\n              type: integer\n            private_repos:\n              type: integer\n          required:\n          - collaborators\n          - name\n          - space\n          - private_repos\n        suspended_at:\n          type: string\n          format: date-time\n          nullable: true\n        private_gists:\n          type: integer\n          example: '0'\n        total_private_repos:\n          type: integer\n          example: '0'\n        owned_private_repos:\n          type: integer\n          example: '0'\n        disk_usage:\n          type: integer\n          example: '0'\n        collaborators:\n          type: integer\n          example: '0'\n      required:\n      - avatar_url\n      - events_url\n      - followers_url\n      - following_url\n      - gists_url\n      - gravatar_id\n      - html_url\n      - id\n      - node_id\n      - login\n      - organizations_url\n      - received_events_url\n      - repos_url\n      - site_admin\n      - starred_url\n      - subscriptions_url\n      - type\n      - url\n      - bio\n      - blog\n      - company\n      - email\n      - followers\n      - following\n      - hireable\n      - location\n      - name\n      - public_gists\n      - public_repos\n      - created_at\n      - updated_at\n      additionalProperties: false\n    hovercard:\n      title: Hovercard\n      description: Hovercard\n      type: object\n      properties:\n        contexts:\n          type: array\n          items:\n            type: object\n            properties:\n              message:\n                type: string\n              octicon:\n                type: string\n            required:\n            - message\n            - octicon\n      required:\n      - contexts\n    key-simple:\n      title: Key Simple\n      description: Key Simple\n      type: object\n      properties:\n        id:\n          type: integer\n        key:\n          type: string\n      required:\n      - key\n      - id\n    team-project:\n      title: Team Project\n      description: A team's access to a project.\n      type: object\n      properties:\n        owner_url:\n          type: string\n        url:\n          type: string\n        html_url:\n          type: string\n        columns_url:\n          type: string\n        id:\n          type: integer\n        node_id:\n          type: string\n        name:\n          type: string\n        body:\n          type: string\n          nullable: true\n        number:\n          type: integer\n        state:\n          type: string\n        creator:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        created_at:\n          type: string\n        updated_at:\n          type: string\n        organization_permission:\n          type: string\n        private:\n          type: boolean\n        permissions:\n          type: object\n          properties:\n            read:\n              type: boolean\n            write:\n              type: boolean\n            admin:\n              type: boolean\n    team-discussion-comment:\n      title: Team Discussion Comment\n      description: A reply to a discussion within a team.\n      type: object\n      properties:\n        author:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          description: The main text of the comment.\n          example: I agree with this suggestion.\n          type: string\n        body_html:\n          type: string\n          example: \"<p>Do you like apples?</p>\"\n        body_version:\n          description: The current version of the body content. If provided, this\n            update operation will be rejected if the given version does not match\n            the latest version on the server.\n          example: 0307116bbf7ced493b8d8a346c650b71\n          type: string\n        created_at:\n          type: string\n          format: date-time\n          example: '2018-01-15T23:53:58Z'\n        last_edited_at:\n          type: string\n          format: date-time\n          nullable: true\n        discussion_url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/2403582/discussions/1\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\n        node_id:\n          type: string\n          example: MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\n        number:\n          description: The unique sequence number of a team discussion comment.\n          example: 42\n          type: integer\n        updated_at:\n          type: string\n          format: date-time\n          example: '2018-01-15T23:53:58Z'\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\n      required:\n      - author\n      - body\n      - body_html\n      - body_version\n      - created_at\n      - last_edited_at\n      - discussion_url\n      - html_url\n      - node_id\n      - number\n      - updated_at\n      - url\n    team-discussion:\n      title: Team Discussion\n      description: A team discussion is a persistent record of a free-form conversation\n        within a team.\n      type: object\n      properties:\n        author:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          description: The main text of the discussion.\n          example: Please suggest improvements to our workflow in comments.\n          type: string\n        body_html:\n          type: string\n          example: \"<p>Hi! This is an area for us to collaborate as a team</p>\"\n        body_version:\n          description: The current version of the body content. If provided, this\n            update operation will be rejected if the given version does not match\n            the latest version on the server.\n          example: 0307116bbf7ced493b8d8a346c650b71\n          type: string\n        comments_count:\n          type: integer\n          example: 0\n        comments_url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/2343027/discussions/1/comments\n        created_at:\n          type: string\n          format: date-time\n          example: '2018-01-25T18:56:31Z'\n        last_edited_at:\n          type: string\n          format: date-time\n          nullable: true\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/orgs/github/teams/justice-league/discussions/1\n        node_id:\n          type: string\n          example: MDE0OlRlYW1EaXNjdXNzaW9uMQ==\n        number:\n          description: The unique sequence number of a team discussion.\n          example: 42\n          type: integer\n        pinned:\n          description: Whether or not this discussion should be pinned for easy retrieval.\n          example: true\n          type: boolean\n        private:\n          description: Whether or not this discussion should be restricted to team\n            members and organization administrators.\n          example: true\n          type: boolean\n        team_url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/2343027\n        title:\n          description: The title of the discussion.\n          example: How can we improve our workflow?\n          type: string\n        updated_at:\n          type: string\n          format: date-time\n          example: '2018-01-25T18:56:31Z'\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/2343027/discussions/1\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\n      required:\n      - author\n      - body\n      - body_html\n      - body_version\n      - comments_count\n      - comments_url\n      - created_at\n      - last_edited_at\n      - html_url\n      - pinned\n      - private\n      - node_id\n      - number\n      - team_url\n      - title\n      - updated_at\n      - url\n    team-membership:\n      title: Team Membership\n      description: Team Membership\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        role:\n          description: The role of the user in the team.\n          enum:\n          - member\n          - maintainer\n          default: member\n          example: member\n          type: string\n        state:\n          type: string\n      required:\n      - role\n      - state\n      - url\n    organization:\n      title: Organization\n      description: GitHub account for managing multiple users, teams, and repositories\n      type: object\n      properties:\n        login:\n          description: Unique login name of the organization\n          example: new-org\n          type: string\n        url:\n          description: URL for the organization\n          example: https://api.github.com/orgs/github\n          type: string\n          format: uri\n        id:\n          type: integer\n        node_id:\n          type: string\n        repos_url:\n          type: string\n          format: uri\n        events_url:\n          type: string\n          format: uri\n        hooks_url:\n          type: string\n        issues_url:\n          type: string\n        members_url:\n          type: string\n        public_members_url:\n          type: string\n        avatar_url:\n          type: string\n        description:\n          type: string\n          nullable: true\n        blog:\n          description: Display blog url for the organization\n          example: blog.example-org.com\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        name:\n          description: Display name for the organization\n          example: New Org\n          type: string\n        company:\n          description: Display company name for the organization\n          example: Acme corporation\n          type: string\n        location:\n          description: Display location for the organization\n          example: Berlin, Germany\n          type: string\n        email:\n          description: Display email for the organization\n          example: org@example.com\n          type: string\n          format: email\n        has_organization_projects:\n          description: Specifies if organization projects are enabled for this org\n          type: boolean\n        has_repository_projects:\n          description: Specifies if repository projects are enabled for repositories\n            that belong to this org\n          type: boolean\n        is_verified:\n          type: boolean\n        public_repos:\n          type: integer\n        public_gists:\n          type: integer\n        followers:\n          type: integer\n        following:\n          type: integer\n        type:\n          type: string\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        plan:\n          type: object\n          properties:\n            name:\n              type: string\n            space:\n              type: integer\n            private_repos:\n              type: integer\n            filled_seats:\n              type: integer\n            seats:\n              type: integer\n      required:\n      - login\n      - url\n      - id\n      - node_id\n      - repos_url\n      - events_url\n      - hooks_url\n      - issues_url\n      - members_url\n      - public_members_url\n      - avatar_url\n      - description\n      - html_url\n      - has_organization_projects\n      - has_repository_projects\n      - public_repos\n      - public_gists\n      - followers\n      - following\n      - type\n      - created_at\n      - updated_at\n    team-full:\n      title: Full Team\n      description: Groups of organization members that gives permissions on specified\n        repositories.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the team\n          example: 42\n          type: integer\n        node_id:\n          type: string\n          example: MDQ6VGVhbTE=\n        url:\n          description: URL for the team\n          example: https://api.github.com/organizations/1/team/1\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/orgs/rails/teams/core\n        name:\n          description: Name of the team\n          example: Developers\n          type: string\n        slug:\n          type: string\n          example: justice-league\n        description:\n          type: string\n          example: A great team.\n          nullable: true\n        privacy:\n          description: The level of privacy this team should have\n          type: string\n          enum:\n          - closed\n          - secret\n          example: closed\n        permission:\n          description: Permission that the team will have for its repositories\n          example: push\n          type: string\n        members_url:\n          type: string\n          example: https://api.github.com/organizations/1/team/1/members{/member}\n        repositories_url:\n          type: string\n          format: uri\n          example: https://api.github.com/organizations/1/team/1/repos\n        parent:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/team-simple\"\n        members_count:\n          type: integer\n          example: 3\n        repos_count:\n          type: integer\n          example: 10\n        created_at:\n          type: string\n          format: date-time\n          example: '2017-07-14T16:53:42Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2017-08-17T12:37:15Z'\n        organization:\n          \"$ref\": \"#/components/schemas/organization\"\n        ldap_dn:\n          description: Distinguished Name (DN) that team maps to within LDAP environment\n          example: uid=example,ou=users,dc=github,dc=com\n          type: string\n      required:\n      - id\n      - node_id\n      - url\n      - members_url\n      - name\n      - description\n      - permission\n      - html_url\n      - repositories_url\n      - slug\n      - created_at\n      - updated_at\n      - members_count\n      - repos_count\n      - organization\n    team-2:\n      type: object\n      properties:\n        id:\n          type: integer\n        node_id:\n          type: string\n        url:\n          type: string\n        name:\n          type: string\n        slug:\n          type: string\n        description:\n          type: string\n        privacy:\n          type: string\n        permission:\n          type: string\n        members_url:\n          type: string\n        repositories_url:\n          type: string\n        parent:\n          type: object\n          properties:\n            id:\n              type: integer\n            node_id:\n              type: string\n            url:\n              type: string\n            html_url:\n              type: string\n            name:\n              type: string\n            slug:\n              type: string\n            description:\n              type: string\n            privacy:\n              type: string\n            permission:\n              type: string\n            members_url:\n              type: string\n            repositories_url:\n              type: string\n    pull-request-review-comment:\n      title: Pull Request Review Comment\n      description: Pull Request Review Comments are comments on a portion of the Pull\n        Request's diff.\n      type: object\n      properties:\n        url:\n          description: URL for the pull request review comment\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n          type: string\n        pull_request_review_id:\n          description: The ID of the pull request review to which the comment belongs.\n          example: 42\n          type: integer\n          nullable: true\n        id:\n          description: The ID of the pull request review comment.\n          example: 1\n          type: integer\n        node_id:\n          description: The node ID of the pull request review comment.\n          type: string\n          example: MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\n        diff_hunk:\n          description: The diff of the line that the comment refers to.\n          type: string\n          example: \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\"\n        path:\n          description: The relative path of the file to which the comment applies.\n          example: config/database.yml\n          type: string\n        position:\n          description: The line index in the diff to which the comment applies.\n          example: 1\n          type: integer\n        original_position:\n          description: The index of the original line in the diff to which the comment\n            applies.\n          example: 4\n          type: integer\n        commit_id:\n          description: The SHA of the commit to which the comment applies.\n          example: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          type: string\n        original_commit_id:\n          description: The SHA of the original commit to which the comment applies.\n          example: 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\n          type: string\n        in_reply_to_id:\n          description: The comment ID to reply to.\n          example: 8\n          type: integer\n        user:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          description: The text of the comment.\n          example: We should probably include a check for null values here.\n          type: string\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-14T16:00:49Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-04-14T16:00:49Z'\n        html_url:\n          description: HTML URL for the pull request review comment.\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n        pull_request_url:\n          description: URL for the pull request that the review comment belongs to.\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        author_association:\n          description: How the author of the comment is associated with the pull request.\n          type: string\n          example: ''\n        _links:\n          type: object\n          properties:\n            self:\n              type: object\n              properties:\n                href:\n                  type: string\n                  format: uri\n                  example: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n              required:\n              - href\n            html:\n              type: object\n              properties:\n                href:\n                  type: string\n                  format: uri\n                  example: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n              required:\n              - href\n            pull_request:\n              type: object\n              properties:\n                href:\n                  type: string\n                  format: uri\n                  example: https://api.github.com/repos/octocat/Hello-World/pulls/1\n              required:\n              - href\n          required:\n          - self\n          - html\n          - pull_request\n        start_line:\n          type: integer\n          description: The first line of the range for a multi-line comment.\n          example: 2\n          nullable: true\n        original_start_line:\n          type: integer\n          description: The first line of the range for a multi-line comment.\n          example: 2\n          nullable: true\n        start_side:\n          type: string\n          description: The side of the first line of the range for a multi-line comment.\n          enum:\n          - LEFT\n          - RIGHT\n          default: RIGHT\n          nullable: true\n        line:\n          description: The line of the blob to which the comment applies. The last\n            line of the range for a multi-line comment\n          example: 2\n          type: integer\n        original_line:\n          description: The line of the blob to which the comment applies. The last\n            line of the range for a multi-line comment\n          example: 2\n          type: integer\n        side:\n          description: The side of the diff to which the comment applies. The side\n            of the last line of the range for a multi-line comment\n          enum:\n          - LEFT\n          - RIGHT\n          default: RIGHT\n          type: string\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\n        body_html:\n          type: string\n          example: '\"<p>comment body</p>\"'\n        body_text:\n          type: string\n          example: '\"comment body\"'\n      required:\n      - url\n      - id\n      - node_id\n      - pull_request_review_id\n      - diff_hunk\n      - path\n      - position\n      - original_position\n      - commit_id\n      - original_commit_id\n      - user\n      - body\n      - created_at\n      - updated_at\n      - html_url\n      - pull_request_url\n      - author_association\n      - _links\n    pull-request-review:\n      title: Pull Request Review\n      description: Pull Request Reviews are reviews on pull requests.\n      type: object\n      properties:\n        id:\n          description: Unique identifier of the review\n          example: 42\n          type: integer\n        node_id:\n          type: string\n          example: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          description: The text of the review.\n          example: This looks great.\n          type: string\n        state:\n          type: string\n          example: CHANGES_REQUESTED\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n        pull_request_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        _links:\n          type: object\n          properties:\n            html:\n              type: object\n              properties:\n                href:\n                  type: string\n              required:\n              - href\n            pull_request:\n              type: object\n              properties:\n                href:\n                  type: string\n              required:\n              - href\n          required:\n          - html\n          - pull_request\n        submitted_at:\n          type: string\n          format: date-time\n        commit_id:\n          description: A commit SHA for the review.\n          example: 54bb654c9e6025347f57900a4a5c2313a96b8035\n          type: string\n        body_html:\n          type: string\n        body_text:\n          type: string\n        author_association:\n          type: string\n      required:\n      - id\n      - node_id\n      - user\n      - body\n      - state\n      - commit_id\n      - html_url\n      - pull_request_url\n      - _links\n      - author_association\n    pull-request-review-request:\n      title: Pull Request Review Request\n      description: Pull Request Review Request\n      type: object\n      properties:\n        users:\n          type: array\n          items:\n            type: object\n            properties:\n              login:\n                type: string\n              id:\n                type: integer\n              node_id:\n                type: string\n              avatar_url:\n                type: string\n              gravatar_id:\n                type: string\n              url:\n                type: string\n              html_url:\n                type: string\n              followers_url:\n                type: string\n              following_url:\n                type: string\n              gists_url:\n                type: string\n              starred_url:\n                type: string\n              subscriptions_url:\n                type: string\n              organizations_url:\n                type: string\n              repos_url:\n                type: string\n              events_url:\n                type: string\n              received_events_url:\n                type: string\n              type:\n                type: string\n              site_admin:\n                type: boolean\n        teams:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              node_id:\n                type: string\n              url:\n                type: string\n              html_url:\n                type: string\n              name:\n                type: string\n              slug:\n                type: string\n              description:\n                type: string\n                nullable: true\n              privacy:\n                type: string\n              permission:\n                type: string\n              members_url:\n                type: string\n              repositories_url:\n                type: string\n              parent:\n                type: string\n                nullable: true\n    pull-request:\n      type: object\n      title: Pull Request\n      description: Pull requests let you tell others about changes you've pushed to\n        a repository on GitHub. Once a pull request is sent, interested parties can\n        review the set of changes, discuss potential modifications, and even push\n        follow-up commits if necessary.\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDExOlB1bGxSZXF1ZXN0MQ==\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1347\n        diff_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1347.diff\n        patch_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1347.patch\n        issue_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        commits_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n        review_comments_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n        review_comment_url:\n          type: string\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n        comments_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        statuses_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        number:\n          description: Number uniquely identifying the pull request within its repository.\n          example: 42\n          type: integer\n        state:\n          description: State of this Pull Request. Either `open` or `closed`.\n          enum:\n          - open\n          - closed\n          example: open\n          type: string\n        locked:\n          type: boolean\n          example: true\n        title:\n          description: The title of the pull request.\n          example: Amazing new feature\n          type: string\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          type: string\n          example: Please pull these awesome changes\n          nullable: true\n        labels:\n          type: array\n          items:\n            type: object\n            properties:\n              id:\n                type: integer\n              node_id:\n                type: string\n              url:\n                type: string\n              name:\n                type: string\n              description:\n                type: string\n                nullable: true\n              color:\n                type: string\n              default:\n                type: boolean\n        milestone:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/milestone\"\n        active_lock_reason:\n          type: string\n          example: too heated\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n        closed_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n          nullable: true\n        merged_at:\n          type: string\n          format: date-time\n          example: '2011-01-26T19:01:12Z'\n          nullable: true\n        merge_commit_sha:\n          type: string\n          example: e5bd3914e2e596debea16f433f57875b5b90bcd6\n          nullable: true\n        assignee:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        assignees:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        requested_reviewers:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        requested_teams:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/team-simple\"\n          nullable: true\n        head:\n          type: object\n          properties:\n            label:\n              type: string\n            ref:\n              type: string\n            repo:\n              type: object\n              properties:\n                archive_url:\n                  type: string\n                assignees_url:\n                  type: string\n                blobs_url:\n                  type: string\n                branches_url:\n                  type: string\n                collaborators_url:\n                  type: string\n                comments_url:\n                  type: string\n                commits_url:\n                  type: string\n                compare_url:\n                  type: string\n                contents_url:\n                  type: string\n                contributors_url:\n                  type: string\n                  format: uri\n                deployments_url:\n                  type: string\n                  format: uri\n                description:\n                  type: string\n                  nullable: true\n                downloads_url:\n                  type: string\n                  format: uri\n                events_url:\n                  type: string\n                  format: uri\n                fork:\n                  type: boolean\n                forks_url:\n                  type: string\n                  format: uri\n                full_name:\n                  type: string\n                git_commits_url:\n                  type: string\n                git_refs_url:\n                  type: string\n                git_tags_url:\n                  type: string\n                hooks_url:\n                  type: string\n                  format: uri\n                html_url:\n                  type: string\n                  format: uri\n                id:\n                  type: integer\n                node_id:\n                  type: string\n                issue_comment_url:\n                  type: string\n                issue_events_url:\n                  type: string\n                issues_url:\n                  type: string\n                keys_url:\n                  type: string\n                labels_url:\n                  type: string\n                languages_url:\n                  type: string\n                  format: uri\n                merges_url:\n                  type: string\n                  format: uri\n                milestones_url:\n                  type: string\n                name:\n                  type: string\n                notifications_url:\n                  type: string\n                owner:\n                  type: object\n                  properties:\n                    avatar_url:\n                      type: string\n                      format: uri\n                    events_url:\n                      type: string\n                    followers_url:\n                      type: string\n                      format: uri\n                    following_url:\n                      type: string\n                    gists_url:\n                      type: string\n                    gravatar_id:\n                      type: string\n                      nullable: true\n                    html_url:\n                      type: string\n                      format: uri\n                    id:\n                      type: integer\n                    node_id:\n                      type: string\n                    login:\n                      type: string\n                    organizations_url:\n                      type: string\n                      format: uri\n                    received_events_url:\n                      type: string\n                      format: uri\n                    repos_url:\n                      type: string\n                      format: uri\n                    site_admin:\n                      type: boolean\n                    starred_url:\n                      type: string\n                    subscriptions_url:\n                      type: string\n                      format: uri\n                    type:\n                      type: string\n                    url:\n                      type: string\n                      format: uri\n                  required:\n                  - avatar_url\n                  - events_url\n                  - followers_url\n                  - following_url\n                  - gists_url\n                  - gravatar_id\n                  - html_url\n                  - id\n                  - node_id\n                  - login\n                  - organizations_url\n                  - received_events_url\n                  - repos_url\n                  - site_admin\n                  - starred_url\n                  - subscriptions_url\n                  - type\n                  - url\n                private:\n                  type: boolean\n                pulls_url:\n                  type: string\n                releases_url:\n                  type: string\n                stargazers_url:\n                  type: string\n                  format: uri\n                statuses_url:\n                  type: string\n                subscribers_url:\n                  type: string\n                  format: uri\n                subscription_url:\n                  type: string\n                  format: uri\n                tags_url:\n                  type: string\n                  format: uri\n                teams_url:\n                  type: string\n                  format: uri\n                trees_url:\n                  type: string\n                url:\n                  type: string\n                  format: uri\n                clone_url:\n                  type: string\n                default_branch:\n                  type: string\n                forks:\n                  type: integer\n                forks_count:\n                  type: integer\n                git_url:\n                  type: string\n                has_downloads:\n                  type: boolean\n                has_issues:\n                  type: boolean\n                has_projects:\n                  type: boolean\n                has_wiki:\n                  type: boolean\n                has_pages:\n                  type: boolean\n                homepage:\n                  type: string\n                  format: uri\n                  nullable: true\n                language:\n                  type: string\n                  nullable: true\n                master_branch:\n                  type: string\n                archived:\n                  type: boolean\n                disabled:\n                  type: boolean\n                mirror_url:\n                  type: string\n                  format: uri\n                  nullable: true\n                open_issues:\n                  type: integer\n                open_issues_count:\n                  type: integer\n                permissions:\n                  type: object\n                  properties:\n                    admin:\n                      type: boolean\n                    pull:\n                      type: boolean\n                    push:\n                      type: boolean\n                  required:\n                  - admin\n                  - pull\n                  - push\n                temp_clone_token:\n                  type: string\n                allow_merge_commit:\n                  type: boolean\n                allow_squash_merge:\n                  type: boolean\n                allow_rebase_merge:\n                  type: boolean\n                license:\n                  type: object\n                  properties:\n                    key:\n                      type: string\n                    name:\n                      type: string\n                    url:\n                      type: string\n                      format: uri\n                      nullable: true\n                    spdx_id:\n                      type: string\n                      nullable: true\n                    node_id:\n                      type: string\n                  required:\n                  - key\n                  - name\n                  - url\n                  - spdx_id\n                  - node_id\n                  nullable: true\n                pushed_at:\n                  type: string\n                  format: date-time\n                size:\n                  type: integer\n                ssh_url:\n                  type: string\n                stargazers_count:\n                  type: integer\n                svn_url:\n                  type: string\n                  format: uri\n                topics:\n                  type: array\n                  items:\n                    type: string\n                watchers:\n                  type: integer\n                watchers_count:\n                  type: integer\n                created_at:\n                  type: string\n                  format: date-time\n                updated_at:\n                  type: string\n                  format: date-time\n              required:\n              - archive_url\n              - assignees_url\n              - blobs_url\n              - branches_url\n              - collaborators_url\n              - comments_url\n              - commits_url\n              - compare_url\n              - contents_url\n              - contributors_url\n              - deployments_url\n              - description\n              - downloads_url\n              - events_url\n              - fork\n              - forks_url\n              - full_name\n              - git_commits_url\n              - git_refs_url\n              - git_tags_url\n              - hooks_url\n              - html_url\n              - id\n              - node_id\n              - issue_comment_url\n              - issue_events_url\n              - issues_url\n              - keys_url\n              - labels_url\n              - languages_url\n              - merges_url\n              - milestones_url\n              - name\n              - notifications_url\n              - owner\n              - private\n              - pulls_url\n              - releases_url\n              - stargazers_url\n              - statuses_url\n              - subscribers_url\n              - subscription_url\n              - tags_url\n              - teams_url\n              - trees_url\n              - url\n              - clone_url\n              - default_branch\n              - forks\n              - forks_count\n              - git_url\n              - has_downloads\n              - has_issues\n              - has_projects\n              - has_wiki\n              - has_pages\n              - homepage\n              - language\n              - archived\n              - disabled\n              - mirror_url\n              - open_issues\n              - open_issues_count\n              - license\n              - pushed_at\n              - size\n              - ssh_url\n              - stargazers_count\n              - svn_url\n              - watchers\n              - watchers_count\n              - created_at\n              - updated_at\n            sha:\n              type: string\n            user:\n              type: object\n              properties:\n                avatar_url:\n                  type: string\n                  format: uri\n                events_url:\n                  type: string\n                followers_url:\n                  type: string\n                  format: uri\n                following_url:\n                  type: string\n                gists_url:\n                  type: string\n                gravatar_id:\n                  type: string\n                  nullable: true\n                html_url:\n                  type: string\n                  format: uri\n                id:\n                  type: integer\n                node_id:\n                  type: string\n                login:\n                  type: string\n                organizations_url:\n                  type: string\n                  format: uri\n                received_events_url:\n                  type: string\n                  format: uri\n                repos_url:\n                  type: string\n                  format: uri\n                site_admin:\n                  type: boolean\n                starred_url:\n                  type: string\n                subscriptions_url:\n                  type: string\n                  format: uri\n                type:\n                  type: string\n                url:\n                  type: string\n                  format: uri\n              required:\n              - avatar_url\n              - events_url\n              - followers_url\n              - following_url\n              - gists_url\n              - gravatar_id\n              - html_url\n              - id\n              - node_id\n              - login\n              - organizations_url\n              - received_events_url\n              - repos_url\n              - site_admin\n              - starred_url\n              - subscriptions_url\n              - type\n              - url\n          required:\n          - label\n          - ref\n          - repo\n          - sha\n          - user\n        base:\n          type: object\n          properties:\n            label:\n              type: string\n            ref:\n              type: string\n            repo:\n              type: object\n              properties:\n                archive_url:\n                  type: string\n                assignees_url:\n                  type: string\n                blobs_url:\n                  type: string\n                branches_url:\n                  type: string\n                collaborators_url:\n                  type: string\n                comments_url:\n                  type: string\n                commits_url:\n                  type: string\n                compare_url:\n                  type: string\n                contents_url:\n                  type: string\n                contributors_url:\n                  type: string\n                  format: uri\n                deployments_url:\n                  type: string\n                  format: uri\n                description:\n                  type: string\n                  nullable: true\n                downloads_url:\n                  type: string\n                  format: uri\n                events_url:\n                  type: string\n                  format: uri\n                fork:\n                  type: boolean\n                forks_url:\n                  type: string\n                  format: uri\n                full_name:\n                  type: string\n                git_commits_url:\n                  type: string\n                git_refs_url:\n                  type: string\n                git_tags_url:\n                  type: string\n                hooks_url:\n                  type: string\n                  format: uri\n                html_url:\n                  type: string\n                  format: uri\n                id:\n                  type: integer\n                node_id:\n                  type: string\n                issue_comment_url:\n                  type: string\n                issue_events_url:\n                  type: string\n                issues_url:\n                  type: string\n                keys_url:\n                  type: string\n                labels_url:\n                  type: string\n                languages_url:\n                  type: string\n                  format: uri\n                merges_url:\n                  type: string\n                  format: uri\n                milestones_url:\n                  type: string\n                name:\n                  type: string\n                notifications_url:\n                  type: string\n                owner:\n                  type: object\n                  properties:\n                    avatar_url:\n                      type: string\n                      format: uri\n                    events_url:\n                      type: string\n                    followers_url:\n                      type: string\n                      format: uri\n                    following_url:\n                      type: string\n                    gists_url:\n                      type: string\n                    gravatar_id:\n                      type: string\n                      nullable: true\n                    html_url:\n                      type: string\n                      format: uri\n                    id:\n                      type: integer\n                    node_id:\n                      type: string\n                    login:\n                      type: string\n                    organizations_url:\n                      type: string\n                      format: uri\n                    received_events_url:\n                      type: string\n                      format: uri\n                    repos_url:\n                      type: string\n                      format: uri\n                    site_admin:\n                      type: boolean\n                    starred_url:\n                      type: string\n                    subscriptions_url:\n                      type: string\n                      format: uri\n                    type:\n                      type: string\n                    url:\n                      type: string\n                      format: uri\n                  required:\n                  - avatar_url\n                  - events_url\n                  - followers_url\n                  - following_url\n                  - gists_url\n                  - gravatar_id\n                  - html_url\n                  - id\n                  - node_id\n                  - login\n                  - organizations_url\n                  - received_events_url\n                  - repos_url\n                  - site_admin\n                  - starred_url\n                  - subscriptions_url\n                  - type\n                  - url\n                private:\n                  type: boolean\n                pulls_url:\n                  type: string\n                releases_url:\n                  type: string\n                stargazers_url:\n                  type: string\n                  format: uri\n                statuses_url:\n                  type: string\n                subscribers_url:\n                  type: string\n                  format: uri\n                subscription_url:\n                  type: string\n                  format: uri\n                tags_url:\n                  type: string\n                  format: uri\n                teams_url:\n                  type: string\n                  format: uri\n                trees_url:\n                  type: string\n                url:\n                  type: string\n                  format: uri\n                clone_url:\n                  type: string\n                default_branch:\n                  type: string\n                forks:\n                  type: integer\n                forks_count:\n                  type: integer\n                git_url:\n                  type: string\n                has_downloads:\n                  type: boolean\n                has_issues:\n                  type: boolean\n                has_projects:\n                  type: boolean\n                has_wiki:\n                  type: boolean\n                has_pages:\n                  type: boolean\n                homepage:\n                  type: string\n                  format: uri\n                  nullable: true\n                language:\n                  type: string\n                  nullable: true\n                master_branch:\n                  type: string\n                archived:\n                  type: boolean\n                disabled:\n                  type: boolean\n                mirror_url:\n                  type: string\n                  format: uri\n                  nullable: true\n                open_issues:\n                  type: integer\n                open_issues_count:\n                  type: integer\n                permissions:\n                  type: object\n                  properties:\n                    admin:\n                      type: boolean\n                    pull:\n                      type: boolean\n                    push:\n                      type: boolean\n                  required:\n                  - admin\n                  - pull\n                  - push\n                temp_clone_token:\n                  type: string\n                allow_merge_commit:\n                  type: boolean\n                allow_squash_merge:\n                  type: boolean\n                allow_rebase_merge:\n                  type: boolean\n                license:\n                  nullable: true\n                  allOf:\n                  - \"$ref\": \"#/components/schemas/license-simple\"\n                pushed_at:\n                  type: string\n                  format: date-time\n                size:\n                  type: integer\n                ssh_url:\n                  type: string\n                stargazers_count:\n                  type: integer\n                svn_url:\n                  type: string\n                  format: uri\n                topics:\n                  type: array\n                  items:\n                    type: string\n                watchers:\n                  type: integer\n                watchers_count:\n                  type: integer\n                created_at:\n                  type: string\n                  format: date-time\n                updated_at:\n                  type: string\n                  format: date-time\n              required:\n              - archive_url\n              - assignees_url\n              - blobs_url\n              - branches_url\n              - collaborators_url\n              - comments_url\n              - commits_url\n              - compare_url\n              - contents_url\n              - contributors_url\n              - deployments_url\n              - description\n              - downloads_url\n              - events_url\n              - fork\n              - forks_url\n              - full_name\n              - git_commits_url\n              - git_refs_url\n              - git_tags_url\n              - hooks_url\n              - html_url\n              - id\n              - node_id\n              - issue_comment_url\n              - issue_events_url\n              - issues_url\n              - keys_url\n              - labels_url\n              - languages_url\n              - merges_url\n              - milestones_url\n              - name\n              - notifications_url\n              - owner\n              - private\n              - pulls_url\n              - releases_url\n              - stargazers_url\n              - statuses_url\n              - subscribers_url\n              - subscription_url\n              - tags_url\n              - teams_url\n              - trees_url\n              - url\n              - clone_url\n              - default_branch\n              - forks\n              - forks_count\n              - git_url\n              - has_downloads\n              - has_issues\n              - has_projects\n              - has_wiki\n              - has_pages\n              - homepage\n              - language\n              - archived\n              - disabled\n              - mirror_url\n              - open_issues\n              - open_issues_count\n              - license\n              - pushed_at\n              - size\n              - ssh_url\n              - stargazers_count\n              - svn_url\n              - watchers\n              - watchers_count\n              - created_at\n              - updated_at\n            sha:\n              type: string\n            user:\n              type: object\n              properties:\n                avatar_url:\n                  type: string\n                  format: uri\n                events_url:\n                  type: string\n                followers_url:\n                  type: string\n                  format: uri\n                following_url:\n                  type: string\n                gists_url:\n                  type: string\n                gravatar_id:\n                  type: string\n                  nullable: true\n                html_url:\n                  type: string\n                  format: uri\n                id:\n                  type: integer\n                node_id:\n                  type: string\n                login:\n                  type: string\n                organizations_url:\n                  type: string\n                  format: uri\n                received_events_url:\n                  type: string\n                  format: uri\n                repos_url:\n                  type: string\n                  format: uri\n                site_admin:\n                  type: boolean\n                starred_url:\n                  type: string\n                subscriptions_url:\n                  type: string\n                  format: uri\n                type:\n                  type: string\n                url:\n                  type: string\n                  format: uri\n              required:\n              - avatar_url\n              - events_url\n              - followers_url\n              - following_url\n              - gists_url\n              - gravatar_id\n              - html_url\n              - id\n              - node_id\n              - login\n              - organizations_url\n              - received_events_url\n              - repos_url\n              - site_admin\n              - starred_url\n              - subscriptions_url\n              - type\n              - url\n          required:\n          - label\n          - ref\n          - repo\n          - sha\n          - user\n        _links:\n          type: object\n          properties:\n            comments:\n              \"$ref\": \"#/components/schemas/link\"\n            commits:\n              \"$ref\": \"#/components/schemas/link\"\n            statuses:\n              \"$ref\": \"#/components/schemas/link\"\n            html:\n              \"$ref\": \"#/components/schemas/link\"\n            issue:\n              \"$ref\": \"#/components/schemas/link\"\n            review_comments:\n              \"$ref\": \"#/components/schemas/link\"\n            review_comment:\n              \"$ref\": \"#/components/schemas/link\"\n            self:\n              \"$ref\": \"#/components/schemas/link\"\n          required:\n          - comments\n          - commits\n          - statuses\n          - html\n          - issue\n          - review_comments\n          - review_comment\n          - self\n        author_association:\n          type: string\n          example: OWNER\n        draft:\n          description: Indicates whether or not the pull request is a draft.\n          example: false\n          type: boolean\n        merged:\n          type: boolean\n        mergeable:\n          type: boolean\n          example: true\n          nullable: true\n        rebaseable:\n          type: boolean\n          example: true\n          nullable: true\n        mergeable_state:\n          type: string\n          example: clean\n        merged_by:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        comments:\n          type: integer\n          example: 10\n        review_comments:\n          type: integer\n          example: 0\n        maintainer_can_modify:\n          description: Indicates whether maintainers can modify the pull request.\n          example: true\n          type: boolean\n        commits:\n          type: integer\n          example: 3\n        additions:\n          type: integer\n          example: 100\n        deletions:\n          type: integer\n          example: 3\n        changed_files:\n          type: integer\n          example: 5\n      required:\n      - _links\n      - assignee\n      - labels\n      - base\n      - body\n      - closed_at\n      - comments_url\n      - commits_url\n      - created_at\n      - diff_url\n      - head\n      - html_url\n      - id\n      - node_id\n      - issue_url\n      - merge_commit_sha\n      - merged_at\n      - milestone\n      - number\n      - patch_url\n      - review_comment_url\n      - review_comments_url\n      - statuses_url\n      - state\n      - locked\n      - title\n      - updated_at\n      - url\n      - user\n      - author_association\n      - additions\n      - changed_files\n      - comments\n      - commits\n      - deletions\n      - mergeable\n      - mergeable_state\n      - merged\n      - maintainer_can_modify\n      - merged_by\n      - review_comments\n    pull-request-merge-result:\n      title: Pull Request Merge Result\n      description: Pull Request Merge Result\n      type: object\n      properties:\n        sha:\n          type: string\n        merged:\n          type: boolean\n        message:\n          type: string\n      required:\n      - merged\n      - message\n      - sha\n    review-comment:\n      title: Legacy Review Comment\n      description: Legacy Review Comment\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n        pull_request_review_id:\n          type: integer\n          example: 42\n          nullable: true\n        id:\n          type: integer\n          example: 10\n        node_id:\n          type: string\n          example: MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\n        diff_hunk:\n          type: string\n          example: \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\"\n        path:\n          type: string\n          example: file1.txt\n        position:\n          type: integer\n          example: 1\n          nullable: true\n        original_position:\n          type: integer\n          example: 4\n        commit_id:\n          type: string\n          example: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        original_commit_id:\n          type: string\n          example: 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\n        in_reply_to_id:\n          type: integer\n          example: 8\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        body:\n          type: string\n          example: Great stuff\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-14T16:00:49Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-04-14T16:00:49Z'\n        html_url:\n          type: string\n          format: uri\n          example: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n        pull_request_url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        author_association:\n          type: string\n        _links:\n          type: object\n          properties:\n            self:\n              \"$ref\": \"#/components/schemas/link\"\n            html:\n              \"$ref\": \"#/components/schemas/link\"\n            pull_request:\n              \"$ref\": \"#/components/schemas/link\"\n          required:\n          - self\n          - html\n          - pull_request\n        body_text:\n          type: string\n        body_html:\n          type: string\n        side:\n          description: The side of the first line of the range for a multi-line comment.\n          enum:\n          - LEFT\n          - RIGHT\n          default: RIGHT\n          type: string\n        start_side:\n          type: string\n          description: The side of the first line of the range for a multi-line comment.\n          enum:\n          - LEFT\n          - RIGHT\n          default: RIGHT\n          nullable: true\n        line:\n          description: The line of the blob to which the comment applies. The last\n            line of the range for a multi-line comment\n          example: 2\n          type: integer\n        original_line:\n          description: The original line of the blob to which the comment applies.\n            The last line of the range for a multi-line comment\n          example: 2\n          type: integer\n        start_line:\n          description: The first line of the range for a multi-line comment.\n          example: 2\n          type: integer\n          nullable: true\n        original_start_line:\n          description: The original first line of the range for a multi-line comment.\n          example: 2\n          type: integer\n          nullable: true\n      required:\n      - id\n      - node_id\n      - url\n      - body\n      - diff_hunk\n      - path\n      - position\n      - original_position\n      - commit_id\n      - original_commit_id\n      - user\n      - pull_request_review_id\n      - html_url\n      - pull_request_url\n      - _links\n      - author_association\n      - created_at\n      - updated_at\n    issue:\n      title: Issue\n      description: Issues are a great way to keep track of tasks, enhancements, and\n        bugs for your projects.\n      type: object\n      properties:\n        id:\n          type: integer\n        node_id:\n          type: string\n        url:\n          description: URL for the issue\n          example: https://api.github.com/repositories/42/issues/1\n          type: string\n          format: uri\n        repository_url:\n          type: string\n          format: uri\n        labels_url:\n          type: string\n        comments_url:\n          type: string\n          format: uri\n        events_url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        number:\n          description: Number uniquely identifying the issue within its repository\n          example: 42\n          type: integer\n        state:\n          description: State of the issue; either 'open' or 'closed'\n          example: open\n          type: string\n        title:\n          description: Title of the issue\n          example: Widget creation fails in Safari on OS X 10.8\n          type: string\n        body:\n          description: Contents of the issue\n          example: It looks like the new widget form is broken on Safari. When I try\n            and create the widget, Safari crashes. This is reproducible on 10.8, but\n            not 10.9. Maybe a browser bug?\n          type: string\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        labels:\n          description: Labels to associate with this issue; pass one or more label\n            names to replace the set of labels on this issue; send an empty array\n            to clear all labels from the issue; note that the labels are silently\n            dropped for users without push access to the repository\n          example:\n          - bug\n          - registration\n          type: array\n          items:\n            oneOf:\n            - type: string\n            - type: object\n              properties:\n                id:\n                  type: integer\n                node_id:\n                  type: string\n                url:\n                  type: string\n                  format: uri\n                name:\n                  type: string\n                description:\n                  type: string\n                  nullable: true\n                color:\n                  type: string\n                  nullable: true\n                default:\n                  type: boolean\n        assignee:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        assignees:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/simple-user\"\n          nullable: true\n        milestone:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/milestone\"\n        locked:\n          type: boolean\n        active_lock_reason:\n          type: string\n          nullable: true\n        comments:\n          type: integer\n        pull_request:\n          type: object\n          properties:\n            merged_at:\n              type: string\n              format: date-time\n              nullable: true\n            diff_url:\n              type: string\n              format: uri\n              nullable: true\n            html_url:\n              type: string\n              format: uri\n              nullable: true\n            patch_url:\n              type: string\n              format: uri\n              nullable: true\n            url:\n              type: string\n              format: uri\n              nullable: true\n          required:\n          - diff_url\n          - html_url\n          - patch_url\n          - url\n        closed_at:\n          type: string\n          format: date-time\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        closed_by:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        body_html:\n          type: string\n        body_text:\n          type: string\n        timeline_url:\n          type: string\n          format: uri\n        repository:\n          \"$ref\": \"#/components/schemas/repository\"\n        performed_via_github_app:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/integration\"\n        author_association:\n          type: string\n        reactions:\n          \"$ref\": \"#/components/schemas/reaction-rollup\"\n      required:\n      - assignee\n      - closed_at\n      - comments\n      - comments_url\n      - events_url\n      - html_url\n      - id\n      - node_id\n      - labels\n      - labels_url\n      - milestone\n      - number\n      - repository_url\n      - state\n      - locked\n      - title\n      - url\n      - user\n      - author_association\n      - created_at\n      - updated_at\n    label:\n      title: Label\n      description: Color-coded labels help you categorize and filter your issues (just\n        like labels in Gmail).\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 208045946\n        node_id:\n          type: string\n          example: MDU6TGFiZWwyMDgwNDU5NDY=\n        url:\n          description: URL for the label\n          example: https://api.github.com/repositories/42/labels/bug\n          type: string\n          format: uri\n        name:\n          description: The name of the label.\n          example: bug\n          type: string\n        description:\n          type: string\n          example: Something isn't working\n          nullable: true\n        color:\n          description: '6-character hex code, without the leading #, identifying the\n            color'\n          example: FFFFFF\n          type: string\n        default:\n          type: boolean\n          example: true\n      required:\n      - color\n      - name\n      - id\n      - node_id\n      - default\n      - url\n    issue-event-for-issue:\n      title: Issue Event for Issue\n      description: Issue Event for Issue\n      type: object\n      properties:\n        id:\n          type: integer\n        node_id:\n          type: string\n        url:\n          type: string\n        actor:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        event:\n          type: string\n        commit_id:\n          type: string\n          nullable: true\n        commit_url:\n          type: string\n          nullable: true\n        created_at:\n          type: string\n        sha:\n          type: string\n          example: '\"480d4f47447129f015cb327536c522ca683939a1\"'\n        html_url:\n          type: string\n          example: '\"https://github.com/owner-3906e11a33a3d55ba449d63f/BBB_Private_Repo/commit/480d4f47447129f015cb327536c522ca683939a1\"'\n        message:\n          type: string\n          example: '\"add a bunch of files\"'\n        issue_url:\n          type: string\n          example: '\"https://api.github.com/repos/owner-3906e11a33a3d55ba449d63f/AAA_Public_Repo/issues/1\"'\n        updated_at:\n          type: string\n          example: '\"2020-07-09T00:17:36Z\"'\n        author_association:\n          type: string\n          example: '\"COLLABORATOR\"'\n        body:\n          type: string\n          example: '\":+1:\"'\n        lock_reason:\n          type: string\n          example: '\"off-topic\"'\n        submitted_at:\n          type: string\n          example: '\"2020-07-09T00:17:51Z\"'\n        state:\n          type: string\n          example: '\"commented\"'\n        pull_request_url:\n          type: string\n          example: '\"https://api.github.com/repos/owner-3906e11a33a3d55ba449d63f/AAA_Public_Repo/pulls/2\"'\n        body_html:\n          type: string\n          example: '\"<p>Accusantium fugiat cumque. Autem qui nostrum. Atque quae ullam.</p>\"'\n        body_text:\n          type: string\n          example: '\"Accusantium fugiat cumque. Autem qui nostrum. Atque quae ullam.\"'\n    issue-event-label:\n      title: Issue Event Label\n      description: Issue Event Label\n      type: object\n      properties:\n        name:\n          type: string\n          nullable: true\n        color:\n          type: string\n          nullable: true\n      required:\n      - name\n      - color\n    issue-event-dismissed-review:\n      title: Issue Event Dismissed Review\n      type: object\n      properties:\n        state:\n          type: string\n        review_id:\n          type: integer\n        dismissal_message:\n          type: string\n          nullable: true\n        dismissal_commit_id:\n          type: string\n          nullable: true\n      required:\n      - state\n      - review_id\n      - dismissal_message\n    issue-event-milestone:\n      title: Issue Event Milestone\n      description: Issue Event Milestone\n      type: object\n      properties:\n        title:\n          type: string\n      required:\n      - title\n    issue-event-project-card:\n      title: Issue Event Project Card\n      description: Issue Event Project Card\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        id:\n          type: integer\n        project_url:\n          type: string\n          format: uri\n        project_id:\n          type: integer\n        column_name:\n          type: string\n        previous_column_name:\n          type: string\n      required:\n      - url\n      - id\n      - project_url\n      - project_id\n      - column_name\n    issue-event-rename:\n      title: Issue Event Rename\n      description: Issue Event Rename\n      type: object\n      properties:\n        from:\n          type: string\n        to:\n          type: string\n      required:\n      - from\n      - to\n    issue-event:\n      title: Issue Event\n      description: Issue Event\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDEwOklzc3VlRXZlbnQx\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/repos/octocat/Hello-World/issues/events/1\n        actor:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        event:\n          type: string\n          example: closed\n        commit_id:\n          type: string\n          example: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          nullable: true\n        commit_url:\n          type: string\n          example: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          nullable: true\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-14T16:00:49Z'\n        issue:\n          \"$ref\": \"#/components/schemas/issue-simple\"\n        label:\n          \"$ref\": \"#/components/schemas/issue-event-label\"\n        assignee:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        assigner:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        review_requester:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        requested_reviewer:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        requested_team:\n          \"$ref\": \"#/components/schemas/team\"\n        dismissed_review:\n          \"$ref\": \"#/components/schemas/issue-event-dismissed-review\"\n        milestone:\n          \"$ref\": \"#/components/schemas/issue-event-milestone\"\n        project_card:\n          \"$ref\": \"#/components/schemas/issue-event-project-card\"\n        rename:\n          \"$ref\": \"#/components/schemas/issue-event-rename\"\n        author_association:\n          type: string\n        lock_reason:\n          type: string\n          nullable: true\n      required:\n      - id\n      - node_id\n      - url\n      - actor\n      - event\n      - commit_id\n      - commit_url\n      - created_at\n    content-reference-attachment:\n      title: ContentReferenceAttachment\n      description: Content Reference attachments allow you to provide context around\n        URLs posted in comments\n      type: object\n      properties:\n        id:\n          description: The ID of the attachment\n          example: 21\n          type: integer\n        title:\n          description: The title of the attachment\n          example: Title of the attachment\n          type: string\n          maxLength: 1024\n        body:\n          description: The body of the attachment\n          example: Body of the attachment\n          type: string\n          maxLength: 262144\n        node_id:\n          description: The node_id of the content attachment\n          example: MDE3OkNvbnRlbnRBdHRhY2htZW50MjE=\n          type: string\n      required:\n      - id\n      - title\n      - body\n    installation-token:\n      title: Installation Token\n      description: Authentication token for a GitHub App installed on a user or org.\n      type: object\n      properties:\n        token:\n          type: string\n        expires_at:\n          type: string\n        permissions:\n          type: object\n          properties:\n            issues:\n              type: string\n            contents:\n              type: string\n            metadata:\n              type: string\n              example: read\n            single_file:\n              type: string\n              example: read\n        repository_selection:\n          type: string\n          enum:\n          - all\n          - selected\n        repositories:\n          type: array\n          items:\n            \"$ref\": \"#/components/schemas/repository\"\n        single_file:\n          type: string\n          example: README.md\n    base-gist:\n      title: Base Gist\n      description: Base Gist\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n        forks_url:\n          type: string\n          format: uri\n        commits_url:\n          type: string\n          format: uri\n        id:\n          type: string\n        node_id:\n          type: string\n        git_pull_url:\n          type: string\n          format: uri\n        git_push_url:\n          type: string\n          format: uri\n        html_url:\n          type: string\n          format: uri\n        files:\n          type: object\n          additionalProperties:\n            type: object\n            properties:\n              filename:\n                type: string\n              type:\n                type: string\n              language:\n                type: string\n              raw_url:\n                type: string\n              size:\n                type: integer\n        public:\n          type: boolean\n        created_at:\n          type: string\n          format: date-time\n        updated_at:\n          type: string\n          format: date-time\n        description:\n          type: string\n          nullable: true\n        comments:\n          type: integer\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        comments_url:\n          type: string\n          format: uri\n        owner:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        truncated:\n          type: boolean\n        forks:\n          type: array\n          items: {}\n        history:\n          type: array\n          items: {}\n      required:\n      - id\n      - node_id\n      - url\n      - forks_url\n      - commits_url\n      - git_pull_url\n      - git_push_url\n      - html_url\n      - comments_url\n      - public\n      - description\n      - comments\n      - user\n      - files\n      - created_at\n      - updated_at\n    gist-comment:\n      title: Gist Comment\n      description: A comment made to a gist.\n      type: object\n      properties:\n        id:\n          type: integer\n          example: 1\n        node_id:\n          type: string\n          example: MDExOkdpc3RDb21tZW50MQ==\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\n        body:\n          description: The comment text.\n          type: string\n          maxLength: 65535\n          example: Body of the attachment\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        created_at:\n          type: string\n          format: date-time\n          example: '2011-04-18T23:23:56Z'\n        updated_at:\n          type: string\n          format: date-time\n          example: '2011-04-18T23:23:56Z'\n        author_association:\n          type: string\n      required:\n      - url\n      - id\n      - node_id\n      - user\n      - body\n      - author_association\n      - created_at\n      - updated_at\n    gist-simple:\n      title: Gist Simple\n      description: Gist Simple\n      type: object\n      properties:\n        url:\n          type: string\n        forks_url:\n          type: string\n        commits_url:\n          type: string\n        id:\n          type: string\n        node_id:\n          type: string\n        git_pull_url:\n          type: string\n        git_push_url:\n          type: string\n        html_url:\n          type: string\n        files:\n          type: object\n          additionalProperties:\n            nullable: true\n            type: object\n            properties:\n              filename:\n                type: string\n              type:\n                type: string\n              language:\n                type: string\n              raw_url:\n                type: string\n              size:\n                type: integer\n              truncated:\n                type: boolean\n              content:\n                type: string\n        public:\n          type: boolean\n        created_at:\n          type: string\n        updated_at:\n          type: string\n        description:\n          type: string\n          nullable: true\n        comments:\n          type: integer\n        user:\n          type: string\n          nullable: true\n        comments_url:\n          type: string\n        owner:\n          \"$ref\": \"#/components/schemas/simple-user\"\n        truncated:\n          type: boolean\n    gist-full:\n      title: Gist Full\n      description: Gist Full\n      allOf:\n      - \"$ref\": \"#/components/schemas/gist-simple\"\n      - type: object\n        properties:\n          forks:\n            type: array\n            items:\n              type: object\n              properties:\n                user:\n                  type: object\n                  properties:\n                    login:\n                      type: string\n                    id:\n                      type: integer\n                    node_id:\n                      type: string\n                    avatar_url:\n                      type: string\n                    gravatar_id:\n                      type: string\n                    url:\n                      type: string\n                    html_url:\n                      type: string\n                    followers_url:\n                      type: string\n                    following_url:\n                      type: string\n                    gists_url:\n                      type: string\n                    starred_url:\n                      type: string\n                    subscriptions_url:\n                      type: string\n                    organizations_url:\n                      type: string\n                    repos_url:\n                      type: string\n                    events_url:\n                      type: string\n                    received_events_url:\n                      type: string\n                    type:\n                      type: string\n                    site_admin:\n                      type: boolean\n                url:\n                  type: string\n                id:\n                  type: string\n                created_at:\n                  type: string\n                updated_at:\n                  type: string\n          history:\n            type: array\n            items:\n              type: object\n              properties:\n                url:\n                  type: string\n                version:\n                  type: string\n                user:\n                  type: object\n                  properties:\n                    login:\n                      type: string\n                    id:\n                      type: integer\n                    node_id:\n                      type: string\n                    avatar_url:\n                      type: string\n                    gravatar_id:\n                      type: string\n                    url:\n                      type: string\n                    html_url:\n                      type: string\n                    followers_url:\n                      type: string\n                    following_url:\n                      type: string\n                    gists_url:\n                      type: string\n                    starred_url:\n                      type: string\n                    subscriptions_url:\n                      type: string\n                    organizations_url:\n                      type: string\n                    repos_url:\n                      type: string\n                    events_url:\n                      type: string\n                    received_events_url:\n                      type: string\n                    type:\n                      type: string\n                    site_admin:\n                      type: boolean\n                  nullable: true\n                change_status:\n                  type: object\n                  properties:\n                    deletions:\n                      type: integer\n                    additions:\n                      type: integer\n                    total:\n                      type: integer\n                committed_at:\n                  type: string\n          fork_of:\n            nullable: true\n            allOf:\n            - \"$ref\": \"#/components/schemas/gist-simple\"\n          url:\n            type: string\n            example: '\"https://api.github.com/gists/d8de7663c84491ba9eeb9ca1fd20ced8/cb5b95fe0f15ada6d34a421007ba2e4a34e2771e\"'\n          forks_url:\n            type: string\n            example: '\"https://api.github.com/gists/d8de7663c84491ba9eeb9ca1fd20ced8/forks\"'\n          commits_url:\n            type: string\n            example: '\"https://api.github.com/gists/d8de7663c84491ba9eeb9ca1fd20ced8/commits\"'\n          id:\n            type: string\n            example: '\"d8de7663c84491ba9eeb9ca1fd20ced8\"'\n          node_id:\n            type: string\n            example: '\"MDQ6R2lzdGQ4ZGU3NjYzYzg0NDkxYmE5ZWViOWNhMWZkMjBjZWQ4\"'\n          git_pull_url:\n            type: string\n            example: '\"https://gist.github.com/d8de7663c84491ba9eeb9ca1fd20ced8.git\"'\n          git_push_url:\n            type: string\n            example: '\"https://gist.github.com/d8de7663c84491ba9eeb9ca1fd20ced8.git\"'\n          html_url:\n            type: string\n            example: '\"https://gist.github.com/d8de7663c84491ba9eeb9ca1fd20ced8\"'\n          created_at:\n            type: string\n            example: '\"2020-07-09T00:18:06Z\"'\n          updated_at:\n            type: string\n            example: '\"2020-07-09T00:18:06Z\"'\n          description:\n            type: string\n            example: '\"description\"'\n            nullable: true\n          comments:\n            type: integer\n            example: '0'\n          comments_url:\n            type: string\n            example: '\"https://api.github.com/gists/d8de7663c84491ba9eeb9ca1fd20ced8/comments\"'\n    gist-commit:\n      title: Gist Commit\n      description: Gist Commit\n      type: object\n      properties:\n        url:\n          type: string\n          format: uri\n          example: https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\n        version:\n          type: string\n          example: 57a7f021a713b1c5a6a199b54cc514735d2d462f\n        user:\n          nullable: true\n          allOf:\n          - \"$ref\": \"#/components/schemas/simple-user\"\n        change_status:\n          type: object\n          properties:\n            total:\n              type: integer\n            additions:\n              type: integer\n            deletions:\n              type: integer\n        committed_at:\n          type: string\n          format: date-time\n          example: '2010-04-14T02:15:15Z'\n      required:\n      - url\n      - user\n      - version\n      - committed_at\n      - change_status\n    rate-limit:\n      title: Rate Limit\n      type: object\n      properties:\n        limit:\n          type: integer\n        remaining:\n          type: integer\n        reset:\n          type: integer\n      required:\n      - limit\n      - remaining\n      - reset\n    rate-limit-overview:\n      title: Rate Limit Overview\n      description: Rate Limit Overview\n      type: object\n      properties:\n        resources:\n          type: object\n          properties:\n            core:\n              \"$ref\": \"#/components/schemas/rate-limit\"\n            graphql:\n              \"$ref\": \"#/components/schemas/rate-limit\"\n            search:\n              \"$ref\": \"#/components/schemas/rate-limit\"\n            source_import:\n              \"$ref\": \"#/components/schemas/rate-limit\"\n            integration_manifest:\n              \"$ref\": \"#/components/schemas/rate-limit\"\n          required:\n          - core\n          - search\n        rate:\n          \"$ref\": \"#/components/schemas/rate-limit\"\n      required:\n      - rate\n      - resources\n    git-tree:\n      title: Git Tree\n      description: The hierarchy between files in a Git repository.\n      type: object\n      properties:\n        sha:\n          type: string\n        url:\n          type: string\n          format: uri\n        truncated:\n          type: boolean\n        tree:\n          description: Objects specifying a tree structure\n          type: array\n          items:\n            type: object\n            properties:\n              path:\n                type: string\n                example: '\"test/file.rb\"'\n              mode:\n                type: string\n                example: '\"040000\"'\n              type:\n                type: string\n                example: '\"tree\"'\n              sha:\n                type: string\n                example: '\"23f6827669e43831def8a7ad935069c8bd418261\"'\n              size:\n                type: integer\n                example: '12'\n              url:\n                type: string\n                example: '\"https://api.github.com/repos/owner-482f3203ecf01f67e9deb18e/BBB_Private_Repo/git/blobs/23f6827669e43831def8a7ad935069c8bd418261\"'\n          example:\n          - path: file.rb\n            mode: '100644'\n            type: blob\n            size: 30\n            sha: 44b4fc6d56897b048c772eb4087f854f46256132\n            url: https://api.github.com/repos/octocat/Hello-World/git/blobs/44b4fc6d56897b048c772eb4087f854f46256132\n            properties:\n              path:\n                type: string\n              mode:\n                type: string\n              type:\n                type: string\n              size:\n                type: integer\n              sha:\n                type: string\n              url:\n                type: string\n            required:\n            - path\n            - mode\n            - type\n            - sha\n            - url\n            - size\n      required:\n      - sha\n      - url\n      - tree\n      - truncated\n    git-ref:\n      title: Git Reference\n      description: Git references within a repository\n      type: object\n      properties:\n        ref:\n          type: string\n        node_id:\n          type: string\n        url:\n          type: string\n          format: uri\n        object:\n          type: object\n          properties:\n            type:\n              type: string\n            sha:\n              description: SHA for the reference\n              example: 7638417db6d59f3c431d3e1f261cc637155684cd\n              type: string\n              minLength: 40\n              maxLength: 40\n            url:\n              type: string\n              format: uri\n    git-commit:\n      title: Git Commit\n      description: Low-level Git commit operations within a repository\n      type: object\n      properties:\n        sha:\n          description: SHA for the commit\n          example: 7638417db6d59f3c431d3e1f261cc637155684cd\n          type: string\n        node_id:\n          type: string\n        url:\n          type: string\n          format: uri\n        author:\n          description: Identifying information for the git-user\n          type: object\n          properties:\n            date:\n              description: Timestamp of the commit\n              example: '2014-08-09T08:02:04+12:00'\n              format: date-time\n              type: string\n            email:\n              type: string\n              description: Git email address of the user\n              example: monalisa.octocat@example.com\n            name:\n              description: Name of the git user\n              example: Monalisa Octocat\n              type: string\n          required:\n          - email\n          - name\n        committer:\n          description: Identifying information for the git-user\n          type: object\n          properties:\n            date:\n              description: Timestamp of the commit\n              example: '2014-08-09T08:02:04+12:00'\n              format: date-time\n              type: string\n            email:\n              type: string\n              description: Git email address of the user\n              example: monalisa.octocat@example.com\n            name:\n              description: Name of the git user\n              example: Monalisa Octocat\n              type: string\n          required:\n          - email\n          - name\n        message:\n          description: Message describing the purpose of the commit\n          example: 'Fix #42'\n          type: string\n        tree:\n          type: object\n          properties:\n            sha:\n              description: SHA for the commit\n              example: 7638417db6d59f3c431d3e1f261cc637155684cd\n              type: string\n            url:\n              type: string\n              format: uri\n        parents:\n          type: array\n          items:\n            type: object\n            properties:\n              sha:\n                description: SHA for the commit\n                example: 7638417db6d59f3c431d3e1f261cc637155684cd\n                type: string\n              url:\n                type: string\n                format: uri\n              html_url:\n                type: string\n                format: uri\n        verification:\n          type: object\n          properties:\n            verified:\n              type: boolean\n            reason:\n              type: string\n            signature:\n              type: string\n              nullable: true\n            payload:\n              type: string\n              nullable: true\n        html_url:\n          type: string\n          format: uri\n    git-tag:\n      title: Git Tag\n      description: Metadata for a Git tag\n      type: object\n      properties:\n        node_id:\n          type: string\n          example: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\n        tag:\n          description: Name of the tag\n          example: v0.0.1\n          type: string\n        sha:\n          type: string\n          example: 940bd336248efae0f9ee5bc7b2d5c985887b16ac\n        url:\n          description: URL for the tag\n          example: https://api.github.com/repositories/42/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\n          type: string\n          format: uri\n        message:\n          description: Message describing the purpose of the tag\n          example: Initial public release\n          type: string\n        tagger:\n          type: object\n          properties:\n            date:\n              type: string\n            email:\n              type: string\n            name:\n              type: string\n          required:\n          - date\n          - email\n          - name\n        object:\n          type: object\n          properties:\n            sha:\n              type: string\n            type:\n              type: string\n            url:\n              type: string\n              format: uri\n          required:\n          - sha\n          - type\n          - url\n        verification:\n          \"$ref\": \"#/components/schemas/verification\"\n      required:\n      - sha\n      - url\n      - node_id\n      - tagger\n      - object\n      - tag\n      - message\n    short-blob:\n      title: Short Blob\n      description: Short Blob\n      type: object\n      properties:\n        url:\n          type: string\n        sha:\n          type: string\n    blob:\n      title: Blob\n      description: Blob\n      type: object\n      properties:\n        content:\n          type: string\n        encoding:\n          type: string\n        url:\n          type: string\n          format: uri\n        sha:\n          type: string\n        size:\n          type: integer\n          nullable: true\n        node_id:\n          type: string\n        highlighted_content:\n          type: string\n      required:\n      - sha\n      - url\n      - node_id\n      - size\n      - content\n      - encoding\n    gitignore-template:\n      title: Gitignore Template\n      description: Gitignore Template\n      type: object\n      properties:\n        name:\n          type: string\n          example: C\n        source:\n          type: string\n          example: |\n            # Object files\n            *.o\n\n            # Libraries\n            *.lib\n            *.a\n\n            # Shared objects (inc. Windows DLLs)\n            *.dll\n            *.so\n            *.so.*\n            *.dylib\n\n            # Executables\n            *.exe\n            *.out\n            *.app\n      required:\n      - name\n      - source\n    pre-receive-hook:\n      type: object\n      properties:\n        id:\n          type: integer\n        name:\n          type: string\n        enforcement:\n          type: string\n        script:\n          type: string\n        script_repository:\n          type: object\n          properties:\n            id:\n              type: integer\n            full_name:\n              type: string\n            url:\n              type: string\n            html_url:\n              type: string\n        environment:\n          type: object\n          properties:\n            id:\n              type: integer\n            name:\n              type: string\n            image_url:\n              type: string\n            url:\n              type: string\n            html_url:\n              type: string\n            default_environment:\n              type: boolean\n            created_at:\n              type: string\n            hooks_count:\n              type: integer\n            download:\n              type: object\n              properties:\n                url:\n                  type: string\n                state:\n                  type: string\n                downloaded_at:\n                  nullable: true\n                  type: string\n                message:\n                  nullable: true\n                  type: string\n        allow_downstream_configuration:\n          type: boolean\n    ssh-key:\n      type: object\n      properties:\n        key:\n          type: string\n        pretty-print:\n          type: string\n    pre-receive-environment-download-status:\n      type: object\n      properties:\n        url:\n          type: string\n        state:\n          type: string\n        downloaded_at:\n          nullable: true\n          type: string\n        message:\n          nullable: true\n          type: string\n    global-hook-2:\n      type: object\n      properties:\n        type:\n          type: string\n        id:\n          type: integer\n        name:\n          type: string\n        active:\n          type: boolean\n        events:\n          type: array\n          items:\n            type: string\n        config:\n          type: object\n          properties:\n            url:\n              type: string\n            content_type:\n              type: string\n            insecure_ssl:\n              type: string\n        updated_at:\n          type: string\n        created_at:\n          type: string\n        url:\n          type: string\n        ping_url:\n          type: string\n    global-hook:\n      type: object\n      properties:\n        type:\n          type: string\n        id:\n          type: integer\n        name:\n          type: string\n        active:\n          type: boolean\n        events:\n          type: array\n          items:\n            type: string\n        config:\n          type: object\n          properties:\n            url:\n              type: string\n            content_type:\n              type: string\n            insecure_ssl:\n              type: string\n            secret:\n              type: string\n        updated_at:\n          type: string\n        created_at:\n          type: string\n        url:\n          type: string\n        ping_url:\n          type: string\n    enterprise-public-key:\n      type: object\n      properties:\n        id:\n          type: string\n        key_id:\n          type: string\n        key:\n          type: string\n        user_id:\n          nullable: true\n          type: integer\n        repository_id:\n          nullable: true\n          type: integer\n        url:\n          type: string\n    enterprise-overview:\n      type: object\n      properties:\n        repos:\n          type: object\n          properties:\n            total_repos:\n              type: integer\n            root_repos:\n              type: integer\n            fork_repos:\n              type: integer\n            org_repos:\n              type: integer\n            total_pushes:\n              type: integer\n            total_wikis:\n              type: integer\n        hooks:\n          type: object\n          properties:\n            total_hooks:\n              type: integer\n            active_hooks:\n              type: integer\n            inactive_hooks:\n              type: integer\n        pages:\n          type: object\n          properties:\n            total_pages:\n              type: integer\n        orgs:\n          type: object\n          properties:\n            total_orgs:\n              type: integer\n            disabled_orgs:\n              type: integer\n            total_teams:\n              type: integer\n            total_team_members:\n              type: integer\n        users:\n          type: object\n          properties:\n            total_users:\n              type: integer\n            admin_users:\n              type: integer\n            suspended_users:\n              type: integer\n        pulls:\n          type: object\n          properties:\n            total_pulls:\n              type: integer\n            merged_pulls:\n              type: integer\n            mergeable_pulls:\n              type: integer\n            unmergeable_pulls:\n              type: integer\n        issues:\n          type: object\n          properties:\n            total_issues:\n              type: integer\n            open_issues:\n              type: integer\n            closed_issues:\n              type: integer\n        milestones:\n          type: object\n          properties:\n            total_milestones:\n              type: integer\n            open_milestones:\n              type: integer\n            closed_milestones:\n              type: integer\n        gists:\n          type: object\n          properties:\n            total_gists:\n              type: integer\n            private_gists:\n              type: integer\n            public_gists:\n              type: integer\n        comments:\n          type: object\n          properties:\n            total_commit_comments:\n              type: integer\n            total_gist_comments:\n              type: integer\n            total_issue_comments:\n              type: integer\n            total_pull_request_comments:\n              type: integer\n    pre-receive-environment:\n      type: object\n      properties:\n        id:\n          type: integer\n        name:\n          type: string\n        image_url:\n          type: string\n        url:\n          type: string\n        html_url:\n          type: string\n        default_environment:\n          type: boolean\n        created_at:\n          type: string\n        hooks_count:\n          type: integer\n        download:\n          type: object\n          properties:\n            url:\n              type: string\n            state:\n              type: string\n            downloaded_at:\n              nullable: true\n              type: string\n            message:\n              nullable: true\n              type: string\n    enterprise-settings:\n      type: object\n      properties:\n        enterprise:\n          type: object\n          properties:\n            private_mode:\n              type: boolean\n            public_pages:\n              type: boolean\n            subdomain_isolation:\n              type: boolean\n            signup_enabled:\n              type: boolean\n            github_hostname:\n              type: string\n            identicons_host:\n              type: string\n            http_proxy:\n              nullable: true\n              type: string\n            auth_mode:\n              type: string\n            expire_sessions:\n              type: boolean\n            admin_password:\n              nullable: true\n              type: string\n            configuration_id:\n              type: integer\n            configuration_run_count:\n              type: integer\n            avatar:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n                uri:\n                  type: string\n            customer:\n              type: object\n              properties:\n                name:\n                  type: string\n                email:\n                  type: string\n                uuid:\n                  type: string\n                secret_key_data:\n                  type: string\n                public_key_data:\n                  type: string\n            license:\n              type: object\n              properties:\n                seats:\n                  type: integer\n                evaluation:\n                  type: boolean\n                perpetual:\n                  type: boolean\n                unlimited_seating:\n                  type: boolean\n                support_key:\n                  type: string\n                ssh_allowed:\n                  type: boolean\n                cluster_support:\n                  type: boolean\n                expire_at:\n                  type: string\n            github_ssl:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n                cert:\n                  nullable: true\n                  type: string\n                key:\n                  nullable: true\n                  type: string\n            ldap:\n              type: object\n              properties:\n                host:\n                  nullable: true\n                  type: string\n                port:\n                  type: integer\n                base:\n                  type: array\n                  items: {}\n                uid:\n                  nullable: true\n                  type: string\n                bind_dn:\n                  nullable: true\n                  type: string\n                password:\n                  nullable: true\n                  type: string\n                method:\n                  type: string\n                search_strategy:\n                  type: string\n                user_groups:\n                  type: array\n                  items: {}\n                admin_group:\n                  nullable: true\n                  type: string\n                virtual_attribute_enabled:\n                  type: boolean\n                recursive_group_search:\n                  type: boolean\n                posix_support:\n                  type: boolean\n                user_sync_emails:\n                  type: boolean\n                user_sync_keys:\n                  type: boolean\n                user_sync_interval:\n                  type: integer\n                team_sync_interval:\n                  type: integer\n                sync_enabled:\n                  type: boolean\n                reconciliation:\n                  type: object\n                  properties:\n                    user:\n                      nullable: true\n                      type: string\n                    org:\n                      nullable: true\n                      type: string\n                profile:\n                  type: object\n                  properties:\n                    uid:\n                      type: string\n                    name:\n                      nullable: true\n                      type: string\n                    mail:\n                      nullable: true\n                      type: string\n                    key:\n                      nullable: true\n                      type: string\n            cas:\n              type: object\n              properties:\n                url:\n                  nullable: true\n                  type: string\n            saml:\n              type: object\n              properties:\n                sso_url:\n                  nullable: true\n                  type: string\n                certificate:\n                  nullable: true\n                  type: string\n                certificate_path:\n                  nullable: true\n                  type: string\n                issuer:\n                  nullable: true\n                  type: string\n                idp_initiated_sso:\n                  type: boolean\n                disable_admin_demote:\n                  type: boolean\n            github_oauth:\n              type: object\n              properties:\n                client_id:\n                  type: string\n                client_secret:\n                  type: string\n                organization_name:\n                  type: string\n                organization_team:\n                  type: string\n            smtp:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n                address:\n                  type: string\n                authentication:\n                  type: string\n                port:\n                  type: string\n                domain:\n                  type: string\n                username:\n                  type: string\n                user_name:\n                  type: string\n                enable_starttls_auto:\n                  type: boolean\n                password:\n                  type: string\n                discard-to-noreply-address:\n                  type: boolean\n                support_address:\n                  type: string\n                support_address_type:\n                  type: string\n                noreply_address:\n                  type: string\n            ntp:\n              type: object\n              properties:\n                primary_server:\n                  type: string\n                secondary_server:\n                  type: string\n            timezone:\n              nullable: true\n              type: string\n            snmp:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n                community:\n                  type: string\n            syslog:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n                server:\n                  nullable: true\n                  type: string\n                protocol_name:\n                  type: string\n            assets:\n              nullable: true\n              type: string\n            pages:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n            collectd:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n                server:\n                  nullable: true\n                  type: string\n                port:\n                  type: integer\n                encryption:\n                  nullable: true\n                  type: string\n                username:\n                  nullable: true\n                  type: string\n                password:\n                  nullable: true\n                  type: string\n            mapping:\n              type: object\n              properties:\n                enabled:\n                  type: boolean\n                tileserver:\n                  nullable: true\n                  type: string\n                basemap:\n                  type: string\n                token:\n                  nullable: true\n                  type: string\n            load_balancer:\n              nullable: true\n              type: string\n        run_list:\n          type: array\n          items:\n            type: string\n    repository-pre-receive-hook:\n      type: object\n      properties:\n        id:\n          type: integer\n        name:\n          type: string\n        enforcement:\n          type: string\n        configuration_url:\n          type: string\n    maintenance-status:\n      type: object\n      properties:\n        status:\n          type: string\n        scheduled_time:\n          type: string\n        connection_services:\n          type: array\n          items:\n            type: object\n            properties:\n              name:\n                type: string\n              number:\n                type: integer\n            required:\n            - name\n            - number\n    configuration-status:\n      type: object\n      properties:\n        status:\n          type: string\n        progress:\n          type: array\n          items:\n            type: object\n            properties:\n              status:\n                type: string\n              key:\n                type: string\n            required:\n            - status\n            - key\n    ldap-mapping-user:\n      type: object\n      properties:\n        ldap_dn:\n          type: string\n        login:\n          type: string\n        id:\n          type: integer\n        node_id:\n          type: string\n        avatar_url:\n          type: string\n        gravatar_id:\n          type: string\n        url:\n          type: string\n        html_url:\n          type: string\n        followers_url:\n          type: string\n        following_url:\n          type: string\n        gists_url:\n          type: string\n        starred_url:\n          type: string\n        subscriptions_url:\n          type: string\n        organizations_url:\n          type: string\n        repos_url:\n          type: string\n        events_url:\n          type: string\n        received_events_url:\n          type: string\n        type:\n          type: string\n        site_admin:\n          type: boolean\n    org-pre-receive-hook:\n      type: object\n      properties:\n        id:\n          type: integer\n        name:\n          type: string\n        enforcement:\n          type: string\n        configuration_url:\n          type: string\n        allow_downstream_configuration:\n          type: boolean\n    license-info:\n      type: object\n      properties:\n        seats:\n          type: integer\n        seats_used:\n          type: integer\n        seats_available:\n          type: integer\n        kind:\n          type: string\n        days_until_expiration:\n          type: integer\n        expire_at:\n          type: string\n    ldap-mapping-team:\n      type: object\n      properties:\n        ldap_dn:\n          type: string\n        id:\n          type: integer\n        node_id:\n          type: string\n        url:\n          type: string\n        html_url:\n          type: string\n        name:\n          type: string\n        slug:\n          type: string\n        description:\n          type: string\n        privacy:\n          type: string\n        permission:\n          type: string\n        members_url:\n          type: string\n        repositories_url:\n          type: string\n        parent:\n          nullable: true\n  examples:\n    minimal-repository-items:\n      value:\n      - id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: false\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url: https://github.com/octocat/Hello-World.git\n        mirror_url: git:git.example.com/octocat/Hello-World\n        hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url: https://svn.github.com/octocat/Hello-World\n        homepage: https://github.com\n        language: \n        forks_count: 9\n        stargazers_count: 80\n        watchers_count: 80\n        size: 108\n        default_branch: master\n        open_issues_count: 0\n        is_template: true\n        topics:\n        - octocat\n        - atom\n        - electron\n        - api\n        has_issues: true\n        has_projects: true\n        has_wiki: true\n        has_pages: false\n        has_downloads: true\n        archived: false\n        disabled: false\n        visibility: public\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        permissions:\n          admin: false\n          push: false\n          pull: true\n        template_repository: octocat/template\n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        delete_branch_on_merge: true\n        subscribers_count: 42\n        network_count: 0\n        license:\n          key: mit\n          name: MIT License\n          spdx_id: MIT\n          url: https://api.github.com/licenses/mit\n          node_id: MDc6TGljZW5zZW1pdA==\n    repository:\n      value:\n        id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: false\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url: https://github.com/octocat/Hello-World.git\n        mirror_url: git:git.example.com/octocat/Hello-World\n        hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url: https://svn.github.com/octocat/Hello-World\n        homepage: https://github.com\n        language: \n        forks: 9\n        forks_count: 9\n        stargazers_count: 80\n        watchers_count: 80\n        watchers: 80\n        size: 108\n        default_branch: master\n        open_issues: 0\n        open_issues_count: 0\n        is_template: true\n        license:\n          key: mit\n          name: MIT License\n          url: https://api.github.com/licenses/mit\n          spdx_id: MIT\n          node_id: MDc6TGljZW5zZW1pdA==\n          html_url: https://api.github.com/licenses/mit\n        topics:\n        - octocat\n        - atom\n        - electron\n        - api\n        has_issues: true\n        has_projects: true\n        has_wiki: true\n        has_pages: false\n        has_downloads: true\n        archived: false\n        disabled: false\n        visibility: public\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        permissions:\n          admin: false\n          push: false\n          pull: true\n        allow_rebase_merge: true\n        template_repository: \n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        delete_branch_on_merge: true\n        allow_merge_commit: true\n        subscribers_count: 42\n        network_count: 0\n    team-items:\n      value:\n      - id: 1\n        node_id: MDQ6VGVhbTE=\n        url: https://api.github.com/teams/1\n        html_url: https://api.github.com/teams/justice-league\n        name: Justice League\n        slug: justice-league\n        description: A great team.\n        privacy: closed\n        permission: admin\n        members_url: https://api.github.com/teams/1/members{/member}\n        repositories_url: https://api.github.com/teams/1/repos\n        parent: \n    branch-short-items:\n      value:\n      - name: branch_5\n        commit:\n          sha: c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n          url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n        protected: false\n    release-asset:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1\n        browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\n        id: 1\n        node_id: MDEyOlJlbGVhc2VBc3NldDE=\n        name: example.zip\n        label: short description\n        state: uploaded\n        content_type: application/zip\n        size: 1024\n        download_count: 42\n        created_at: '2013-02-27T19:35:32Z'\n        updated_at: '2013-02-27T19:35:32Z'\n        uploader:\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    content-file-response-if-content-is-a-file:\n      summary: Response if content is a file\n      value:\n        type: file\n        encoding: base64\n        size: 5362\n        name: README.md\n        path: README.md\n        content: encoded content ...\n        sha: 3d21ec53a331a6f037a91c368710b99387d012c1\n        url: https://api.github.com/repos/octokit/octokit.rb/contents/README.md\n        git_url: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\n        html_url: https://github.com/octokit/octokit.rb/blob/master/README.md\n        download_url: https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\n        _links:\n          git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\n          self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md\n          html: https://github.com/octokit/octokit.rb/blob/master/README.md\n    content-file-response-if-content-is-a-directory:\n      summary: Response if content is a directory\n      value:\n      - type: file\n        size: 625\n        name: octokit.rb\n        path: lib/octokit.rb\n        sha: fff6fe3a23bf1c8ea0692b4a883af99bee26fd3b\n        url: https://api.github.com/repos/octokit/octokit.rb/contents/lib/octokit.rb\n        git_url: https://api.github.com/repos/octokit/octokit.rb/git/blobs/fff6fe3a23bf1c8ea0692b4a883af99bee26fd3b\n        html_url: https://github.com/octokit/octokit.rb/blob/master/lib/octokit.rb\n        download_url: https://raw.githubusercontent.com/octokit/octokit.rb/master/lib/octokit.rb\n        _links:\n          self: https://api.github.com/repos/octokit/octokit.rb/contents/lib/octokit.rb\n          git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/fff6fe3a23bf1c8ea0692b4a883af99bee26fd3b\n          html: https://github.com/octokit/octokit.rb/blob/master/lib/octokit.rb\n      - type: dir\n        size: 0\n        name: octokit\n        path: lib/octokit\n        sha: a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n        url: https://api.github.com/repos/octokit/octokit.rb/contents/lib/octokit\n        git_url: https://api.github.com/repos/octokit/octokit.rb/git/trees/a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n        html_url: https://github.com/octokit/octokit.rb/tree/master/lib/octokit\n        download_url: \n        _links:\n          self: https://api.github.com/repos/octokit/octokit.rb/contents/lib/octokit\n          git: https://api.github.com/repos/octokit/octokit.rb/git/trees/a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n          html: https://github.com/octokit/octokit.rb/tree/master/lib/octokit\n    content-file-response-if-content-is-a-symlink:\n      summary: Response if content is a symlink\n      value:\n        type: symlink\n        target: \"/path/to/symlink/target\"\n        size: 23\n        name: some-symlink\n        path: bin/some-symlink\n        sha: 452a98979c88e093d682cab404a3ec82babebb48\n        url: https://api.github.com/repos/octokit/octokit.rb/contents/bin/some-symlink\n        git_url: https://api.github.com/repos/octokit/octokit.rb/git/blobs/452a98979c88e093d682cab404a3ec82babebb48\n        html_url: https://github.com/octokit/octokit.rb/blob/master/bin/some-symlink\n        download_url: https://raw.githubusercontent.com/octokit/octokit.rb/master/bin/some-symlink\n        _links:\n          git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/452a98979c88e093d682cab404a3ec82babebb48\n          self: https://api.github.com/repos/octokit/octokit.rb/contents/bin/some-symlink\n          html: https://github.com/octokit/octokit.rb/blob/master/bin/some-symlink\n    content-file-response-if-content-is-a-submodule:\n      summary: Response if content is a submodule\n      value:\n        type: submodule\n        submodule_git_url: git://github.com/jquery/qunit.git\n        size: 0\n        name: qunit\n        path: test/qunit\n        sha: 6ca3721222109997540bd6d9ccd396902e0ad2f9\n        url: https://api.github.com/repos/jquery/jquery/contents/test/qunit?ref=master\n        git_url: https://api.github.com/repos/jquery/qunit/git/trees/6ca3721222109997540bd6d9ccd396902e0ad2f9\n        html_url: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9\n        download_url: \n        _links:\n          git: https://api.github.com/repos/jquery/qunit/git/trees/6ca3721222109997540bd6d9ccd396902e0ad2f9\n          self: https://api.github.com/repos/jquery/jquery/contents/test/qunit?ref=master\n          html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9\n    file-commit-example-for-updating-a-file:\n      value:\n        content:\n          name: hello.txt\n          path: notes/hello.txt\n          sha: a56507ed892d05a37c6d6128c260937ea4d287bd\n          size: 9\n          url: https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\n          html_url: https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\n          git_url: https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\n          download_url: https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\n          type: file\n          _links:\n            self: https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\n            git: https://api.github.com/repos/octocat/Hello-World/git/blobs/a56507ed892d05a37c6d6128c260937ea4d287bd\n            html: https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\n        commit:\n          sha: 18a43cd8e1e3a79c786e3d808a73d23b6d212b16\n          node_id: MDY6Q29tbWl0MThhNDNjZDhlMWUzYTc5Yzc4NmUzZDgwOGE3M2QyM2I2ZDIxMmIxNg==\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\n          html_url: https://github.com/octocat/Hello-World/git/commit/18a43cd8e1e3a79c786e3d808a73d23b6d212b16\n          author:\n            date: '2014-11-07T22:01:45Z'\n            name: Monalisa Octocat\n            email: octocat@github.com\n          committer:\n            date: '2014-11-07T22:01:45Z'\n            name: Monalisa Octocat\n            email: octocat@github.com\n          message: my commit message\n          tree:\n            url: https://api.github.com/repos/octocat/Hello-World/git/trees/9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\n            sha: 9a21f8e2018f42ffcf369b24d2cd20bc25c9e66f\n          parents:\n          - url: https://api.github.com/repos/octocat/Hello-World/git/commits/da5a433788da5c255edad7979b328b67d79f53f6\n            html_url: https://github.com/octocat/Hello-World/git/commit/da5a433788da5c255edad7979b328b67d79f53f6\n            sha: da5a433788da5c255edad7979b328b67d79f53f6\n          verification:\n            verified: false\n            reason: unsigned\n            signature: \n            payload: \n    file-commit-example-for-creating-a-file:\n      value:\n        content:\n          name: hello.txt\n          path: notes/hello.txt\n          sha: 95b966ae1c166bd92f8ae7d1c313e738c731dfc3\n          size: 9\n          url: https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\n          html_url: https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\n          git_url: https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\n          download_url: https://raw.githubusercontent.com/octocat/HelloWorld/master/notes/hello.txt\n          type: file\n          _links:\n            self: https://api.github.com/repos/octocat/Hello-World/contents/notes/hello.txt\n            git: https://api.github.com/repos/octocat/Hello-World/git/blobs/95b966ae1c166bd92f8ae7d1c313e738c731dfc3\n            html: https://github.com/octocat/Hello-World/blob/master/notes/hello.txt\n        commit:\n          sha: 7638417db6d59f3c431d3e1f261cc637155684cd\n          node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\n          html_url: https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\n          author:\n            date: '2014-11-07T22:01:45Z'\n            name: Monalisa Octocat\n            email: octocat@github.com\n          committer:\n            date: '2014-11-07T22:01:45Z'\n            name: Monalisa Octocat\n            email: octocat@github.com\n          message: my commit message\n          tree:\n            url: https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\n            sha: 691272480426f78a0138979dd3ce63b77f706feb\n          parents:\n          - url: https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\n            html_url: https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\n            sha: 1acc419d4d6a9ce985db7be48c6349a0475975b5\n          verification:\n            verified: false\n            reason: unsigned\n            signature: \n            payload: \n    file-commit:\n      value:\n        content: \n        commit:\n          sha: 7638417db6d59f3c431d3e1f261cc637155684cd\n          node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\n          html_url: https://github.com/octocat/Hello-World/git/commit/7638417db6d59f3c431d3e1f261cc637155684cd\n          author:\n            date: '2014-11-07T22:01:45Z'\n            name: Monalisa Octocat\n            email: octocat@github.com\n          committer:\n            date: '2014-11-07T22:01:45Z'\n            name: Monalisa Octocat\n            email: octocat@github.com\n          message: my commit message\n          tree:\n            url: https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\n            sha: 691272480426f78a0138979dd3ce63b77f706feb\n          parents:\n          - url: https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\n            html_url: https://github.com/octocat/Hello-World/git/commit/1acc419d4d6a9ce985db7be48c6349a0475975b5\n            sha: 1acc419d4d6a9ce985db7be48c6349a0475975b5\n          verification:\n            verified: false\n            reason: unsigned\n            signature: \n            payload: \n    topic:\n      value:\n        names:\n        - octocat\n        - atom\n        - electron\n        - api\n    deployment-simple-example:\n      summary: Simple example\n      value:\n        url: https://api.github.com/repos/octocat/example/deployments/1\n        id: 1\n        node_id: MDEwOkRlcGxveW1lbnQx\n        sha: a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n        ref: topic-branch\n        task: deploy\n        payload: {}\n        original_environment: staging\n        environment: production\n        description: Deploy request from hubot\n        creator:\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        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        statuses_url: https://api.github.com/repos/octocat/example/deployments/1/statuses\n        repository_url: https://api.github.com/repos/octocat/example\n        transient_environment: false\n        production_environment: true\n    deployment-advanced-example:\n      summary: Advanced example\n      value:\n        url: https://api.github.com/repos/octocat/example/deployments/1\n        id: 1\n        node_id: MDEwOkRlcGxveW1lbnQx\n        sha: a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n        ref: topic-branch\n        task: deploy\n        payload: {}\n        original_environment: staging\n        environment: production\n        description: Deploy request from hubot\n        creator:\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        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        statuses_url: https://api.github.com/repos/octocat/example/deployments/1/statuses\n        repository_url: https://api.github.com/repos/octocat/example\n        transient_environment: false\n        production_environment: true\n    deployment-items:\n      value:\n      - url: https://api.github.com/repos/octocat/example/deployments/1\n        id: 1\n        node_id: MDEwOkRlcGxveW1lbnQx\n        sha: a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n        ref: topic-branch\n        task: deploy\n        payload: {}\n        original_environment: staging\n        environment: production\n        description: Deploy request from hubot\n        creator:\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        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        statuses_url: https://api.github.com/repos/octocat/example/deployments/1/statuses\n        repository_url: https://api.github.com/repos/octocat/example\n        transient_environment: false\n        production_environment: true\n    page:\n      value:\n        url: https://api.github.com/repos/github/developer.github.com/pages\n        status: built\n        cname: developer.github.com\n        custom_404: false\n        html_url: https://developer.github.com\n        source:\n          branch: master\n          path: \"/\"\n    protected-branch-pull-request-review:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\n        dismissal_restrictions:\n          url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\n          users_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\n          teams_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\n          users:\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          teams:\n          - id: 1\n            node_id: MDQ6VGVhbTE=\n            url: https://api.github.com/teams/1\n            html_url: https://api.github.com/teams/justice-league\n            name: Justice League\n            slug: justice-league\n            description: A great team.\n            privacy: closed\n            permission: admin\n            members_url: https://api.github.com/teams/1/members{/member}\n            repositories_url: https://api.github.com/teams/1/repos\n            parent: \n        dismiss_stale_reviews: true\n        require_code_owner_reviews: true\n        required_approving_review_count: 2\n    status-items:\n      value:\n      - url: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        avatar_url: https://github.com/images/error/hubot_happy.gif\n        id: 1\n        node_id: MDY6U3RhdHVzMQ==\n        state: success\n        description: Build has completed successfully\n        target_url: https://ci.example.com/1000/output\n        context: continuous-integration/jenkins\n        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        creator:\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    commit-comparison:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/compare/master...topic\n        html_url: https://github.com/octocat/Hello-World/compare/master...topic\n        permalink_url: https://github.com/octocat/Hello-World/compare/octocat:bbcd538c8e72b8c175046e27cc8f907076331401...octocat:0328041d1152db8ae77652d1618a02e57f745f17\n        diff_url: https://github.com/octocat/Hello-World/compare/master...topic.diff\n        patch_url: https://github.com/octocat/Hello-World/compare/master...topic.patch\n        base_commit:\n          url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          node_id: MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\n          html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          comments_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\n          commit:\n            url: https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            author:\n              name: Monalisa Octocat\n              email: mona@github.com\n              date: '2011-04-14T16:00:49Z'\n            committer:\n              name: Monalisa Octocat\n              email: mona@github.com\n              date: '2011-04-14T16:00:49Z'\n            message: Fix all the bugs\n            tree:\n              url: https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\n              sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n            comment_count: 0\n            verification:\n              verified: false\n              reason: unsigned\n              signature: \n              payload: \n          author:\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          committer:\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          parents:\n          - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        merge_base_commit:\n          url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          node_id: MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\n          html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          comments_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\n          commit:\n            url: https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            author:\n              name: Monalisa Octocat\n              email: mona@github.com\n              date: '2011-04-14T16:00:49Z'\n            committer:\n              name: Monalisa Octocat\n              email: mona@github.com\n              date: '2011-04-14T16:00:49Z'\n            message: Fix all the bugs\n            tree:\n              url: https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\n              sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n            comment_count: 0\n            verification:\n              verified: false\n              reason: unsigned\n              signature: \n              payload: \n          author:\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          committer:\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          parents:\n          - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        status: behind\n        ahead_by: 1\n        behind_by: 2\n        total_commits: 1\n        commits:\n        - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          node_id: MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\n          html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          comments_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\n          commit:\n            url: https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            author:\n              name: Monalisa Octocat\n              email: mona@github.com\n              date: '2011-04-14T16:00:49Z'\n            committer:\n              name: Monalisa Octocat\n              email: mona@github.com\n              date: '2011-04-14T16:00:49Z'\n            message: Fix all the bugs\n            tree:\n              url: https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\n              sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n            comment_count: 0\n            verification:\n              verified: false\n              reason: unsigned\n              signature: \n              payload: \n          author:\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          committer:\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          parents:\n          - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        files:\n        - sha: bbcd538c8e72b8c175046e27cc8f907076331401\n          filename: file1.txt\n          status: added\n          additions: 103\n          deletions: 21\n          changes: 124\n          blob_url: https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\n          raw_url: https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\n          patch: \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n    pull-request-simple-items:\n      value:\n      - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n        id: 1\n        node_id: MDExOlB1bGxSZXF1ZXN0MQ==\n        html_url: https://github.com/octocat/Hello-World/pull/1347\n        diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n        patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n        issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        commits_url: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n        review_comments_url: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n        review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        number: 1347\n        state: open\n        locked: true\n        title: Amazing new feature\n        user:\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        body: Please pull these awesome changes in!\n        labels:\n        - id: 208045946\n          node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n          url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n          name: bug\n          description: Something isn't working\n          color: f29513\n          default: true\n        milestone:\n          url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n          html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n          labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n          id: 1002604\n          node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n          number: 1\n          state: open\n          title: v1.0\n          description: Tracking milestone for version 1.0\n          creator:\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          open_issues: 4\n          closed_issues: 8\n          created_at: '2011-04-10T20:09:31Z'\n          updated_at: '2014-03-03T18:58:10Z'\n          closed_at: '2013-02-12T13:22:01Z'\n          due_on: '2012-10-09T23:39:01Z'\n        active_lock_reason: too heated\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:01:12Z'\n        closed_at: '2011-01-26T19:01:12Z'\n        merged_at: '2011-01-26T19:01:12Z'\n        merge_commit_sha: e5bd3914e2e596debea16f433f57875b5b90bcd6\n        assignee:\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        assignees:\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        - login: hubot\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/hubot_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/hubot\n          html_url: https://github.com/hubot\n          followers_url: https://api.github.com/users/hubot/followers\n          following_url: https://api.github.com/users/hubot/following{/other_user}\n          gists_url: https://api.github.com/users/hubot/gists{/gist_id}\n          starred_url: https://api.github.com/users/hubot/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/hubot/subscriptions\n          organizations_url: https://api.github.com/users/hubot/orgs\n          repos_url: https://api.github.com/users/hubot/repos\n          events_url: https://api.github.com/users/hubot/events{/privacy}\n          received_events_url: https://api.github.com/users/hubot/received_events\n          type: User\n          site_admin: true\n        requested_reviewers:\n        - login: other_user\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/other_user_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/other_user\n          html_url: https://github.com/other_user\n          followers_url: https://api.github.com/users/other_user/followers\n          following_url: https://api.github.com/users/other_user/following{/other_user}\n          gists_url: https://api.github.com/users/other_user/gists{/gist_id}\n          starred_url: https://api.github.com/users/other_user/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/other_user/subscriptions\n          organizations_url: https://api.github.com/users/other_user/orgs\n          repos_url: https://api.github.com/users/other_user/repos\n          events_url: https://api.github.com/users/other_user/events{/privacy}\n          received_events_url: https://api.github.com/users/other_user/received_events\n          type: User\n          site_admin: false\n        requested_teams:\n        - id: 1\n          node_id: MDQ6VGVhbTE=\n          url: https://api.github.com/teams/1\n          html_url: https://api.github.com/teams/justice-league\n          name: Justice League\n          slug: justice-league\n          description: A great team.\n          privacy: closed\n          permission: admin\n          members_url: https://api.github.com/teams/1/members{/member}\n          repositories_url: https://api.github.com/teams/1/repos\n        head:\n          label: octocat:new-topic\n          ref: new-topic\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          user:\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          repo:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World\n            full_name: octocat/Hello-World\n            owner:\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            private: false\n            html_url: https://github.com/octocat/Hello-World\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World\n            archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World.git\n            mirror_url: git:git.example.com/octocat/Hello-World\n            hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World\n            homepage: https://github.com\n            language: \n            forks_count: 9\n            stargazers_count: 80\n            watchers_count: 80\n            size: 108\n            default_branch: master\n            open_issues_count: 0\n            is_template: true\n            topics:\n            - octocat\n            - atom\n            - electron\n            - api\n            has_issues: true\n            has_projects: true\n            has_wiki: true\n            has_pages: false\n            has_downloads: true\n            archived: false\n            disabled: false\n            visibility: public\n            pushed_at: '2011-01-26T19:06:43Z'\n            created_at: '2011-01-26T19:01:12Z'\n            updated_at: '2011-01-26T19:14:43Z'\n            permissions:\n              admin: false\n              push: false\n              pull: true\n            allow_rebase_merge: true\n            template_repository: \n            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\n            license:\n              key: mit\n              name: MIT License\n              url: https://api.github.com/licenses/mit\n              spdx_id: MIT\n              node_id: MDc6TGljZW5zZW1pdA==\n              html_url: https://github.com/licenses/mit\n            forks: 1\n            open_issues: 1\n            watchers: 1\n        base:\n          label: octocat:master\n          ref: master\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          user:\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          repo:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World\n            full_name: octocat/Hello-World\n            owner:\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            private: false\n            html_url: https://github.com/octocat/Hello-World\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World\n            archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World.git\n            mirror_url: git:git.example.com/octocat/Hello-World\n            hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World\n            homepage: https://github.com\n            language: \n            forks_count: 9\n            stargazers_count: 80\n            watchers_count: 80\n            size: 108\n            default_branch: master\n            open_issues_count: 0\n            is_template: true\n            topics:\n            - octocat\n            - atom\n            - electron\n            - api\n            has_issues: true\n            has_projects: true\n            has_wiki: true\n            has_pages: false\n            has_downloads: true\n            archived: false\n            disabled: false\n            visibility: public\n            pushed_at: '2011-01-26T19:06:43Z'\n            created_at: '2011-01-26T19:01:12Z'\n            updated_at: '2011-01-26T19:14:43Z'\n            permissions:\n              admin: false\n              push: false\n              pull: true\n            allow_rebase_merge: true\n            template_repository: \n            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\n            license:\n              key: mit\n              name: MIT License\n              url: https://api.github.com/licenses/mit\n              spdx_id: MIT\n              node_id: MDc6TGljZW5zZW1pdA==\n              html_url: https://github.com/licenses/mit\n            forks: 1\n            open_issues: 1\n            watchers: 1\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1347\n          issue:\n            href: https://api.github.com/repos/octocat/Hello-World/issues/1347\n          comments:\n            href: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n          review_comments:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n          review_comment:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n          commits:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n          statuses:\n            href: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        author_association: OWNER\n        draft: false\n    protected-branch-admin-enforced-2:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\n        enabled: true\n    deployment-status:\n      value:\n        url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1\n        id: 1\n        node_id: MDE2OkRlcGxveW1lbnRTdGF0dXMx\n        state: success\n        creator:\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        description: Deployment finished successfully.\n        environment: production\n        target_url: https://example.com/deployment/42/output\n        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        deployment_url: https://api.github.com/repos/octocat/example/deployments/42\n        repository_url: https://api.github.com/repos/octocat/example\n        environment_url: https://test-branch.lab.acme.com\n        log_url: https://example.com/deployment/42/output\n    protected-branch-admin-enforced:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures\n        enabled: true\n    simple-user-items:\n      value:\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    deployment:\n      value:\n        url: https://api.github.com/repos/octocat/example/deployments/1\n        id: 1\n        node_id: MDEwOkRlcGxveW1lbnQx\n        sha: a84d88e7554fc1fa21bcbc4efae3c782a70d2b9d\n        ref: topic-branch\n        task: deploy\n        payload: {}\n        original_environment: staging\n        environment: production\n        description: Deploy request from hubot\n        creator:\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        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        statuses_url: https://api.github.com/repos/octocat/example/deployments/1/statuses\n        repository_url: https://api.github.com/repos/octocat/example\n        transient_environment: false\n        production_environment: true\n    public-repository-items:\n      value:\n      - id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: false\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\n    short-branch-items:\n      value:\n      - name: master\n        commit:\n          sha: c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n          url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n        protected: true\n    short-branch-with-protection-items:\n      value:\n      - name: master\n        commit:\n          sha: c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n          url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n        protected: true\n        protection:\n          enabled: true\n          required_status_checks:\n            enforcement_level: non_admins\n            contexts:\n            - ci-test\n            - linter\n        protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection\n    repository-invitation-items:\n      value:\n      - id: 1\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\n        invitee:\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        inviter:\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        permissions: write\n        created_at: '2016-06-13T14:52:50-05:00'\n        url: https://api.github.com/user/repository_invitations/1296269\n        html_url: https://github.com/octocat/Hello-World/invitations\n        node_id: MDQ6VXNlcjE=\n    branch-with-protection:\n      value:\n        name: master\n        commit:\n          sha: 7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\n          node_id: MDY6Q29tbWl0N2ZkMWE2MGIwMWY5MWIzMTRmNTk5NTVhNGU0ZDRlODBkOGVkZjExZA==\n          commit:\n            author:\n              name: The Octocat\n              date: '2012-03-06T15:06:50-08:00'\n              email: octocat@nowhere.com\n            url: https://api.github.com/repos/octocat/Hello-World/git/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\n            message: |-\n              Merge pull request #6 from Spaceghost/patch-1\n\n              New line at end of file.\n            tree:\n              sha: b4eecafa9be2f2006ce1b709d6857b07069b4608\n              url: https://api.github.com/repos/octocat/Hello-World/git/trees/b4eecafa9be2f2006ce1b709d6857b07069b4608\n            committer:\n              name: The Octocat\n              date: '2012-03-06T15:06:50-08:00'\n              email: octocat@nowhere.com\n            verification:\n              verified: false\n              reason: unsigned\n              signature: \n              payload: \n            comment_count: 0\n          author:\n            gravatar_id: ''\n            avatar_url: https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\n            url: https://api.github.com/users/octocat\n            id: 583231\n            login: octocat\n            node_id: MDQ6VXNlcjE=\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: true\n          parents:\n          - sha: 553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\n            url: https://api.github.com/repos/octocat/Hello-World/commits/553c2077f0edc3d5dc5d17262f6aa498e69d6f8e\n          - sha: 762941318ee16e59dabbacb1b4049eec22f0d303\n            url: https://api.github.com/repos/octocat/Hello-World/commits/762941318ee16e59dabbacb1b4049eec22f0d303\n          url: https://api.github.com/repos/octocat/Hello-World/commits/7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\n          committer:\n            gravatar_id: ''\n            avatar_url: https://secure.gravatar.com/avatar/7ad39074b0584bc555d0417ae3e7d974?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png\n            url: https://api.github.com/users/octocat\n            id: 583231\n            login: octocat\n            node_id: MDQ6VXNlcjE=\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: true\n          html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          comments_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\n        _links:\n          html: https://github.com/octocat/Hello-World/tree/master\n          self: https://api.github.com/repos/octocat/Hello-World/branches/master\n        protected: true\n        protection:\n          enabled: true\n          required_status_checks:\n            enforcement_level: non_admins\n            contexts:\n            - ci-test\n            - linter\n        protection_url: https://api.github.com/repos/octocat/hello-world/branches/master/protection\n    deploy-key-items:\n      value:\n      - id: 1\n        key: ssh-rsa AAA...\n        url: https://api.github.com/repos/octocat/Hello-World/keys/1\n        title: octocat@octomac\n        verified: true\n        created_at: '2014-12-10T15:53:42Z'\n        read_only: true\n    deploy-key:\n      value:\n        id: 1\n        key: ssh-rsa AAA...\n        url: https://api.github.com/repos/octocat/Hello-World/keys/1\n        title: octocat@octomac\n        verified: true\n        created_at: '2014-12-10T15:53:42Z'\n        read_only: true\n    page-build:\n      value:\n        url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\n        status: built\n        error:\n          message: \n        pusher:\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        commit: 351391cdcb88ffae71ec3028c91f375a8036a26b\n        duration: 2104\n        created_at: '2014-02-10T19:00:49Z'\n        updated_at: '2014-02-10T19:00:51Z'\n    hook:\n      value:\n        type: Repository\n        id: 12345678\n        name: web\n        active: true\n        events:\n        - push\n        - pull_request\n        config:\n          content_type: json\n          insecure_ssl: '0'\n          url: https://example.com/webhook\n        updated_at: '2019-06-03T00:57:16Z'\n        created_at: '2019-06-03T00:57:16Z'\n        url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678\n        test_url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\n        ping_url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\n        last_response:\n          code: \n          status: unused\n          message: \n    release-items:\n      value:\n      - url: https://api.github.com/repos/octocat/Hello-World/releases/1\n        html_url: https://github.com/octocat/Hello-World/releases/v1.0.0\n        assets_url: https://api.github.com/repos/octocat/Hello-World/releases/1/assets\n        upload_url: https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\n        tarball_url: https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\n        zipball_url: https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\n        id: 1\n        node_id: MDc6UmVsZWFzZTE=\n        tag_name: v1.0.0\n        target_commitish: master\n        name: v1.0.0\n        body: Description of the release\n        draft: false\n        prerelease: false\n        created_at: '2013-02-27T19:35:32Z'\n        published_at: '2013-02-27T19:35:32Z'\n        author:\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        assets:\n        - url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1\n          browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\n          id: 1\n          node_id: MDEyOlJlbGVhc2VBc3NldDE=\n          name: example.zip\n          label: short description\n          state: uploaded\n          content_type: application/zip\n          size: 1024\n          download_count: 42\n          created_at: '2013-02-27T19:35:32Z'\n          updated_at: '2013-02-27T19:35:32Z'\n          uploader:\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    release:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/releases/1\n        html_url: https://github.com/octocat/Hello-World/releases/v1.0.0\n        assets_url: https://api.github.com/repos/octocat/Hello-World/releases/1/assets\n        upload_url: https://uploads.github.com/repos/octocat/Hello-World/releases/1/assets{?name,label}\n        tarball_url: https://api.github.com/repos/octocat/Hello-World/tarball/v1.0.0\n        zipball_url: https://api.github.com/repos/octocat/Hello-World/zipball/v1.0.0\n        id: 1\n        node_id: MDc6UmVsZWFzZTE=\n        tag_name: v1.0.0\n        target_commitish: master\n        name: v1.0.0\n        body: Description of the release\n        draft: false\n        prerelease: false\n        created_at: '2013-02-27T19:35:32Z'\n        published_at: '2013-02-27T19:35:32Z'\n        author:\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        assets:\n        - url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1\n          browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\n          id: 1\n          node_id: MDEyOlJlbGVhc2VBc3NldDE=\n          name: example.zip\n          label: short description\n          state: uploaded\n          content_type: application/zip\n          size: 1024\n          download_count: 42\n          created_at: '2013-02-27T19:35:32Z'\n          updated_at: '2013-02-27T19:35:32Z'\n          uploader:\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    repository-3:\n      value:\n        id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: false\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url: https://github.com/octocat/Hello-World.git\n        mirror_url: git:git.example.com/octocat/Hello-World\n        hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url: https://svn.github.com/octocat/Hello-World\n        homepage: https://github.com\n        language: \n        forks_count: 9\n        forks: 9\n        stargazers_count: 80\n        watchers_count: 80\n        watchers: 80\n        size: 108\n        default_branch: master\n        open_issues_count: 0\n        open_issues: 0\n        is_template: false\n        topics:\n        - octocat\n        - atom\n        - electron\n        - api\n        has_issues: true\n        has_projects: true\n        has_wiki: true\n        has_pages: false\n        has_downloads: true\n        archived: false\n        disabled: false\n        visibility: public\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        permissions:\n          admin: false\n          push: false\n          pull: true\n        allow_rebase_merge: true\n        license:\n          key: mit\n          name: MIT License\n          url: https://api.github.com/licenses/mit\n          spdx_id: MIT\n          node_id: MDc6TGljZW5zZW1pdA==\n          html_url: https://github.com/licenses/mit\n    status-check-policy:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\n        strict: true\n        contexts:\n        - continuous-integration/travis-ci\n        contexts_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\n    full-repository-default-response:\n      summary: Default response\n      value:\n        id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: false\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url: https://github.com/octocat/Hello-World.git\n        mirror_url: git:git.example.com/octocat/Hello-World\n        hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url: https://svn.github.com/octocat/Hello-World\n        homepage: https://github.com\n        language: \n        forks_count: 9\n        forks: 9\n        stargazers_count: 80\n        watchers_count: 80\n        watchers: 80\n        size: 108\n        default_branch: master\n        open_issues_count: 0\n        open_issues: 0\n        is_template: true\n        topics:\n        - octocat\n        - atom\n        - electron\n        - api\n        has_issues: true\n        has_projects: true\n        has_wiki: true\n        has_pages: false\n        has_downloads: true\n        archived: false\n        disabled: false\n        visibility: public\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        permissions:\n          pull: true\n          push: false\n          admin: false\n        allow_rebase_merge: true\n        template_repository: \n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        delete_branch_on_merge: true\n        allow_merge_commit: true\n        subscribers_count: 42\n        network_count: 0\n        license:\n          key: mit\n          name: MIT License\n          spdx_id: MIT\n          url: https://api.github.com/licenses/mit\n          node_id: MDc6TGljZW5zZW1pdA==\n        organization:\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: Organization\n          site_admin: false\n        parent:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://api.github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n        source:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://api.github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    full-repository-response-with-scarlet-witch-preview-media-type:\n      summary: Response with scarlet-witch-preview media type\n      value:\n        id: 88760408\n        node_id: MDEwOlJlcG9zaXRvcnk4ODc2MDQwOA==\n        name: cosee\n        full_name: LindseyB/cosee\n        disabled: false\n        archived: false\n        owner:\n          login: LindseyB\n          id: 33750\n          node_id: MDQ6VXNlcjMzNzUw\n          avatar_url: https://avatars2.githubusercontent.com/u/33750?v=3\n          gravatar_id: ''\n          url: https://api.github.com/users/LindseyB\n          html_url: https://github.com/LindseyB\n          followers_url: https://api.github.com/users/LindseyB/followers\n          following_url: https://api.github.com/users/LindseyB/following{/other_user}\n          gists_url: https://api.github.com/users/LindseyB/gists{/gist_id}\n          starred_url: https://api.github.com/users/LindseyB/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/LindseyB/subscriptions\n          organizations_url: https://api.github.com/users/LindseyB/orgs\n          repos_url: https://api.github.com/users/LindseyB/repos\n          events_url: https://api.github.com/users/LindseyB/events{/privacy}\n          received_events_url: https://api.github.com/users/LindseyB/received_events\n          type: User\n          site_admin: true\n        private: false\n        html_url: https://github.com/LindseyB/cosee\n        description: \n        fork: false\n        license:\n          key: mit\n          name: MIT License\n          url: https://api.github.com/licenses/mit\n          spdx_id: MIT\n          node_id: MDc6TGljZW5zZW1pdA==\n          html_url: https://github.com/licenses/mit\n        url: https://api.github.com/repos/LindseyB/cosee\n        forks_url: https://api.github.com/repos/LindseyB/cosee/forks\n        keys_url: https://api.github.com/repos/LindseyB/cosee/keys{/key_id}\n        collaborators_url: https://api.github.com/repos/LindseyB/cosee/collaborators{/collaborator}\n        teams_url: https://api.github.com/repos/LindseyB/cosee/teams\n        hooks_url: https://api.github.com/repos/LindseyB/cosee/hooks\n        issue_events_url: https://api.github.com/repos/LindseyB/cosee/issues/events{/number}\n        events_url: https://api.github.com/repos/LindseyB/cosee/events\n        assignees_url: https://api.github.com/repos/LindseyB/cosee/assignees{/user}\n        branches_url: https://api.github.com/repos/LindseyB/cosee/branches{/branch}\n        tags_url: https://api.github.com/repos/LindseyB/cosee/tags\n        blobs_url: https://api.github.com/repos/LindseyB/cosee/git/blobs{/sha}\n        git_tags_url: https://api.github.com/repos/LindseyB/cosee/git/tags{/sha}\n        git_refs_url: https://api.github.com/repos/LindseyB/cosee/git/refs{/sha}\n        trees_url: https://api.github.com/repos/LindseyB/cosee/git/trees{/sha}\n        statuses_url: https://api.github.com/repos/LindseyB/cosee/statuses/{sha}\n        languages_url: https://api.github.com/repos/LindseyB/cosee/languages\n        stargazers_url: https://api.github.com/repos/LindseyB/cosee/stargazers\n        contributors_url: https://api.github.com/repos/LindseyB/cosee/contributors\n        subscribers_url: https://api.github.com/repos/LindseyB/cosee/subscribers\n        subscription_url: https://api.github.com/repos/LindseyB/cosee/subscription\n        commits_url: https://api.github.com/repos/LindseyB/cosee/commits{/sha}\n        git_commits_url: https://api.github.com/repos/LindseyB/cosee/git/commits{/sha}\n        comments_url: https://api.github.com/repos/LindseyB/cosee/comments{/number}\n        issue_comment_url: https://api.github.com/repos/LindseyB/cosee/issues/comments{/number}\n        contents_url: https://api.github.com/repos/LindseyB/cosee/contents/{+path}\n        compare_url: https://api.github.com/repos/LindseyB/cosee/compare/{base}...{head}\n        merges_url: https://api.github.com/repos/LindseyB/cosee/merges\n        archive_url: https://api.github.com/repos/LindseyB/cosee/{archive_format}{/ref}\n        downloads_url: https://api.github.com/repos/LindseyB/cosee/downloads\n        issues_url: https://api.github.com/repos/LindseyB/cosee/issues{/number}\n        pulls_url: https://api.github.com/repos/LindseyB/cosee/pulls{/number}\n        milestones_url: https://api.github.com/repos/LindseyB/cosee/milestones{/number}\n        notifications_url: https://api.github.com/repos/LindseyB/cosee/notifications{?since,all,participating}\n        labels_url: https://api.github.com/repos/LindseyB/cosee/labels{/name}\n        releases_url: https://api.github.com/repos/LindseyB/cosee/releases{/id}\n        deployments_url: https://api.github.com/repos/LindseyB/cosee/deployments\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        git_url: git://github.com/LindseyB/cosee.git\n        ssh_url: git@github.com=>LindseyB/cosee.git\n        clone_url: https://github.com/LindseyB/cosee.git\n        svn_url: https://github.com/LindseyB/cosee\n        homepage: \n        size: 1\n        stargazers_count: 0\n        watchers_count: 0\n        language: \n        has_issues: true\n        has_projects: true\n        has_downloads: true\n        has_wiki: true\n        has_pages: false\n        forks_count: 0\n        mirror_url: \n        open_issues_count: 0\n        forks: 0\n        open_issues: 0\n        watchers: 0\n        default_branch: master\n        network_count: 0\n        subscribers_count: 0\n    full-repository:\n      value:\n        id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: false\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url: https://github.com/octocat/Hello-World.git\n        mirror_url: git:git.example.com/octocat/Hello-World\n        hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url: https://svn.github.com/octocat/Hello-World\n        homepage: https://github.com\n        license:\n          key: mit\n          name: MIT License\n          url: https://api.github.com/licenses/mit\n          spdx_id: MIT\n          node_id: MDc6TGljZW5zZW1pdA==\n          html_url: https://github.com/licenses/mit\n        language: \n        forks_count: 9\n        forks: 9\n        stargazers_count: 80\n        watchers_count: 80\n        watchers: 80\n        size: 108\n        default_branch: master\n        open_issues_count: 0\n        open_issues: 0\n        is_template: true\n        topics:\n        - octocat\n        - atom\n        - electron\n        - api\n        has_issues: true\n        has_projects: true\n        has_wiki: true\n        has_pages: false\n        has_downloads: true\n        archived: false\n        disabled: false\n        visibility: public\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        permissions:\n          pull: true\n          push: false\n          admin: false\n        allow_rebase_merge: true\n        template_repository: \n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        delete_branch_on_merge: true\n        allow_merge_commit: true\n        subscribers_count: 42\n        network_count: 0\n        organization:\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: Organization\n          site_admin: false\n        parent:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://api.github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n        source:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://api.github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    branch-restriction-policy:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\n        users_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\n        teams_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\n        apps_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\n        users:\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        teams:\n        - id: 1\n          node_id: MDQ6VGVhbTE=\n          url: https://api.github.com/teams/1\n          html_url: https://api.github.com/teams/justice-league\n          name: Justice League\n          slug: justice-league\n          description: A great team.\n          privacy: closed\n          permission: admin\n          members_url: https://api.github.com/teams/1/members{/member}\n          repositories_url: https://api.github.com/teams/1/repos\n          parent: \n        apps:\n        - id: 1\n          slug: octoapp\n          node_id: MDExOkludGVncmF0aW9uMQ==\n          owner:\n            login: github\n            id: 1\n            node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n            url: https://api.github.com/orgs/github\n            repos_url: https://api.github.com/orgs/github/repos\n            events_url: https://api.github.com/orgs/github/events\n            hooks_url: https://api.github.com/orgs/github/hooks\n            issues_url: https://api.github.com/orgs/github/issues\n            members_url: https://api.github.com/orgs/github/members{/member}\n            public_members_url: https://api.github.com/orgs/github/public_members{/member}\n            avatar_url: https://github.com/images/error/octocat_happy.gif\n            description: A great organization\n          name: Octocat App\n          description: ''\n          external_url: https://example.com\n          html_url: https://github.com/apps/octoapp\n          created_at: '2017-07-08T16:18:44-04:00'\n          updated_at: '2017-07-08T16:18:44-04:00'\n          permissions:\n            metadata: read\n            contents: read\n            issues: write\n            single_file: write\n          events:\n          - push\n          - pull_request\n    branch-protection:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection\n        enabled: true\n        required_status_checks:\n          url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks\n          contexts:\n          - continuous-integration/travis-ci\n          contexts_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks/contexts\n          enforcement_level: non_admins\n        enforce_admins:\n          url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins\n          enabled: true\n        required_pull_request_reviews:\n          url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews\n          dismissal_restrictions:\n            url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions\n            users_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/users\n            teams_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/dismissal_restrictions/teams\n            users:\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            teams:\n            - id: 1\n              node_id: MDQ6VGVhbTE=\n              url: https://api.github.com/teams/1\n              html_url: https://api.github.com/teams/justice-league\n              name: Justice League\n              slug: justice-league\n              description: A great team.\n              privacy: closed\n              permission: admin\n              members_url: https://api.github.com/teams/1/members{/member}\n              repositories_url: https://api.github.com/teams/1/repos\n              parent: \n          dismiss_stale_reviews: true\n          require_code_owner_reviews: true\n          required_approving_review_count: 2\n        restrictions:\n          url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions\n          users_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/users\n          teams_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\n          apps_url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/restrictions/teams\n          users:\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          teams:\n          - id: 1\n            node_id: MDQ6VGVhbTE=\n            url: https://api.github.com/teams/1\n            html_url: https://api.github.com/teams/justice-league\n            name: Justice League\n            slug: justice-league\n            description: A great team.\n            privacy: closed\n            permission: admin\n            members_url: https://api.github.com/teams/1/members{/member}\n            repositories_url: https://api.github.com/teams/1/repos\n            parent: \n          apps:\n          - id: 1\n            slug: octoapp\n            node_id: MDExOkludGVncmF0aW9uMQ==\n            owner:\n              login: github\n              id: 1\n              node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n              url: https://api.github.com/orgs/github\n              repos_url: https://api.github.com/orgs/github/repos\n              events_url: https://api.github.com/orgs/github/events\n              hooks_url: https://api.github.com/orgs/github/hooks\n              issues_url: https://api.github.com/orgs/github/issues\n              members_url: https://api.github.com/orgs/github/members{/member}\n              public_members_url: https://api.github.com/orgs/github/public_members{/member}\n              avatar_url: https://github.com/images/error/octocat_happy.gif\n              description: A great organization\n            name: Octocat App\n            description: ''\n            external_url: https://example.com\n            html_url: https://github.com/apps/octoapp\n            created_at: '2017-07-08T16:18:44-04:00'\n            updated_at: '2017-07-08T16:18:44-04:00'\n            permissions:\n              metadata: read\n              contents: read\n              issues: write\n              single_file: write\n            events:\n            - push\n            - pull_request\n        required_linear_history:\n          enabled: true\n        allow_force_pushes:\n          enabled: true\n        allow_deletions:\n          enabled: true\n    tag-items:\n      value:\n      - name: v0.1\n        commit:\n          sha: c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n          url: https://api.github.com/repos/octocat/Hello-World/commits/c5b97d5ae6c19d5c5df71a34c7fbeeda2479ccbc\n        zipball_url: https://github.com/octocat/Hello-World/zipball/v0.1\n        tarball_url: https://github.com/octocat/Hello-World/tarball/v0.1\n        node_id: MDQ6VXNlcjE=\n    commit-activity-items:\n      value:\n      - days:\n        - 0\n        - 3\n        - 26\n        - 20\n        - 39\n        - 1\n        - 0\n        total: 89\n        week: 1336280400\n    language:\n      value:\n        C: 78769\n        Python: 7769\n    code-frequency-stat-items-2:\n      value:\n      - - 0\n        - 0\n        - 5\n      - - 0\n        - 1\n        - 43\n      - - 0\n        - 2\n        - 21\n    repository-items-default-response:\n      summary: Default response\n      value:\n      - id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: false\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url: https://github.com/octocat/Hello-World.git\n        mirror_url: git:git.example.com/octocat/Hello-World\n        hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url: https://svn.github.com/octocat/Hello-World\n        homepage: https://github.com\n        language: \n        forks_count: 9\n        stargazers_count: 80\n        watchers_count: 80\n        size: 108\n        default_branch: master\n        open_issues_count: 0\n        is_template: true\n        topics:\n        - octocat\n        - atom\n        - electron\n        - api\n        has_issues: true\n        has_projects: true\n        has_wiki: true\n        has_pages: false\n        has_downloads: true\n        archived: false\n        disabled: false\n        visibility: public\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        permissions:\n          admin: false\n          push: false\n          pull: true\n        allow_rebase_merge: true\n        template_repository: \n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        allow_squash_merge: true\n        delete_branch_on_merge: true\n        allow_merge_commit: true\n        subscribers_count: 42\n        network_count: 0\n        license:\n          key: mit\n          name: MIT License\n          url: https://api.github.com/licenses/mit\n          spdx_id: MIT\n          node_id: MDc6TGljZW5zZW1pdA==\n          html_url: https://github.com/licenses/mit\n        forks: 1\n        open_issues: 1\n        watchers: 1\n    page-build-status:\n      value:\n        url: https://api.github.com/repos/github/developer.github.com/pages/builds/latest\n        status: queued\n    page-build-items:\n      value:\n      - url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601\n        status: built\n        error:\n          message: \n        pusher:\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        commit: 351391cdcb88ffae71ec3028c91f375a8036a26b\n        duration: 2104\n        created_at: '2014-02-10T19:00:49Z'\n        updated_at: '2014-02-10T19:00:51Z'\n    repository-invitation-response-when-a-new-invitation-is-created:\n      value:\n        id: 1\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\n        invitee:\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        inviter:\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        permissions: write\n        created_at: '2016-06-13T14:52:50-05:00'\n        url: https://api.github.com/user/repository_invitations/1296269\n        html_url: https://github.com/octocat/Hello-World/invitations\n    minimal-repository-items-2:\n      value:\n      - id: 1296269\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        name: Hello-World\n        full_name: octocat/Hello-World\n        owner:\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        private: false\n        html_url: https://github.com/octocat/Hello-World\n        description: This your first repo!\n        fork: true\n        url: https://api.github.com/repos/octocat/Hello-World\n        archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n        assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n        blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n        branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n        collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n        commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n        compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n        contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n        deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n        downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n        events_url: https://api.github.com/repos/octocat/Hello-World/events\n        forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n        git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n        git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n        git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n        git_url: git:github.com/octocat/Hello-World.git\n        issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n        issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n        issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n        keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n        labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n        languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n        merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n        milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n        notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n        pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n        releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n        ssh_url: git@github.com:octocat/Hello-World.git\n        stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n        subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n        subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n        tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n        teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n        trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n        clone_url: https://github.com/octocat/Hello-World.git\n        mirror_url: git:git.example.com/octocat/Hello-World\n        hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n        svn_url: https://svn.github.com/octocat/Hello-World\n        homepage: https://github.com\n        language: \n        forks_count: 9\n        stargazers_count: 80\n        watchers_count: 80\n        size: 108\n        default_branch: master\n        open_issues_count: 0\n        is_template: true\n        topics:\n        - octocat\n        - atom\n        - electron\n        - api\n        has_issues: true\n        has_projects: true\n        has_wiki: true\n        has_pages: false\n        has_downloads: true\n        archived: false\n        disabled: false\n        visibility: public\n        pushed_at: '2011-01-26T19:06:43Z'\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:14:43Z'\n        permissions:\n          admin: false\n          push: false\n          pull: true\n        temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n        delete_branch_on_merge: true\n        subscribers_count: 42\n        network_count: 0\n        license:\n          key: mit\n          name: MIT License\n          spdx_id: MIT\n          url: https://api.github.com/licenses/mit\n          node_id: MDc6TGljZW5zZW1pdA==\n    release-asset-response-for-successful-upload:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1\n        browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\n        id: 1\n        node_id: MDEyOlJlbGVhc2VBc3NldDE=\n        name: example.zip\n        label: short description\n        state: uploaded\n        content_type: application/zip\n        size: 1024\n        download_count: 42\n        created_at: '2013-02-27T19:35:32Z'\n        updated_at: '2013-02-27T19:35:32Z'\n        uploader:\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    release-asset-items:\n      value:\n      - url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1\n        browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip\n        id: 1\n        node_id: MDEyOlJlbGVhc2VBc3NldDE=\n        name: example.zip\n        label: short description\n        state: uploaded\n        content_type: application/zip\n        size: 1024\n        download_count: 42\n        created_at: '2013-02-27T19:35:32Z'\n        updated_at: '2013-02-27T19:35:32Z'\n        uploader:\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    commit-comment:\n      value:\n        html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\n        url: https://api.github.com/repos/octocat/Hello-World/comments/1\n        id: 1\n        node_id: MDEzOkNvbW1pdENvbW1lbnQx\n        body: Great stuff\n        path: file1.txt\n        position: 4\n        line: 14\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        author_association: collaborator\n        user:\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        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n    commit-comment-2:\n      value:\n        html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\n        url: https://api.github.com/repos/octocat/Hello-World/comments/1\n        id: 1\n        node_id: MDEzOkNvbW1pdENvbW1lbnQx\n        body: Nice change\n        path: file1.txt\n        position: 4\n        line: 14\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        author_association: collaborator\n        user:\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        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n    hook-items:\n      value:\n      - type: Repository\n        id: 12345678\n        name: web\n        active: true\n        events:\n        - push\n        - pull_request\n        config:\n          content_type: json\n          insecure_ssl: '0'\n          url: https://example.com/webhook\n        updated_at: '2019-06-03T00:57:16Z'\n        created_at: '2019-06-03T00:57:16Z'\n        url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678\n        test_url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678/test\n        ping_url: https://api.github.com/repos/octocat/Hello-World/hooks/12345678/pings\n        last_response:\n          code: \n          status: unused\n          message: \n    commit-comment-items:\n      value:\n      - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1\n        url: https://api.github.com/repos/octocat/Hello-World/comments/1\n        id: 1\n        node_id: MDEzOkNvbW1pdENvbW1lbnQx\n        body: Great stuff\n        path: file1.txt\n        position: 4\n        line: 14\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        user:\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        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        author_association: collaborator\n    participation-stats:\n      value:\n        all:\n        - 11\n        - 21\n        - 15\n        - 2\n        - 8\n        - 1\n        - 8\n        - 23\n        - 17\n        - 21\n        - 11\n        - 10\n        - 33\n        - 91\n        - 38\n        - 34\n        - 22\n        - 23\n        - 32\n        - 3\n        - 43\n        - 87\n        - 71\n        - 18\n        - 13\n        - 5\n        - 13\n        - 16\n        - 66\n        - 27\n        - 12\n        - 45\n        - 110\n        - 117\n        - 13\n        - 8\n        - 18\n        - 9\n        - 19\n        - 26\n        - 39\n        - 12\n        - 20\n        - 31\n        - 46\n        - 91\n        - 45\n        - 10\n        - 24\n        - 9\n        - 29\n        - 7\n        owner:\n        - 3\n        - 2\n        - 3\n        - 0\n        - 2\n        - 0\n        - 5\n        - 14\n        - 7\n        - 9\n        - 1\n        - 5\n        - 0\n        - 48\n        - 19\n        - 2\n        - 0\n        - 1\n        - 10\n        - 2\n        - 23\n        - 40\n        - 35\n        - 8\n        - 8\n        - 2\n        - 10\n        - 6\n        - 30\n        - 0\n        - 2\n        - 9\n        - 53\n        - 104\n        - 3\n        - 3\n        - 10\n        - 4\n        - 7\n        - 11\n        - 21\n        - 4\n        - 4\n        - 22\n        - 26\n        - 63\n        - 11\n        - 2\n        - 14\n        - 1\n        - 10\n        - 3\n    simple-commit-items:\n      value:\n      - id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        tree_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        message: Fix all the bugs\n        timestamp: '2016-10-10T00:00:00Z'\n        author:\n          name: Monalisa Octocat\n          email: mona@github.com\n        committer:\n          name: Monalisa Octocat\n          email: mona@github.com\n      - id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        tree_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        message: Fix all the bugs\n        timestamp: '2016-10-10T00:00:00Z'\n        author:\n          name: Monalisa Octocat\n          email: mona@github.com\n        committer:\n          name: Monalisa Octocat\n          email: mona@github.com\n    integration-items:\n      value:\n      - id: 1\n        slug: octoapp\n        node_id: MDExOkludGVncmF0aW9uMQ==\n        owner:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          gravatar_id: ''\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          received_events_url: https://api.github.com/users/octocat/received_events\n          type: User\n          site_admin: true\n        name: Octocat App\n        description: ''\n        external_url: https://example.com\n        html_url: https://github.com/apps/octoapp\n        created_at: '2017-07-08T16:18:44-04:00'\n        updated_at: '2017-07-08T16:18:44-04:00'\n        permissions:\n          metadata: read\n          contents: read\n          issues: write\n          single_file: write\n        events:\n        - push\n        - pull_request\n    repository-invitation:\n      value:\n        id: 1\n        node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\n        invitee:\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        inviter:\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        permissions: write\n        created_at: '2016-06-13T14:52:50-05:00'\n        url: https://api.github.com/user/repository_invitations/1296269\n        html_url: https://github.com/octocat/Hello-World/invitations\n    combined-commit-status:\n      value:\n        state: success\n        statuses:\n        - url: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          avatar_url: https://github.com/images/error/hubot_happy.gif\n          id: 1\n          node_id: MDY6U3RhdHVzMQ==\n          state: success\n          description: Build has completed successfully\n          target_url: https://ci.example.com/1000/output\n          context: continuous-integration/jenkins\n          created_at: '2012-07-20T01:19:13Z'\n          updated_at: '2012-07-20T01:19:13Z'\n        - url: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          avatar_url: https://github.com/images/error/other_user_happy.gif\n          id: 2\n          node_id: MDY6U3RhdHVzMg==\n          state: success\n          description: Testing has completed successfully\n          target_url: https://ci.example.com/2000/output\n          context: security/brakeman\n          created_at: '2012-08-20T01:19:13Z'\n          updated_at: '2012-08-20T01:19:13Z'\n        sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        total_count: 2\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\n        commit_url: https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        url: https://api.github.com/repos/octocat/Hello-World/6dcb09b5b57875f334f61aebed695e2e4193db5e/status\n    status:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        avatar_url: https://github.com/images/error/hubot_happy.gif\n        id: 1\n        node_id: MDY6U3RhdHVzMQ==\n        state: success\n        description: Build has completed successfully\n        target_url: https://ci.example.com/1000/output\n        context: continuous-integration/jenkins\n        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        creator:\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    deployment-status-items:\n      value:\n      - url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1\n        id: 1\n        node_id: MDE2OkRlcGxveW1lbnRTdGF0dXMx\n        state: success\n        creator:\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        description: Deployment finished successfully.\n        environment: production\n        target_url: https://example.com/deployment/42/output\n        created_at: '2012-07-20T01:19:13Z'\n        updated_at: '2012-07-20T01:19:13Z'\n        deployment_url: https://api.github.com/repos/octocat/example/deployments/42\n        repository_url: https://api.github.com/repos/octocat/example\n        environment_url: https://test-branch.lab.acme.com\n        log_url: https://example.com/deployment/42/output\n    contributor-activity-items:\n      value:\n      - author:\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        total: 135\n        weeks:\n        - w: '1367712000'\n          a: 6898\n          d: 77\n          c: 10\n    content-file:\n      value:\n        type: file\n        encoding: base64\n        size: 5362\n        name: README.md\n        path: README.md\n        content: encoded content ...\n        sha: 3d21ec53a331a6f037a91c368710b99387d012c1\n        url: https://api.github.com/repos/octokit/octokit.rb/contents/README.md\n        git_url: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\n        html_url: https://github.com/octokit/octokit.rb/blob/master/README.md\n        download_url: https://raw.githubusercontent.com/octokit/octokit.rb/master/README.md\n        _links:\n          git: https://api.github.com/repos/octokit/octokit.rb/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1\n          self: https://api.github.com/repos/octokit/octokit.rb/contents/README.md\n          html: https://github.com/octokit/octokit.rb/blob/master/README.md\n    commit:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        node_id: MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\n        html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        comments_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e/comments\n        commit:\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          author:\n            name: Monalisa Octocat\n            email: mona@github.com\n            date: '2011-04-14T16:00:49Z'\n          committer:\n            name: Monalisa Octocat\n            email: mona@github.com\n            date: '2011-04-14T16:00:49Z'\n          message: Fix all the bugs\n          tree:\n            url: https://api.github.com/repos/octocat/Hello-World/tree/6dcb09b5b57875f334f61aebed695e2e4193db5e\n            sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          comment_count: 0\n          verification:\n            verified: false\n            reason: unsigned\n            signature: \n            payload: \n        author:\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        committer:\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        parents:\n        - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        stats:\n          additions: 104\n          deletions: 4\n          total: 108\n        files:\n        - filename: file1.txt\n          additions: 10\n          deletions: 2\n          changes: 12\n          status: modified\n          raw_url: https://github.com/octocat/Hello-World/raw/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\n          blob_url: https://github.com/octocat/Hello-World/blob/7ca483543807a51b6079e54ac4cc392bc29ae284/file1.txt\n          patch: |-\n            @@ -29,7 +29,7 @@\n            .....\n    code-frequency-stat-items:\n      value:\n      - - 1302998400\n        - 1124\n        - -435\n    contributor-items-response-if-repository-contains-content:\n      value:\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        contributions: 32\n    collaborator-items:\n      value:\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        permissions:\n          pull: true\n          push: true\n          admin: false\n    repository-collaborator-permission-response-if-user-has-admin-permissions:\n      value:\n        permission: admin\n        user:\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    license-content:\n      value:\n        name: LICENSE\n        path: LICENSE\n        sha: 401c59dcc4570b954dd6d345e76199e1f4e76266\n        size: 1077\n        url: https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\n        html_url: https://github.com/benbalter/gman/blob/master/LICENSE\n        git_url: https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\n        download_url: https://raw.githubusercontent.com/benbalter/gman/master/LICENSE?lab=true\n        type: file\n        content: |\n          VGhlIE1JVCBMaWNlbnNlIChNSVQpCgpDb3B5cmlnaHQgKGMpIDIwMTMgQmVu\n          IEJhbHRlcgoKUGVybWlzc2lvbiBpcyBoZXJlYnkgZ3JhbnRlZCwgZnJlZSBv\n          ZiBjaGFyZ2UsIHRvIGFueSBwZXJzb24gb2J0YWluaW5nIGEgY29weSBvZgp0\n          aGlzIHNvZnR3YXJlIGFuZCBhc3NvY2lhdGVkIGRvY3VtZW50YXRpb24gZmls\n          ZXMgKHRoZSAiU29mdHdhcmUiKSwgdG8gZGVhbCBpbgp0aGUgU29mdHdhcmUg\n          d2l0aG91dCByZXN0cmljdGlvbiwgaW5jbHVkaW5nIHdpdGhvdXQgbGltaXRh\n          dGlvbiB0aGUgcmlnaHRzIHRvCnVzZSwgY29weSwgbW9kaWZ5LCBtZXJnZSwg\n          cHVibGlzaCwgZGlzdHJpYnV0ZSwgc3VibGljZW5zZSwgYW5kL29yIHNlbGwg\n          Y29waWVzIG9mCnRoZSBTb2Z0d2FyZSwgYW5kIHRvIHBlcm1pdCBwZXJzb25z\n          IHRvIHdob20gdGhlIFNvZnR3YXJlIGlzIGZ1cm5pc2hlZCB0byBkbyBzbywK\n          c3ViamVjdCB0byB0aGUgZm9sbG93aW5nIGNvbmRpdGlvbnM6CgpUaGUgYWJv\n          dmUgY29weXJpZ2h0IG5vdGljZSBhbmQgdGhpcyBwZXJtaXNzaW9uIG5vdGlj\n          ZSBzaGFsbCBiZSBpbmNsdWRlZCBpbiBhbGwKY29waWVzIG9yIHN1YnN0YW50\n          aWFsIHBvcnRpb25zIG9mIHRoZSBTb2Z0d2FyZS4KClRIRSBTT0ZUV0FSRSBJ\n          UyBQUk9WSURFRCAiQVMgSVMiLCBXSVRIT1VUIFdBUlJBTlRZIE9GIEFOWSBL\n          SU5ELCBFWFBSRVNTIE9SCklNUExJRUQsIElOQ0xVRElORyBCVVQgTk9UIExJ\n          TUlURUQgVE8gVEhFIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZLCBG\n          SVRORVNTCkZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRSBBTkQgTk9OSU5GUklO\n          R0VNRU5ULiBJTiBOTyBFVkVOVCBTSEFMTCBUSEUgQVVUSE9SUyBPUgpDT1BZ\n          UklHSFQgSE9MREVSUyBCRSBMSUFCTEUgRk9SIEFOWSBDTEFJTSwgREFNQUdF\n          UyBPUiBPVEhFUiBMSUFCSUxJVFksIFdIRVRIRVIKSU4gQU4gQUNUSU9OIE9G\n          IENPTlRSQUNULCBUT1JUIE9SIE9USEVSV0lTRSwgQVJJU0lORyBGUk9NLCBP\n          VVQgT0YgT1IgSU4KQ09OTkVDVElPTiBXSVRIIFRIRSBTT0ZUV0FSRSBPUiBU\n          SEUgVVNFIE9SIE9USEVSIERFQUxJTkdTIElOIFRIRSBTT0ZUV0FSRS4K\n        encoding: base64\n        _links:\n          self: https://api.github.com/repos/benbalter/gman/contents/LICENSE?ref=master\n          git: https://api.github.com/repos/benbalter/gman/git/blobs/401c59dcc4570b954dd6d345e76199e1f4e76266\n          html: https://github.com/benbalter/gman/blob/master/LICENSE\n        license:\n          key: mit\n          name: MIT License\n          spdx_id: MIT\n          url: https://api.github.com/licenses/mit\n          node_id: MDc6TGljZW5zZW1pdA==\n    license:\n      value:\n        key: mit\n        name: MIT License\n        spdx_id: MIT\n        url: https://api.github.com/licenses/mit\n        node_id: MDc6TGljZW5zZW1pdA==\n        html_url: http://choosealicense.com/licenses/mit/\n        description: A permissive license that is short and to the point. It lets\n          people do anything with your code with proper attribution and without warranty.\n        implementation: Create a text file (typically named LICENSE or LICENSE.txt)\n          in the root of your source code and copy the text of the license into the\n          file. Replace [year] with the current year and [fullname] with the name\n          (or names) of the copyright holders.\n        permissions:\n        - commercial-use\n        - modifications\n        - distribution\n        - sublicense\n        - private-use\n        conditions:\n        - include-copyright\n        limitations:\n        - no-liability\n        body: |2\n\n\n          The MIT License (MIT)\n\n          Copyright (c) [year] [fullname]\n\n          Permission is hereby granted, free of charge, to any person obtaining a copy\n          of this software and associated documentation files (the \"Software\"), to deal\n          in the Software without restriction, including without limitation the rights\n          to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n          copies of the Software, and to permit persons to whom the Software is\n          furnished to do so, subject to the following conditions:\n\n          The above copyright notice and this permission notice shall be included in all\n          copies or substantial portions of the Software.\n\n          THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n          IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n          FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n          AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n          LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n          OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n          SOFTWARE.\n        featured: true\n    license-simple-items:\n      value:\n      - key: mit\n        name: MIT License\n        spdx_id: MIT\n        url: https://api.github.com/licenses/mit\n        node_id: MDc6TGljZW5zZW1pdA==\n      - key: lgpl-3.0\n        name: GNU Lesser General Public License v3.0\n        spdx_id: LGPL-3.0\n        url: https://api.github.com/licenses/lgpl-3.0\n        node_id: MDc6TGljZW5zZW1pdA==\n      - key: mpl-2.0\n        name: Mozilla Public License 2.0\n        spdx_id: MPL-2.0\n        url: https://api.github.com/licenses/mpl-2.0\n        node_id: MDc6TGljZW5zZW1pdA==\n      - key: agpl-3.0\n        name: GNU Affero General Public License v3.0\n        spdx_id: AGPL-3.0\n        url: https://api.github.com/licenses/agpl-3.0\n        node_id: MDc6TGljZW5zZW1pdA==\n      - key: unlicense\n        name: The Unlicense\n        spdx_id: Unlicense\n        url: https://api.github.com/licenses/unlicense\n        node_id: MDc6TGljZW5zZW1pdA==\n      - key: apache-2.0\n        name: Apache License 2.0\n        spdx_id: Apache-2.0\n        url: https://api.github.com/licenses/apache-2.0\n        node_id: MDc6TGljZW5zZW1pdA==\n      - key: gpl-3.0\n        name: GNU General Public License v3.0\n        spdx_id: GPL-3.0\n        url: https://api.github.com/licenses/gpl-3.0\n        node_id: MDc6TGljZW5zZW1pdA==\n    repository-subscription-response-if-you-subscribe-to-the-repository:\n      value:\n        subscribed: true\n        ignored: false\n        reason: \n        created_at: '2012-10-06T21:34:12Z'\n        url: https://api.github.com/repos/octocat/example/subscription\n        repository_url: https://api.github.com/repos/octocat/example\n    repository-subscription:\n      value:\n        subscribed: true\n        ignored: false\n        reason: \n        created_at: '2012-10-06T21:34:12Z'\n        url: https://api.github.com/repos/octocat/example/subscription\n        repository_url: https://api.github.com/repos/octocat/example\n    thread-items:\n      value:\n      - id: '1'\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\n        subject:\n          title: Greetings\n          url: https://api.github.com/repos/octokit/octokit.rb/issues/123\n          latest_comment_url: https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\n          type: Issue\n        reason: subscribed\n        unread: true\n        updated_at: '2014-11-07T22:01:45Z'\n        last_read_at: '2014-11-07T22:01:45Z'\n        url: https://api.github.com/notifications/threads/1\n    feed:\n      value:\n        timeline_url: https://github.com/timeline\n        user_url: https://github.com/{user}\n        current_user_public_url: https://github.com/octocat\n        current_user_url: https://github.com/octocat.private?token=abc123\n        current_user_actor_url: https://github.com/octocat.private.actor?token=abc123\n        current_user_organization_url: ''\n        current_user_organization_urls:\n        - https://github.com/organizations/github/octocat.private.atom?token=abc123\n        security_advisories_url: https://github.com/security-advisories\n        _links:\n          timeline:\n            href: https://github.com/timeline\n            type: application/atom+xml\n          user:\n            href: https://github.com/{user}\n            type: application/atom+xml\n          current_user_public:\n            href: https://github.com/octocat\n            type: application/atom+xml\n          current_user:\n            href: https://github.com/octocat.private?token=abc123\n            type: application/atom+xml\n          current_user_actor:\n            href: https://github.com/octocat.private.actor?token=abc123\n            type: application/atom+xml\n          current_user_organization:\n            href: ''\n            type: ''\n          current_user_organizations:\n          - href: https://github.com/organizations/github/octocat.private.atom?token=abc123\n            type: application/atom+xml\n          security_advisories:\n            href: https://github.com/security-advisories\n            type: application/atom+xml\n    starred-repository-items-alternative-response-with-star-creation-timestamps:\n      summary: Alternative response with star creation timestamps\n      value:\n      - starred_at: '2011-01-16T19:06:43Z'\n        repo:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    thread:\n      value:\n        id: '1'\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          hooks_url: http://api.github.com/repos/octocat/Hello-World/hooks\n        subject:\n          title: Greetings\n          url: https://api.github.com/repos/octokit/octokit.rb/issues/123\n          latest_comment_url: https://api.github.com/repos/octokit/octokit.rb/issues/comments/123\n          type: Issue\n        reason: subscribed\n        unread: true\n        updated_at: '2014-11-07T22:01:45Z'\n        last_read_at: '2014-11-07T22:01:45Z'\n        url: https://api.github.com/notifications/threads/1\n    thread-subscription:\n      value:\n        subscribed: true\n        ignored: false\n        reason: \n        created_at: '2012-10-06T21:34:12Z'\n        url: https://api.github.com/notifications/threads/1/subscription\n        thread_url: https://api.github.com/notifications/threads/1\n    simple-user-items-default-response:\n      summary: Default response\n      value:\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    stargazer-items-alternative-response-with-star-creation-timestamps:\n      summary: Alternative response with star creation timestamps\n      value:\n      - starred_at: '2011-01-16T19:06:43Z'\n        user:\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    check-annotation-items:\n      value:\n      - path: README.md\n        start_line: 2\n        end_line: 2\n        start_column: 5\n        end_column: 10\n        annotation_level: warning\n        title: Spell Checker\n        message: Check your spelling for 'banaas'.\n        raw_details: Do you mean 'bananas' or 'banana'?\n        blob_href: https://api.github.com/repos/github/rest-api-description/git/blobs/abc\n    check-suite-paginated:\n      value:\n        total_count: 1\n        check_suites:\n        - id: 5\n          node_id: MDEwOkNoZWNrU3VpdGU1\n          head_branch: master\n          head_sha: d6fde92930d4715a2b49857d24b940956b26d2d3\n          status: completed\n          conclusion: neutral\n          url: https://api.github.com/repos/github/hello-world/check-suites/5\n          before: 146e867f55c26428e5f9fade55a9bbf5e95a7912\n          after: d6fde92930d4715a2b49857d24b940956b26d2d3\n          pull_requests: []\n          app:\n            id: 1\n            slug: octoapp\n            node_id: MDExOkludGVncmF0aW9uMQ==\n            owner:\n              login: github\n              id: 1\n              node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n              url: https://api.github.com/orgs/github\n              repos_url: https://api.github.com/orgs/github/repos\n              events_url: https://api.github.com/orgs/github/events\n              avatar_url: https://github.com/images/error/octocat_happy.gif\n              gravatar_id: ''\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              received_events_url: https://api.github.com/users/octocat/received_events\n              type: User\n              site_admin: true\n            name: Octocat App\n            description: ''\n            external_url: https://example.com\n            html_url: https://github.com/apps/octoapp\n            created_at: '2017-07-08T16:18:44-04:00'\n            updated_at: '2017-07-08T16:18:44-04:00'\n            permissions:\n              metadata: read\n              contents: read\n              issues: write\n              single_file: write\n            events:\n            - push\n            - pull_request\n          repository:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World\n            full_name: octocat/Hello-World\n            owner:\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            private: false\n            html_url: https://github.com/octocat/Hello-World\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World\n            archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World.git\n            mirror_url: git:git.example.com/octocat/Hello-World\n            hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World\n            homepage: https://github.com\n            language: \n            forks_count: 9\n            stargazers_count: 80\n            watchers_count: 80\n            size: 108\n            default_branch: master\n            open_issues_count: 0\n            is_template: true\n            topics:\n            - octocat\n            - atom\n            - electron\n            - api\n            has_issues: true\n            has_projects: true\n            has_wiki: true\n            has_pages: false\n            has_downloads: true\n            archived: false\n            disabled: false\n            visibility: public\n            pushed_at: '2011-01-26T19:06:43Z'\n            created_at: '2011-01-26T19:01:12Z'\n            updated_at: '2011-01-26T19:14:43Z'\n            permissions:\n              admin: false\n              push: false\n              pull: true\n            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            delete_branch_on_merge: true\n            subscribers_count: 42\n            network_count: 0\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          head_commit:\n            id: 7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\n            tree_id: 7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\n            message: |-\n              Merge pull request #6 from Spaceghost/patch-1\n\n              New line at end of file.\n            timestamp: '2016-10-10T00:00:00Z'\n            author:\n              name: The Octocat\n              email: octocat@nowhere.com\n            committer:\n              name: The Octocat\n              email: octocat@nowhere.com\n          latest_check_runs_count: 1\n          check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\n    check-run-paginated:\n      value:\n        total_count: 1\n        check_runs:\n        - id: 4\n          head_sha: ce587453ced02b1526dfb4cb910479d431683101\n          node_id: MDg6Q2hlY2tSdW40\n          external_id: ''\n          url: https://api.github.com/repos/github/hello-world/check-runs/4\n          html_url: https://github.com/github/hello-world/runs/4\n          details_url: https://example.com\n          status: completed\n          conclusion: neutral\n          started_at: '2018-05-04T01:14:52Z'\n          completed_at: '2018-05-04T01:14:52Z'\n          output:\n            title: Mighty Readme report\n            summary: There are 0 failures, 2 warnings, and 1 notice.\n            text: You may have some misspelled words on lines 2 and 4. You also may\n              want to add a section in your README about how to install your app.\n            annotations_count: 2\n            annotations_url: https://api.github.com/repos/github/hello-world/check-runs/4/annotations\n          name: mighty_readme\n          check_suite:\n            id: 5\n          app:\n            id: 1\n            slug: octoapp\n            node_id: MDExOkludGVncmF0aW9uMQ==\n            owner:\n              login: github\n              id: 1\n              node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n              url: https://api.github.com/orgs/github\n              repos_url: https://api.github.com/orgs/github/repos\n              events_url: https://api.github.com/orgs/github/events\n              avatar_url: https://github.com/images/error/octocat_happy.gif\n              gravatar_id: ''\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              received_events_url: https://api.github.com/users/octocat/received_events\n              type: User\n              site_admin: true\n            name: Octocat App\n            description: ''\n            external_url: https://example.com\n            html_url: https://github.com/apps/octoapp\n            created_at: '2017-07-08T16:18:44-04:00'\n            updated_at: '2017-07-08T16:18:44-04:00'\n            permissions:\n              metadata: read\n              contents: read\n              issues: write\n              single_file: write\n            events:\n            - push\n            - pull_request\n          pull_requests:\n          - url: https://api.github.com/repos/github/hello-world/pulls/1\n            id: 1934\n            number: 3956\n            head:\n              ref: say-hello\n              sha: 3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\n              repo:\n                id: 526\n                url: https://api.github.com/repos/github/hello-world\n                name: hello-world\n            base:\n              ref: master\n              sha: e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\n              repo:\n                id: 526\n                url: https://api.github.com/repos/github/hello-world\n                name: hello-world\n    check-run:\n      value:\n        id: 4\n        head_sha: ce587453ced02b1526dfb4cb910479d431683101\n        node_id: MDg6Q2hlY2tSdW40\n        external_id: ''\n        url: https://api.github.com/repos/github/hello-world/check-runs/4\n        html_url: https://github.com/github/hello-world/runs/4\n        details_url: https://example.com\n        status: completed\n        conclusion: neutral\n        started_at: '2018-05-04T01:14:52Z'\n        completed_at: '2018-05-04T01:14:52Z'\n        output:\n          title: Mighty Readme report\n          summary: There are 0 failures, 2 warnings, and 1 notice.\n          text: You may have some misspelled words on lines 2 and 4. You also may\n            want to add a section in your README about how to install your app.\n          annotations_count: 2\n          annotations_url: https://api.github.com/repos/github/hello-world/check-runs/4/annotations\n        name: mighty_readme\n        check_suite:\n          id: 5\n        app:\n          id: 1\n          slug: octoapp\n          node_id: MDExOkludGVncmF0aW9uMQ==\n          owner:\n            login: github\n            id: 1\n            node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n            url: https://api.github.com/orgs/github\n            repos_url: https://api.github.com/orgs/github/repos\n            events_url: https://api.github.com/orgs/github/events\n            avatar_url: https://github.com/images/error/octocat_happy.gif\n            gravatar_id: ''\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            received_events_url: https://api.github.com/users/octocat/received_events\n            type: User\n            site_admin: true\n          name: Octocat App\n          description: ''\n          external_url: https://example.com\n          html_url: https://github.com/apps/octoapp\n          created_at: '2017-07-08T16:18:44-04:00'\n          updated_at: '2017-07-08T16:18:44-04:00'\n          permissions:\n            metadata: read\n            contents: read\n            issues: write\n            single_file: write\n          events:\n          - push\n          - pull_request\n        pull_requests:\n        - url: https://api.github.com/repos/github/hello-world/pulls/1\n          id: 1934\n          number: 3956\n          head:\n            ref: say-hello\n            sha: 3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\n            repo:\n              id: 526\n              url: https://api.github.com/repos/github/hello-world\n              name: hello-world\n          base:\n            ref: master\n            sha: e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\n            repo:\n              id: 526\n              url: https://api.github.com/repos/github/hello-world\n              name: hello-world\n    check-suite:\n      value:\n        id: 5\n        node_id: MDEwOkNoZWNrU3VpdGU1\n        head_branch: master\n        head_sha: d6fde92930d4715a2b49857d24b940956b26d2d3\n        status: completed\n        conclusion: neutral\n        url: https://api.github.com/repos/github/hello-world/check-suites/5\n        before: 146e867f55c26428e5f9fade55a9bbf5e95a7912\n        after: d6fde92930d4715a2b49857d24b940956b26d2d3\n        pull_requests: []\n        created_at: '2017-07-08T16:18:44-04:00'\n        updated_at: '2017-07-08T16:18:44-04:00'\n        app:\n          id: 1\n          slug: octoapp\n          node_id: MDExOkludGVncmF0aW9uMQ==\n          owner:\n            login: github\n            id: 1\n            node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n            url: https://api.github.com/orgs/github\n            repos_url: https://api.github.com/orgs/github/repos\n            events_url: https://api.github.com/orgs/github/events\n            avatar_url: https://github.com/images/error/octocat_happy.gif\n            gravatar_id: ''\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            received_events_url: https://api.github.com/users/octocat/received_events\n            type: User\n            site_admin: true\n          name: Octocat App\n          description: ''\n          external_url: https://example.com\n          html_url: https://github.com/apps/octoapp\n          created_at: '2017-07-08T16:18:44-04:00'\n          updated_at: '2017-07-08T16:18:44-04:00'\n          permissions:\n            metadata: read\n            contents: read\n            issues: write\n            single_file: write\n          events:\n          - push\n          - pull_request\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          template_repository: octocat/template-repo\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          delete_branch_on_merge: true\n          subscribers_count: 42\n          network_count: 0\n        head_commit:\n          id: 7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\n          tree_id: 7fd1a60b01f91b314f59955a4e4d4e80d8edf11d\n          message: |-\n            Merge pull request #6 from Spaceghost/patch-1\n\n            New line at end of file.\n          timestamp: '2016-10-10T00:00:00Z'\n          author:\n            name: The Octocat\n            email: octocat@nowhere.com\n          committer:\n            name: The Octocat\n            email: octocat@nowhere.com\n        latest_check_runs_count: 1\n        check_runs_url: https://api.github.com/repos/octocat/Hello-World/check-suites/5/check-runs\n    check-suite-preference:\n      value:\n        preferences:\n          auto_trigger_checks:\n          - app_id: 2\n            setting: true\n          - app_id: 4\n            setting: false\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: http://choosealicense.com/licenses/mit/\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    check-run-example-of-in-progress-conclusion:\n      summary: Example of in_progress conclusion\n      value:\n        id: 4\n        head_sha: ce587453ced02b1526dfb4cb910479d431683101\n        node_id: MDg6Q2hlY2tSdW40\n        external_id: '42'\n        url: https://api.github.com/repos/github/hello-world/check-runs/4\n        html_url: https://github.com/github/hello-world/runs/4\n        details_url: https://example.com\n        status: in_progress\n        conclusion: \n        started_at: '2018-05-04T01:14:52Z'\n        completed_at: \n        output:\n          title: Mighty Readme Report\n          summary: ''\n          text: ''\n          annotations_count: 1\n          annotations_url: https://api.github.com/repos/github/hello-world/check-runs/4/annotations\n        name: mighty_readme\n        check_suite:\n          id: 5\n        app:\n          id: 1\n          slug: octoapp\n          node_id: MDExOkludGVncmF0aW9uMQ==\n          owner:\n            login: github\n            id: 1\n            node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n            url: https://api.github.com/orgs/github\n            repos_url: https://api.github.com/orgs/github/repos\n            events_url: https://api.github.com/orgs/github/events\n            avatar_url: https://github.com/images/error/octocat_happy.gif\n            gravatar_id: ''\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            received_events_url: https://api.github.com/users/octocat/received_events\n            type: User\n            site_admin: true\n          name: Octocat App\n          description: ''\n          external_url: https://example.com\n          html_url: https://github.com/apps/octoapp\n          created_at: '2017-07-08T16:18:44-04:00'\n          updated_at: '2017-07-08T16:18:44-04:00'\n          permissions:\n            metadata: read\n            contents: read\n            issues: write\n            single_file: write\n          events:\n          - push\n          - pull_request\n        pull_requests:\n        - url: https://api.github.com/repos/github/hello-world/pulls/1\n          id: 1934\n          number: 3956\n          head:\n            ref: say-hello\n            sha: 3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\n            repo:\n              id: 526\n              url: https://api.github.com/repos/github/hello-world\n              name: hello-world\n          base:\n            ref: master\n            sha: e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\n            repo:\n              id: 526\n              url: https://api.github.com/repos/github/hello-world\n              name: hello-world\n    check-run-example-of-completed-conclusion:\n      summary: Example of completed conclusion\n      value:\n        id: 4\n        head_sha: ce587453ced02b1526dfb4cb910479d431683101\n        node_id: MDg6Q2hlY2tSdW40\n        external_id: ''\n        url: https://api.github.com/repos/github/hello-world/check-runs/4\n        html_url: https://github.com/github/hello-world/runs/4\n        details_url: https://example.com\n        status: completed\n        conclusion: neutral\n        started_at: '2018-05-04T01:14:52Z'\n        completed_at: '2018-05-04T01:14:52Z'\n        output:\n          title: Mighty Readme report\n          summary: There are 0 failures, 2 warnings, and 1 notice.\n          text: You may have some misspelled words on lines 2 and 4. You also may\n            want to add a section in your README about how to install your app.\n          annotations_count: 2\n          annotations_url: https://api.github.com/repos/github/hello-world/check-runs/4/annotations\n        name: mighty_readme\n        check_suite:\n          id: 5\n        app:\n          id: 1\n          slug: octoapp\n          node_id: MDExOkludGVncmF0aW9uMQ==\n          owner:\n            login: github\n            id: 1\n            node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n            url: https://api.github.com/orgs/github\n            repos_url: https://api.github.com/orgs/github/repos\n            events_url: https://api.github.com/orgs/github/events\n            avatar_url: https://github.com/images/error/octocat_happy.gif\n            gravatar_id: ''\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            received_events_url: https://api.github.com/users/octocat/received_events\n            type: User\n            site_admin: true\n          name: Octocat App\n          description: ''\n          external_url: https://example.com\n          html_url: https://github.com/apps/octoapp\n          created_at: '2017-07-08T16:18:44-04:00'\n          updated_at: '2017-07-08T16:18:44-04:00'\n          permissions:\n            metadata: read\n            contents: read\n            issues: write\n            single_file: write\n          events:\n          - push\n          - pull_request\n        pull_requests:\n        - url: https://api.github.com/repos/github/hello-world/pulls/1\n          id: 1934\n          number: 3956\n          head:\n            ref: say-hello\n            sha: 3dca65fa3e8d4b3da3f3d056c59aee1c50f41390\n            repo:\n              id: 526\n              url: https://api.github.com/repos/github/hello-world\n              name: hello-world\n          base:\n            ref: master\n            sha: e7fdf7640066d71ad16a86fbcbb9c6a10a18af4f\n            repo:\n              id: 526\n              url: https://api.github.com/repos/github/hello-world\n              name: hello-world\n    project-items:\n      value:\n      - owner_url: https://api.github.com/orgs/octocat\n        url: https://api.github.com/projects/1002605\n        html_url: https://github.com/orgs/api-playground/projects/1\n        columns_url: https://api.github.com/projects/1002605/columns\n        id: 1002605\n        node_id: MDc6UHJvamVjdDEwMDI2MDU=\n        name: Organization Roadmap\n        body: High-level roadmap for the upcoming year.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-11T20:09:31Z'\n        updated_at: '2014-03-04T18:58:10Z'\n    project-2:\n      value:\n        owner_url: https://api.github.com/orgs/octocat\n        url: https://api.github.com/projects/1002605\n        html_url: https://github.com/orgs/api-playground/projects/1\n        columns_url: https://api.github.com/projects/1002605/columns\n        id: 1002605\n        node_id: MDc6UHJvamVjdDEwMDI2MDU=\n        name: Organization Roadmap\n        body: High-level roadmap for the upcoming year.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-11T20:09:31Z'\n        updated_at: '2014-03-04T18:58:10Z'\n    project-card:\n      value:\n        url: https://api.github.com/projects/columns/cards/1478\n        id: 1478\n        node_id: MDExOlByb2plY3RDYXJkMTQ3OA==\n        note: Add payload for delete Project column\n        creator:\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        created_at: '2016-09-05T14:21:06Z'\n        updated_at: '2016-09-05T14:20:22Z'\n        archived: false\n        column_url: https://api.github.com/projects/columns/367\n        content_url: https://api.github.com/repos/api-playground/projects-test/issues/3\n        project_url: https://api.github.com/projects/120\n    project-column:\n      value:\n        url: https://api.github.com/projects/columns/367\n        project_url: https://api.github.com/projects/120\n        cards_url: https://api.github.com/projects/columns/367/cards\n        id: 367\n        node_id: MDEzOlByb2plY3RDb2x1bW4zNjc=\n        name: To Do\n        created_at: '2016-09-05T14:18:44Z'\n        updated_at: '2016-09-05T14:22:28Z'\n    project-items-3:\n      value:\n      - owner_url: https://api.github.com/users/octocat\n        url: https://api.github.com/projects/1002603\n        html_url: https://github.com/users/octocat/projects/1\n        columns_url: https://api.github.com/projects/1002603/columns\n        id: 1002603\n        node_id: MDc6UHJvamVjdDEwMDI2MDM=\n        name: My Projects\n        body: A board to manage my personal projects.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-10T20:09:31Z'\n        updated_at: '2014-03-03T18:58:10Z'\n    project-3:\n      value:\n        owner_url: https://api.github.com/repos/api-playground/projects-test\n        url: https://api.github.com/projects/1002604\n        html_url: https://github.com/api-playground/projects-test/projects/1\n        columns_url: https://api.github.com/projects/1002604/columns\n        id: 1002604\n        node_id: MDc6UHJvamVjdDEwMDI2MDQ=\n        name: Projects Documentation\n        body: Developer documentation project for the developer site.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-10T20:09:31Z'\n        updated_at: '2014-03-03T18:58:10Z'\n    project-column-items:\n      value:\n      - url: https://api.github.com/projects/columns/367\n        project_url: https://api.github.com/projects/120\n        cards_url: https://api.github.com/projects/columns/367/cards\n        id: 367\n        node_id: MDEzOlByb2plY3RDb2x1bW4zNjc=\n        name: To Do\n        created_at: '2016-09-05T14:18:44Z'\n        updated_at: '2016-09-05T14:22:28Z'\n    project-card-items:\n      value:\n      - url: https://api.github.com/projects/columns/cards/1478\n        id: 1478\n        node_id: MDExOlByb2plY3RDYXJkMTQ3OA==\n        note: Add payload for delete Project column\n        creator:\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        created_at: '2016-09-05T14:21:06Z'\n        updated_at: '2016-09-05T14:20:22Z'\n        archived: false\n        column_url: https://api.github.com/projects/columns/367\n        content_url: https://api.github.com/repos/api-playground/projects-test/issues/3\n        project_url: https://api.github.com/projects/120\n    project:\n      value:\n        owner_url: https://api.github.com/users/octocat\n        url: https://api.github.com/projects/1002603\n        html_url: https://github.com/users/octocat/projects/1\n        columns_url: https://api.github.com/projects/1002603/columns\n        id: 1002603\n        node_id: MDc6UHJvamVjdDEwMDI2MDM=\n        name: My Projects\n        body: A board to manage my personal projects.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-10T20:09:31Z'\n        updated_at: '2014-03-03T18:58:10Z'\n    repository-collaborator-permission:\n      value:\n        permission: admin\n        user:\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    project-items-2:\n      value:\n      - owner_url: https://api.github.com/repos/api-playground/projects-test\n        url: https://api.github.com/projects/1002604\n        html_url: https://github.com/api-playground/projects-test/projects/1\n        columns_url: https://api.github.com/projects/1002604/columns\n        id: 1002604\n        node_id: MDc6UHJvamVjdDEwMDI2MDQ=\n        name: Projects Documentation\n        body: Developer documentation project for the developer site.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-10T20:09:31Z'\n        updated_at: '2014-03-03T18:58:10Z'\n    reaction-items:\n      value:\n      - id: 1\n        node_id: MDg6UmVhY3Rpb24x\n        user:\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        content: heart\n        created_at: '2016-05-20T20:09:31Z'\n    reaction:\n      value:\n        id: 1\n        node_id: MDg6UmVhY3Rpb24x\n        user:\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        content: heart\n        created_at: '2016-05-20T20:09:31Z'\n    api-overview:\n      value:\n        verifiable_password_authentication: true\n        ssh_key_fingerprints:\n          MD5_RSA: 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48\n          MD5_DSA: ad:1c:08:a4:40:e3:6f:9c:f5:66:26:5d:4b:33:5d:8c\n          SHA256_RSA: nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8\n          SHA256_DSA: br9IjFspm1vxR3iA35FWE+4VTyz1hYVLIE2t1/CeyWQ\n        hooks:\n        - 192.30.252.0/22\n        web:\n        - 192.30.252.0/22\n        - 185.199.108.0/22\n        api:\n        - 192.30.252.0/22\n        - 185.199.108.0/22\n        git:\n        - 192.30.252.0/22\n        pages:\n        - 192.30.252.153/32\n        - 192.30.252.154/32\n        importer:\n        - 54.158.161.132\n        - 54.226.70.38\n    org-membership-items:\n      value:\n      - url: https://api.github.com/orgs/octocat/memberships/defunkt\n        state: active\n        role: admin\n        organization_url: https://api.github.com/orgs/octocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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      - url: https://api.github.com/orgs/invitocat/memberships/defunkt\n        state: pending\n        role: admin\n        organization_url: https://api.github.com/orgs/invitocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-membership:\n      value:\n        url: https://api.github.com/orgs/invitocat/memberships/defunkt\n        state: pending\n        role: admin\n        organization_url: https://api.github.com/orgs/invitocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-membership-2:\n      value:\n        url: https://api.github.com/orgs/octocat/memberships/defunkt\n        state: active\n        role: admin\n        organization_url: https://api.github.com/orgs/octocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-membership-response-if-user-has-an-active-admin-membership-with-organization:\n      summary: Response if user has an active admin membership with organization\n      value:\n        url: https://api.github.com/orgs/octocat/memberships/defunkt\n        state: active\n        role: admin\n        organization_url: https://api.github.com/orgs/octocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-membership-response-if-user-has-an-active-membership-with-organization:\n      summary: Response if user has an active membership with organization\n      value:\n        url: https://api.github.com/orgs/octocat/memberships/defunkt\n        state: active\n        role: member\n        organization_url: https://api.github.com/orgs/octocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-membership-response-if-user-has-a-pending-membership-with-organization:\n      summary: Response if user has a pending membership with organization\n      value:\n        url: https://api.github.com/orgs/invitocat/memberships/defunkt\n        state: pending\n        role: member\n        organization_url: https://api.github.com/orgs/invitocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-membership-response-if-user-was-previously-unaffiliated-with-organization:\n      summary: Response if user was previously unaffiliated with organization\n      value:\n        url: https://api.github.com/orgs/invitocat/memberships/defunkt\n        state: pending\n        role: admin\n        organization_url: https://api.github.com/orgs/invitocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-membership-response-if-user-already-had-membership-with-organization:\n      summary: Response if user already had membership with organization\n      value:\n        url: https://api.github.com/orgs/octocat/memberships/defunkt\n        state: active\n        role: admin\n        organization_url: https://api.github.com/orgs/octocat\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n        user:\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    org-hook:\n      value:\n        id: 1\n        url: https://api.github.com/orgs/octocat/hooks/1\n        ping_url: https://api.github.com/orgs/octocat/hooks/1/pings\n        name: web\n        events:\n        - push\n        - pull_request\n        active: true\n        config:\n          url: http://example.com\n          content_type: json\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        type: Organization\n    org-hook-2:\n      value:\n        id: 1\n        url: https://api.github.com/orgs/octocat/hooks/1\n        ping_url: https://api.github.com/orgs/octocat/hooks/1/pings\n        name: web\n        events:\n        - pull_request\n        active: true\n        config:\n          url: http://example.com\n          content_type: json\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        type: Organization\n    organization-simple-items:\n      value:\n      - login: github\n        id: 1\n        node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n        url: https://api.github.com/orgs/github\n        repos_url: https://api.github.com/orgs/github/repos\n        events_url: https://api.github.com/orgs/github/events\n        hooks_url: https://api.github.com/orgs/github/hooks\n        issues_url: https://api.github.com/orgs/github/issues\n        members_url: https://api.github.com/orgs/github/members{/member}\n        public_members_url: https://api.github.com/orgs/github/public_members{/member}\n        avatar_url: https://github.com/images/error/octocat_happy.gif\n        description: A great organization\n    organization-full-default-response:\n      summary: Default response\n      value:\n        login: github\n        id: 1\n        node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n        url: https://api.github.com/orgs/github\n        repos_url: https://api.github.com/orgs/github/repos\n        events_url: https://api.github.com/orgs/github/events\n        hooks_url: https://api.github.com/orgs/github/hooks\n        issues_url: https://api.github.com/orgs/github/issues\n        members_url: https://api.github.com/orgs/github/members{/member}\n        public_members_url: https://api.github.com/orgs/github/public_members{/member}\n        avatar_url: https://github.com/images/error/octocat_happy.gif\n        description: A great organization\n        name: github\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        twitter_username: github\n        is_verified: true\n        has_organization_projects: true\n        has_repository_projects: true\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        html_url: https://github.com/octocat\n        created_at: '2008-01-14T04:33:35Z'\n        updated_at: '2014-03-03T18:58:10Z'\n        type: Organization\n        total_private_repos: 100\n        owned_private_repos: 100\n        private_gists: 81\n        disk_usage: 10000\n        collaborators: 8\n        billing_email: mona@github.com\n        plan:\n          name: Medium\n          space: 400\n          private_repos: 20\n        default_repository_permission: read\n        members_can_create_repositories: true\n        two_factor_requirement_enabled: true\n        members_allowed_repository_creation_type: all\n        members_can_create_public_repositories: false\n        members_can_create_private_repositories: false\n        members_can_create_internal_repositories: false\n    organization-full-response-with-git-hub-plan-information:\n      summary: Response with GitHub plan information\n      value:\n        login: github\n        id: 1\n        node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n        url: https://api.github.com/orgs/github\n        repos_url: https://api.github.com/orgs/github/repos\n        events_url: https://api.github.com/orgs/github/events\n        hooks_url: https://api.github.com/orgs/github/hooks\n        issues_url: https://api.github.com/orgs/github/issues\n        members_url: https://api.github.com/orgs/github/members{/member}\n        public_members_url: https://api.github.com/orgs/github/public_members{/member}\n        avatar_url: https://github.com/images/error/octocat_happy.gif\n        description: A great organization\n        name: github\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        twitter_username: github\n        is_verified: true\n        has_organization_projects: true\n        has_repository_projects: true\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        html_url: https://github.com/octocat\n        created_at: '2008-01-14T04:33:35Z'\n        updated_at: '2014-03-03T18:58:10Z'\n        type: Organization\n        plan:\n          name: team\n          space: 976562499\n          private_repos: 999999\n          filled_seats: 4\n          seats: 5\n    organization-full:\n      value:\n        login: github\n        id: 1\n        node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n        url: https://api.github.com/orgs/github\n        repos_url: https://api.github.com/orgs/github/repos\n        events_url: https://api.github.com/orgs/github/events\n        hooks_url: https://api.github.com/orgs/github/hooks\n        issues_url: https://api.github.com/orgs/github/issues\n        members_url: https://api.github.com/orgs/github/members{/member}\n        public_members_url: https://api.github.com/orgs/github/public_members{/member}\n        avatar_url: https://github.com/images/error/octocat_happy.gif\n        description: A great organization\n        name: github\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        twitter_username: github\n        is_verified: true\n        has_organization_projects: true\n        has_repository_projects: true\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        html_url: https://github.com/octocat\n        created_at: '2008-01-14T04:33:35Z'\n        type: Organization\n        total_private_repos: 100\n        owned_private_repos: 100\n        private_gists: 81\n        disk_usage: 10000\n        collaborators: 8\n        billing_email: mona@github.com\n        plan:\n          name: Medium\n          space: 400\n          private_repos: 20\n        default_repository_permission: read\n        members_can_create_repositories: true\n        two_factor_requirement_enabled: true\n        members_allowed_repository_creation_type: all\n        members_can_create_public_repositories: false\n        members_can_create_private_repositories: false\n        members_can_create_internal_repositories: false\n        updated_at: '2014-03-03T18:58:10Z'\n    installation-paginated:\n      value:\n        total_count: 1\n        installations:\n        - id: 25381\n          account:\n            login: octo-org\n            id: 6811672\n            node_id: MDEyOk9yZ2FuaXphdGlvbjY4MTE2NzI=\n            avatar_url: https://avatars3.githubusercontent.com/u/6811672?v=4\n            gravatar_id: ''\n            url: https://api.github.com/users/octo-org\n            html_url: https://github.com/octo-org\n            followers_url: https://api.github.com/users/octo-org/followers\n            following_url: https://api.github.com/users/octo-org/following{/other_user}\n            gists_url: https://api.github.com/users/octo-org/gists{/gist_id}\n            starred_url: https://api.github.com/users/octo-org/starred{/owner}{/repo}\n            subscriptions_url: https://api.github.com/users/octo-org/subscriptions\n            organizations_url: https://api.github.com/users/octo-org/orgs\n            repos_url: https://api.github.com/users/octo-org/repos\n            events_url: https://api.github.com/users/octo-org/events{/privacy}\n            received_events_url: https://api.github.com/users/octo-org/received_events\n            type: Organization\n            site_admin: false\n          repository_selection: selected\n          access_tokens_url: https://api.github.com/app/installations/25381/access_tokens\n          repositories_url: https://api.github.com/installation/repositories\n          html_url: https://github.com/organizations/octo-org/settings/installations/25381\n          app_id: 2218\n          target_id: 6811672\n          target_type: Organization\n          permissions:\n            deployments: write\n            metadata: read\n            pull_requests: read\n            statuses: read\n          events:\n          - deployment\n          - deployment_status\n          created_at: '2017-05-16T08:47:09.000-07:00'\n          updated_at: '2017-06-06T11:23:23.000-07:00'\n          single_file_name: \n          app_slug: github-actions\n    org-hook-items:\n      value:\n      - id: 1\n        url: https://api.github.com/orgs/octocat/hooks/1\n        ping_url: https://api.github.com/orgs/octocat/hooks/1/pings\n        name: web\n        events:\n        - push\n        - pull_request\n        active: true\n        config:\n          url: http://example.com\n          content_type: json\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        type: Organization\n    code-search-result-item-paginated:\n      value:\n        total_count: 7\n        incomplete_results: false\n        items:\n        - name: classes.js\n          path: src/attributes/classes.js\n          sha: d7212f9dee2dcc18f084d7df8f417b80846ded5a\n          url: https://api.github.com/repositories/167174/contents/src/attributes/classes.js?ref=825ac3773694e0cd23ee74895fd5aeb535b27da4\n          git_url: https://api.github.com/repositories/167174/git/blobs/d7212f9dee2dcc18f084d7df8f417b80846ded5a\n          html_url: https://github.com/jquery/jquery/blob/825ac3773694e0cd23ee74895fd5aeb535b27da4/src/attributes/classes.js\n          repository:\n            id: 167174\n            node_id: MDEwOlJlcG9zaXRvcnkxNjcxNzQ=\n            name: jquery\n            full_name: jquery/jquery\n            owner:\n              login: jquery\n              id: 70142\n              node_id: MDQ6VXNlcjcwMTQy\n              avatar_url: https://0.gravatar.com/avatar/6906f317a4733f4379b06c32229ef02f?d=https%3A%2F%2Fidenticons.github.com%2Ff426f04f2f9813718fb806b30e0093de.png\n              gravatar_id: ''\n              url: https://api.github.com/users/jquery\n              html_url: https://github.com/jquery\n              followers_url: https://api.github.com/users/jquery/followers\n              following_url: https://api.github.com/users/jquery/following{/other_user}\n              gists_url: https://api.github.com/users/jquery/gists{/gist_id}\n              starred_url: https://api.github.com/users/jquery/starred{/owner}{/repo}\n              subscriptions_url: https://api.github.com/users/jquery/subscriptions\n              organizations_url: https://api.github.com/users/jquery/orgs\n              repos_url: https://api.github.com/users/jquery/repos\n              events_url: https://api.github.com/users/jquery/events{/privacy}\n              received_events_url: https://api.github.com/users/jquery/received_events\n              type: Organization\n              site_admin: false\n            private: false\n            html_url: https://github.com/jquery/jquery\n            description: jQuery JavaScript Library\n            fork: false\n            url: https://api.github.com/repos/jquery/jquery\n            forks_url: https://api.github.com/repos/jquery/jquery/forks\n            keys_url: https://api.github.com/repos/jquery/jquery/keys{/key_id}\n            collaborators_url: https://api.github.com/repos/jquery/jquery/collaborators{/collaborator}\n            teams_url: https://api.github.com/repos/jquery/jquery/teams\n            hooks_url: https://api.github.com/repos/jquery/jquery/hooks\n            issue_events_url: https://api.github.com/repos/jquery/jquery/issues/events{/number}\n            events_url: https://api.github.com/repos/jquery/jquery/events\n            assignees_url: https://api.github.com/repos/jquery/jquery/assignees{/user}\n            branches_url: https://api.github.com/repos/jquery/jquery/branches{/branch}\n            tags_url: https://api.github.com/repos/jquery/jquery/tags\n            blobs_url: https://api.github.com/repos/jquery/jquery/git/blobs{/sha}\n            git_tags_url: https://api.github.com/repos/jquery/jquery/git/tags{/sha}\n            git_refs_url: https://api.github.com/repos/jquery/jquery/git/refs{/sha}\n            trees_url: https://api.github.com/repos/jquery/jquery/git/trees{/sha}\n            statuses_url: https://api.github.com/repos/jquery/jquery/statuses/{sha}\n            languages_url: https://api.github.com/repos/jquery/jquery/languages\n            stargazers_url: https://api.github.com/repos/jquery/jquery/stargazers\n            contributors_url: https://api.github.com/repos/jquery/jquery/contributors\n            subscribers_url: https://api.github.com/repos/jquery/jquery/subscribers\n            subscription_url: https://api.github.com/repos/jquery/jquery/subscription\n            commits_url: https://api.github.com/repos/jquery/jquery/commits{/sha}\n            git_commits_url: https://api.github.com/repos/jquery/jquery/git/commits{/sha}\n            comments_url: https://api.github.com/repos/jquery/jquery/comments{/number}\n            issue_comment_url: https://api.github.com/repos/jquery/jquery/issues/comments/{number}\n            contents_url: https://api.github.com/repos/jquery/jquery/contents/{+path}\n            compare_url: https://api.github.com/repos/jquery/jquery/compare/{base}...{head}\n            merges_url: https://api.github.com/repos/jquery/jquery/merges\n            archive_url: https://api.github.com/repos/jquery/jquery/{archive_format}{/ref}\n            downloads_url: https://api.github.com/repos/jquery/jquery/downloads\n            issues_url: https://api.github.com/repos/jquery/jquery/issues{/number}\n            pulls_url: https://api.github.com/repos/jquery/jquery/pulls{/number}\n            milestones_url: https://api.github.com/repos/jquery/jquery/milestones{/number}\n            notifications_url: https://api.github.com/repos/jquery/jquery/notifications{?since,all,participating}\n            labels_url: https://api.github.com/repos/jquery/jquery/labels{/name}\n            deployments_url: http://api.github.com/repos/octocat/Hello-World/deployments\n            releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id}\n          score: 1\n    label-search-result-item-paginated:\n      value:\n        total_count: 2\n        incomplete_results: false\n        items:\n        - id: 418327088\n          node_id: MDU6TGFiZWw0MTgzMjcwODg=\n          url: https://api.github.com/repos/octocat/linguist/labels/enhancement\n          name: enhancement\n          color: 84b6eb\n          default: true\n          description: New feature or request.\n          score: 1\n        - id: 418327086\n          node_id: MDU6TGFiZWw0MTgzMjcwODY=\n          url: https://api.github.com/repos/octocat/linguist/labels/bug\n          name: bug\n          color: ee0701\n          default: true\n          description: Something isn't working.\n          score: 1\n    user-search-result-item-paginated:\n      value:\n        total_count: 12\n        incomplete_results: false\n        items:\n        - login: mojombo\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://secure.gravatar.com/avatar/25c7c18223fb42a4c6ae1c8db6f50f9b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\n          gravatar_id: ''\n          url: https://api.github.com/users/mojombo\n          html_url: https://github.com/mojombo\n          followers_url: https://api.github.com/users/mojombo/followers\n          subscriptions_url: https://api.github.com/users/mojombo/subscriptions\n          organizations_url: https://api.github.com/users/mojombo/orgs\n          repos_url: https://api.github.com/users/mojombo/repos\n          received_events_url: https://api.github.com/users/mojombo/received_events\n          type: User\n          score: 1\n          following_url: https://api.github.com/users/mojombo/following{/other_user}\n          gists_url: https://api.github.com/users/mojombo/gists{/gist_id}\n          starred_url: https://api.github.com/users/mojombo/starred{/owner}{/repo}\n          events_url: https://api.github.com/users/mojombo/events{/privacy}\n          site_admin: true\n    commit-search-result-item-paginated:\n      value:\n        total_count: 1\n        incomplete_results: false\n        items:\n        - url: https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\n          sha: bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\n          html_url: https://github.com/octocat/Spoon-Knife/commit/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\n          comments_url: https://api.github.com/repos/octocat/Spoon-Knife/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f/comments\n          commit:\n            url: https://api.github.com/repos/octocat/Spoon-Knife/git/commits/bb4cc8d3b2e14b3af5df699876dd4ff3acd00b7f\n            author:\n              date: '2014-02-04T14:38:36-08:00'\n              name: The Octocat\n              email: octocat@nowhere.com\n            committer:\n              date: '2014-02-12T15:18:55-08:00'\n              name: The Octocat\n              email: octocat@nowhere.com\n            message: Create styles.css and updated README\n            tree:\n              url: https://api.github.com/repos/octocat/Spoon-Knife/git/trees/a639e96f9038797fba6e0469f94a4b0cc459fa68\n              sha: a639e96f9038797fba6e0469f94a4b0cc459fa68\n            comment_count: 8\n          author:\n            login: octocat\n            id: 583231\n            node_id: MDQ6VXNlcjU4MzIzMQ==\n            avatar_url: https://avatars.githubusercontent.com/u/583231?v=3\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          committer: {}\n          parents:\n          - url: https://api.github.com/repos/octocat/Spoon-Knife/commits/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\n            html_url: https://github.com/octocat/Spoon-Knife/commit/a30c19e3f13765a3b48829788bc1cb8b4e95cee4\n            sha: a30c19e3f13765a3b48829788bc1cb8b4e95cee4\n          repository:\n            id: 1300192\n            node_id: MDEwOlJlcG9zaXRvcnkxMzAwMTky\n            name: Spoon-Knife\n            full_name: octocat/Spoon-Knife\n            owner:\n              login: octocat\n              id: 583231\n              node_id: MDQ6VXNlcjU4MzIzMQ==\n              avatar_url: https://avatars.githubusercontent.com/u/583231?v=3\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            private: false\n            html_url: https://github.com/octocat/Spoon-Knife\n            description: This repo is for demonstration purposes only.\n            fork: false\n            url: https://api.github.com/repos/octocat/Spoon-Knife\n            forks_url: https://api.github.com/repos/octocat/Spoon-Knife/forks\n            keys_url: https://api.github.com/repos/octocat/Spoon-Knife/keys{/key_id}\n            collaborators_url: https://api.github.com/repos/octocat/Spoon-Knife/collaborators{/collaborator}\n            teams_url: https://api.github.com/repos/octocat/Spoon-Knife/teams\n            hooks_url: https://api.github.com/repos/octocat/Spoon-Knife/hooks\n            issue_events_url: https://api.github.com/repos/octocat/Spoon-Knife/issues/events{/number}\n            events_url: https://api.github.com/repos/octocat/Spoon-Knife/events\n            assignees_url: https://api.github.com/repos/octocat/Spoon-Knife/assignees{/user}\n            branches_url: https://api.github.com/repos/octocat/Spoon-Knife/branches{/branch}\n            tags_url: https://api.github.com/repos/octocat/Spoon-Knife/tags\n            blobs_url: https://api.github.com/repos/octocat/Spoon-Knife/git/blobs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Spoon-Knife/git/tags{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Spoon-Knife/git/refs{/sha}\n            trees_url: https://api.github.com/repos/octocat/Spoon-Knife/git/trees{/sha}\n            statuses_url: https://api.github.com/repos/octocat/Spoon-Knife/statuses/{sha}\n            languages_url: https://api.github.com/repos/octocat/Spoon-Knife/languages\n            stargazers_url: https://api.github.com/repos/octocat/Spoon-Knife/stargazers\n            contributors_url: https://api.github.com/repos/octocat/Spoon-Knife/contributors\n            subscribers_url: https://api.github.com/repos/octocat/Spoon-Knife/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Spoon-Knife/subscription\n            commits_url: https://api.github.com/repos/octocat/Spoon-Knife/commits{/sha}\n            git_commits_url: https://api.github.com/repos/octocat/Spoon-Knife/git/commits{/sha}\n            comments_url: https://api.github.com/repos/octocat/Spoon-Knife/comments{/number}\n            issue_comment_url: https://api.github.com/repos/octocat/Spoon-Knife/issues/comments{/number}\n            contents_url: https://api.github.com/repos/octocat/Spoon-Knife/contents/{+path}\n            compare_url: https://api.github.com/repos/octocat/Spoon-Knife/compare/{base}...{head}\n            merges_url: https://api.github.com/repos/octocat/Spoon-Knife/merges\n            archive_url: https://api.github.com/repos/octocat/Spoon-Knife/{archive_format}{/ref}\n            downloads_url: https://api.github.com/repos/octocat/Spoon-Knife/downloads\n            issues_url: https://api.github.com/repos/octocat/Spoon-Knife/issues{/number}\n            pulls_url: https://api.github.com/repos/octocat/Spoon-Knife/pulls{/number}\n            milestones_url: https://api.github.com/repos/octocat/Spoon-Knife/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Spoon-Knife/notifications{?since,all,participating}\n            labels_url: https://api.github.com/repos/octocat/Spoon-Knife/labels{/name}\n            releases_url: https://api.github.com/repos/octocat/Spoon-Knife/releases{/id}\n            deployments_url: https://api.github.com/repos/octocat/Spoon-Knife/deployments\n          score: 1\n          node_id: MDQ6VXNlcjU4MzIzMQ==\n    issue-search-result-item-paginated:\n      value:\n        total_count: 280\n        incomplete_results: false\n        items:\n        - url: https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132\n          repository_url: https://api.github.com/repos/batterseapower/pinyin-toolkit\n          labels_url: https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/labels{/name}\n          comments_url: https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/comments\n          events_url: https://api.github.com/repos/batterseapower/pinyin-toolkit/issues/132/events\n          html_url: https://github.com/batterseapower/pinyin-toolkit/issues/132\n          id: 35802\n          node_id: MDU6SXNzdWUzNTgwMg==\n          number: 132\n          title: Line Number Indexes Beyond 20 Not Displayed\n          user:\n            login: Nick3C\n            id: 90254\n            node_id: MDQ6VXNlcjkwMjU0\n            avatar_url: https://secure.gravatar.com/avatar/934442aadfe3b2f4630510de416c5718?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\n            gravatar_id: ''\n            url: https://api.github.com/users/Nick3C\n            html_url: https://github.com/Nick3C\n            followers_url: https://api.github.com/users/Nick3C/followers\n            following_url: https://api.github.com/users/Nick3C/following{/other_user}\n            gists_url: https://api.github.com/users/Nick3C/gists{/gist_id}\n            starred_url: https://api.github.com/users/Nick3C/starred{/owner}{/repo}\n            subscriptions_url: https://api.github.com/users/Nick3C/subscriptions\n            organizations_url: https://api.github.com/users/Nick3C/orgs\n            repos_url: https://api.github.com/users/Nick3C/repos\n            events_url: https://api.github.com/users/Nick3C/events{/privacy}\n            received_events_url: https://api.github.com/users/Nick3C/received_events\n            type: User\n            site_admin: true\n          labels:\n          - id: 4\n            node_id: MDU6TGFiZWw0\n            url: https://api.github.com/repos/batterseapower/pinyin-toolkit/labels/bug\n            name: bug\n            color: ff0000\n          state: open\n          assignee: \n          milestone:\n            url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n            html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n            labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n            id: 1002604\n            node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n            number: 1\n            state: open\n            title: v1.0\n            description: Tracking milestone for version 1.0\n            creator:\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            open_issues: 4\n            closed_issues: 8\n            created_at: '2011-04-10T20:09:31Z'\n            updated_at: '2014-03-03T18:58:10Z'\n            closed_at: '2013-02-12T13:22:01Z'\n            due_on: '2012-10-09T23:39:01Z'\n          comments: 15\n          created_at: '2009-07-12T20:10:41Z'\n          updated_at: '2009-07-19T09:23:43Z'\n          closed_at: \n          pull_request:\n            url: https://api/github.com/repos/octocat/Hello-World/pull/1347\n            html_url: https://github.com/octocat/Hello-World/pull/1347\n            diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n            patch_url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          body: \"...\"\n          score: 1\n          locked: true\n          author_association: collaborator\n    repo-search-result-item-paginated:\n      value:\n        total_count: 40\n        incomplete_results: false\n        items:\n        - id: 3081286\n          node_id: MDEwOlJlcG9zaXRvcnkzMDgxMjg2\n          name: Tetris\n          full_name: dtrupenn/Tetris\n          owner:\n            login: dtrupenn\n            id: 872147\n            node_id: MDQ6VXNlcjg3MjE0Nw==\n            avatar_url: https://secure.gravatar.com/avatar/e7956084e75f239de85d3a31bc172ace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png\n            gravatar_id: ''\n            url: https://api.github.com/users/dtrupenn\n            received_events_url: https://api.github.com/users/dtrupenn/received_events\n            type: User\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            site_admin: true\n          private: false\n          html_url: https://github.com/dtrupenn/Tetris\n          description: A C implementation of Tetris using Pennsim through LC4\n          fork: false\n          url: https://api.github.com/repos/dtrupenn/Tetris\n          created_at: '2012-01-01T00:31:50Z'\n          updated_at: '2013-01-05T17:58:47Z'\n          pushed_at: '2012-01-01T00:37:02Z'\n          homepage: https://github.com\n          size: 524\n          stargazers_count: 1\n          watchers_count: 1\n          language: Assembly\n          forks_count: 0\n          open_issues_count: 0\n          master_branch: master\n          default_branch: master\n          score: 1\n          archive_url: https://api.github.com/repos/dtrupenn/Tetris/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/dtrupenn/Tetris/assignees{/user}\n          blobs_url: https://api.github.com/repos/dtrupenn/Tetris/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/dtrupenn/Tetris/branches{/branch}\n          collaborators_url: https://api.github.com/repos/dtrupenn/Tetris/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/dtrupenn/Tetris/comments{/number}\n          commits_url: https://api.github.com/repos/dtrupenn/Tetris/commits{/sha}\n          compare_url: https://api.github.com/repos/dtrupenn/Tetris/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/dtrupenn/Tetris/contents/{+path}\n          contributors_url: https://api.github.com/repos/dtrupenn/Tetris/contributors\n          deployments_url: https://api.github.com/repos/dtrupenn/Tetris/deployments\n          downloads_url: https://api.github.com/repos/dtrupenn/Tetris/downloads\n          events_url: https://api.github.com/repos/dtrupenn/Tetris/events\n          forks_url: https://api.github.com/repos/dtrupenn/Tetris/forks\n          git_commits_url: https://api.github.com/repos/dtrupenn/Tetris/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/dtrupenn/Tetris/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/dtrupenn/Tetris/git/tags{/sha}\n          git_url: git:github.com/dtrupenn/Tetris.git\n          issue_comment_url: https://api.github.com/repos/dtrupenn/Tetris/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/dtrupenn/Tetris/issues/events{/number}\n          issues_url: https://api.github.com/repos/dtrupenn/Tetris/issues{/number}\n          keys_url: https://api.github.com/repos/dtrupenn/Tetris/keys{/key_id}\n          labels_url: https://api.github.com/repos/dtrupenn/Tetris/labels{/name}\n          languages_url: https://api.github.com/repos/dtrupenn/Tetris/languages\n          merges_url: https://api.github.com/repos/dtrupenn/Tetris/merges\n          milestones_url: https://api.github.com/repos/dtrupenn/Tetris/milestones{/number}\n          notifications_url: https://api.github.com/repos/dtrupenn/Tetris/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/dtrupenn/Tetris/pulls{/number}\n          releases_url: https://api.github.com/repos/dtrupenn/Tetris/releases{/id}\n          ssh_url: git@github.com:dtrupenn/Tetris.git\n          stargazers_url: https://api.github.com/repos/dtrupenn/Tetris/stargazers\n          statuses_url: https://api.github.com/repos/dtrupenn/Tetris/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/dtrupenn/Tetris/subscribers\n          subscription_url: https://api.github.com/repos/dtrupenn/Tetris/subscription\n          tags_url: https://api.github.com/repos/dtrupenn/Tetris/tags\n          teams_url: https://api.github.com/repos/dtrupenn/Tetris/teams\n          trees_url: https://api.github.com/repos/dtrupenn/Tetris/git/trees{/sha}\n          clone_url: https://github.com/dtrupenn/Tetris.git\n          mirror_url: git:git.example.com/dtrupenn/Tetris\n          hooks_url: https://api.github.com/repos/dtrupenn/Tetris/hooks\n          svn_url: https://svn.github.com/dtrupenn/Tetris\n          forks: 1\n          open_issues: 1\n          watchers: 1\n          has_issues: true\n          has_projects: true\n          has_pages: true\n          has_wiki: true\n          has_downloads: true\n          archived: true\n          disabled: true\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://api.github.com/licenses/mit\n    topic-search-result-item-paginated:\n      value:\n        total_count: 6\n        incomplete_results: false\n        items:\n        - name: ruby\n          display_name: Ruby\n          short_description: Ruby is a scripting language designed for simplified\n            object-oriented programming.\n          description: Ruby was developed by Yukihiro \"Matz\" Matsumoto in 1995 with\n            the intent of having an easily readable programming language. It is integrated\n            with the Rails framework to create dynamic web-applications. Ruby's syntax\n            is similar to that of Perl and Python.\n          created_by: Yukihiro Matsumoto\n          released: December 21, 1995\n          created_at: '2016-11-28T22:03:59Z'\n          updated_at: '2017-10-30T18:16:32Z'\n          featured: true\n          curated: true\n          score: 1\n        - name: rails\n          display_name: Rails\n          short_description: Ruby on Rails (Rails) is a web application framework\n            written in Ruby.\n          description: Ruby on Rails (Rails) is a web application framework written\n            in Ruby. It is meant to help simplify the building of complex websites.\n          created_by: David Heinemeier Hansson\n          released: December 13 2005\n          created_at: '2016-12-09T17:03:50Z'\n          updated_at: '2017-10-30T16:20:19Z'\n          featured: true\n          curated: true\n          score: 1\n        - name: python\n          display_name: Python\n          short_description: Python is a dynamically typed programming language.\n          description: Python is a dynamically typed programming language designed\n            by Guido Van Rossum. Much like the programming language Ruby, Python was\n            designed to be easily read by programmers. Because of its large following\n            and many libraries, Python can be implemented and used to do anything\n            from webpages to scientific research.\n          created_by: Guido van Rossum\n          released: February 20, 1991\n          created_at: '2016-12-07T00:07:02Z'\n          updated_at: '2017-10-27T22:45:43Z'\n          featured: true\n          curated: true\n          score: 1\n        - name: jekyll\n          display_name: Jekyll\n          short_description: Jekyll is a simple, blog-aware static site generator.\n          description: Jekyll is a blog-aware, site generator written in Ruby. It\n            takes raw text files, runs it through a renderer and produces a publishable\n            static website.\n          created_by: Tom Preston-Werner\n          released: '2008'\n          created_at: '2016-12-16T21:53:08Z'\n          updated_at: '2017-10-27T19:00:24Z'\n          featured: true\n          curated: true\n          score: 1\n        - name: sass\n          display_name: Sass\n          short_description: Sass is a stable extension to classic CSS.\n          description: Sass is a stylesheet language with a main implementation in\n            Ruby. It is an extension of CSS that makes improvements to the old stylesheet\n            format, such as being able to declare variables and using a cleaner nesting\n            syntax.\n          created_by: Hampton Catlin, Natalie Weizenbaum, Chris Eppstein\n          released: November 28, 2006\n          created_at: '2016-12-16T21:53:45Z'\n          updated_at: '2018-01-16T16:30:40Z'\n          featured: true\n          curated: true\n          score: 1\n        - name: homebrew\n          display_name: Homebrew\n          short_description: Homebrew is a package manager for macOS.\n          description: Homebrew is a package manager for Apple's macOS operating system.\n            It simplifies the installation of software and is popular in the Ruby\n            on Rails community.\n          created_by: Max Howell\n          released: '2009'\n          created_at: '2016-12-17T20:30:44Z'\n          updated_at: '2018-02-06T16:14:56Z'\n          featured: true\n          curated: true\n          score: 1\n    application-grant-items:\n      value:\n      - id: 1\n        url: https://api.github.com/applications/grants/1\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        created_at: '2011-09-06T17:26:27Z'\n        updated_at: '2011-09-06T20:39:23Z'\n        scopes:\n        - public_repo\n    application-grant:\n      value:\n        id: 1\n        url: https://api.github.com/applications/grants/1\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        created_at: '2011-09-06T17:26:27Z'\n        updated_at: '2011-09-06T20:39:23Z'\n        scopes:\n        - public_repo\n    authorization:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: abcdefgh12345678\n        token_last_eight: '12345678'\n        hashed_token: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        note: optional note\n        note_url: http://optional/note/url\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        fingerprint: ''\n    authorization-items:\n      value:\n      - id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: ''\n        token_last_eight: '12345678'\n        hashed_token: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        note: optional note\n        note_url: http://optional/note/url\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        fingerprint: jklmnop12345678\n    authorization-response-if-returning-an-existing-token:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: ''\n        token_last_eight: '12345678'\n        hashed_token: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        note: optional note\n        note_url: http://optional/note/url\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        fingerprint: jklmnop12345678\n    authorization-3:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: abcdefgh12345678\n        token_last_eight: '12345678'\n        hashed_token: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        note: optional note\n        note_url: http://optional/note/url\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        fingerprint: jklmnop12345678\n    authorization-2:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: ''\n        token_last_eight: '12345678'\n        hashed_token: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        note: optional note\n        note_url: http://optional/note/url\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        fingerprint: jklmnop12345678\n    authorization-response-if-returning-an-existing-token-2:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: ''\n        token_last_eight: '12345678'\n        hashed_token: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        note: optional note\n        note_url: http://optional/note/url\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        fingerprint: ''\n    code-of-conduct-2:\n      value:\n        key: contributor_covenant\n        name: Contributor Covenant\n        url: https://github.com/LindseyB/cosee/blob/master/CODE_OF_CONDUCT.md\n        body: |\n          # Contributor Covenant Code of Conduct\n\n          ## Our Pledge\n\n          In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\n\n          ## Our Standards\n\n          Examples of behavior that contributes to creating a positive environment include=>\n\n          * Using welcoming and inclusive language\n          * Being respectful of differing viewpoints and experiences\n          * Gracefully accepting constructive criticism\n          * Focusing on what is best for the community\n          * Showing empathy towards other community members\n\n          Examples of unacceptable behavior by participants include=>\n\n          * The use of sexualized language or imagery and unwelcome sexual attention or advances\n          * Trolling, insulting/derogatory comments, and personal or political attacks\n          * Public or private harassment\n          * Publishing others' private information, such as a physical or electronic address, without explicit permission\n          * Other conduct which could reasonably be considered inappropriate in a professional setting\n\n          ## Our Responsibilities\n\n          Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\n          to any instances of unacceptable behavior.\n\n          Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\n\n          ## Scope\n\n          This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\n          posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\n\n          ## Enforcement\n\n          Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at lindseyb@github.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\n\n          Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\n\n          ## Attribution\n\n          This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\n\n          [homepage]: http://contributor-covenant.org\n          [version]: http://contributor-covenant.org/version/1/4/\n        html_url: https://github.com/LindseyB/cosee/blob/master/CODE_OF_CONDUCT.md\n    code-of-conduct:\n      value:\n        key: contributor_covenant\n        name: Contributor Covenant\n        url: https://api.github.com/codes_of_conduct/contributor_covenant\n        body: |\n          # Contributor Covenant Code of Conduct\n\n          ## Our Pledge\n\n          In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\n\n          ## Our Standards\n\n          Examples of behavior that contributes to creating a positive environment include:\n\n          * Using welcoming and inclusive language\n          * Being respectful of differing viewpoints and experiences\n          * Gracefully accepting constructive criticism\n          * Focusing on what is best for the community\n          * Showing empathy towards other community members\n\n          Examples of unacceptable behavior by participants include:\n\n          * The use of sexualized language or imagery and unwelcome sexual attention or advances\n          * Trolling, insulting/derogatory comments, and personal or political attacks\n          * Public or private harassment\n          * Publishing others' private information, such as a physical or electronic address, without explicit permission\n          * Other conduct which could reasonably be considered inappropriate in a professional setting\n\n          ## Our Responsibilities\n\n          Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response\n                            to any instances of unacceptable behavior.\n\n          Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\n\n          ## Scope\n\n          This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address,\n                            posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\n\n          ## Enforcement\n\n          Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [EMAIL]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\n\n          Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\n\n          ## Attribution\n\n          This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\n\n          [homepage]: http://contributor-covenant.org\n          [version]: http://contributor-covenant.org/version/1/4/\n        html_url: http://contributor-covenant.org/version/1/4/\n    code-of-conduct-simple-items:\n      value:\n      - key: citizen_code_of_conduct\n        name: Citizen Code of Conduct\n        url: https://api.github.com/codes_of_conduct/citizen_code_of_conduct\n        html_url: http://citizencodeofconduct.org/\n      - key: contributor_covenant\n        name: Contributor Covenant\n        url: https://api.github.com/codes_of_conduct/contributor_covenant\n        html_url: https://www.contributor-covenant.org/version/2/0/code_of_conduct/\n    gpg-key-items:\n      value:\n      - id: 3\n        primary_key_id: 2\n        key_id: 3262EFF25BA0D270\n        public_key: xsBNBFayYZ...\n        emails:\n        - email: mastahyeti@users.noreply.github.com\n          verified: true\n        subkeys:\n        - id: 4\n          primary_key_id: 3\n          key_id: 4A595D4C72EE49C7\n          public_key: zsBNBFayYZ...\n          emails: []\n          subkeys: []\n          can_sign: false\n          can_encrypt_comms: true\n          can_encrypt_storage: true\n          can_certify: false\n          created_at: '2016-03-24T11:31:04-06:00'\n          expires_at: '2016-03-24T11:31:04-07:00'\n        can_sign: true\n        can_encrypt_comms: false\n        can_encrypt_storage: false\n        can_certify: true\n        created_at: '2016-03-24T11:31:04-06:00'\n        expires_at: '2016-03-24T11:31:04-07:00'\n        raw_key: string\n    gpg-key:\n      value:\n        id: 3\n        primary_key_id: 2\n        key_id: 3262EFF25BA0D270\n        public_key: xsBNBFayYZ...\n        emails:\n        - email: mastahyeti@users.noreply.github.com\n          verified: true\n        subkeys:\n        - id: 4\n          primary_key_id: 3\n          key_id: 4A595D4C72EE49C7\n          public_key: zsBNBFayYZ...\n          emails: []\n          subkeys: []\n          can_sign: false\n          can_encrypt_comms: true\n          can_encrypt_storage: true\n          can_certify: false\n          created_at: '2016-03-24T11:31:04-06:00'\n          expires_at: '2016-03-24T11:31:04-07:00'\n        can_sign: true\n        can_encrypt_comms: false\n        can_encrypt_storage: false\n        can_certify: true\n        created_at: '2016-03-24T11:31:04-06:00'\n        expires_at: '2016-03-24T11:31:04-07:00'\n        raw_key: '\"-----BEGIN PGP PUBLIC KEY BLOCK-----\\nVersion: GnuPG v2\\n\\nmQENBFayYZ0BCAC4hScoJXXpyR+MXGcrBxElqw3FzCVvkViuyeko+Jp76QJhg8kr\\nucRTxbnOoHfda/FmilEa/wxf9ch5/PSrrL26FxEoPHhJolp8fnIDLQeITn94NYdB\\nZtnnEKslpPrG97qSUWIchvyqCPtvOb8+8fWvGx9K/ZWcEEdh1X8+WFR2jMENMeoX\\nwxHWQoPnS7LpX/85/M7VUcJxvDVfv+eHsnQupmE5bGarKNih0oMe3LbdN3qA5PTz\\nSCm6Iudar1VsQ+xTz08ymL7t4pnEtLguQ7EyatFHCjxNblv5RzxoL0tDgN3HqoDz\\nc7TEA+q4RtDQl9amcvQ95emnXmZ974u7UkYdABEBAAG0HlNvbWUgVXNlciA8c29t\\nZXVzZXJAZ21haWwuY29tPokBOAQTAQIAIgUCVrJhnQIbAwYLCQgHAwIGFQgCCQoL\\nBBYCAwECHgECF4AACgkQMmLv8lug0nAViQgArWjI55+7p48URr2z9Jvak+yrBTx1\\nzkufltQAnHTJkq+Kl9dySSmTnOop8o3rE4++IOpYV5Y36PkKf9EZMk4n1RQiDPKE\\nAFtRVTkRaoWzOir9KQXJPfhKrl01j/QzY+utfiMvUoBJZ9ybq8Pa885SljW9lbaX\\nIYw+hl8ZdJ2KStvGrEyfQvRyq3aN5c9TV//4BdGnwx7Qabq/U+G18lizG6f/yq15\\ned7t0KELaCfeKPvytp4VE9/z/Ksah/h3+Qilx07/oG2Ae5kC1bEC9coD/ogPUhbv\\nb2bsBIoY9E9YwsLoif2lU+o1t76zLgUktuNscRRUKobW028H1zuFS/XQhrkBDQRW\\nsmGdAQgApnyyv3i144OLYy0O4UKQxd3e10Y3WpDwfnGIBefAI1m7RxnUxBag/DsU\\n7gi9qLEC4VHSfq4eiNfr1LJOyCL2edTgCWFgBhVjbXjZe6YAOrAnhxwCErnN0Y7N\\n6s8wVh9fObSOyf8ZE6G7JeKpcq9Q6gd/KxagfD48a1v+fyRHpyQc6J9pUEmtrDJ7\\nBjmsd2VWzLBvNWdHyxDNtZweIaqIO9VUYYpr1mtTliNBOZLUelmgrt7HBRcJpWMA\\nS8muVVbuP5MK0trLBq/JB8qUH3zRzB/PhMgzmkIfjEK1VYDWm4E8DYyTWEJcHqkb\\neqFsNjrIlwPaA122BWC6gUOPwwH+oQARAQABiQEfBBgBAgAJBQJWsmGdAhsMAAoJ\\nEDJi7/JboNJwAyAIALd4xcdmGbZD98gScJzqwzkOMcO8zFHqHNvJ42xIFvGny7c0\\n1Rx7iyrdypOby5AxE+viQcjG4rpLZW/xKYBNGrCfDyQO7511I0v8x20EICMlMfD/\\nNrWQCzesEPcUlKTP07d+sFyP8AyseOidbzY/92CpskTgdSBjY/ntLSaoknl/fjJE\\nQM8OkPqU7IraO1Jzzdnm20d5PZL9+PIwIWdSTedU/vBMTJyNcoqvSfKf1wNC66XP\\nhqfYgXJE564AdWZKA3C0IyCqiv+LHwxLnUHio1a4/r91C8KPzxs6tGxRDjXLd7ms\\nuYFGWymiUGOE/giHlcxdYcHzwLnPDliMQOLiTkK5AQ0EVuxMygEIAOD+bW1cDTmE\\nBxh5JECoqeHuwgl6DlLhnubWPkQ4ZeRzBRAsFcEJQlwlJjrzFDicL+lnm6Qq4tt0\\n560TwHdf15/AKTZIZu7H25axvGNzgeaUkJEJdYAq9zTKWwX7wKyzBszi485nQg97\\nMfAqwhMpDW0Qqf8+7Ug+WEmfBSGv9uL3aQC6WEeIsHfri0n0n8v4XgwhfShXguxO\\nCsOztEsuW7WWKW9P4TngKKv4lCHdPlV6FwxeMzODBJvc2fkHVHnqc0PqszJ5xcF8\\n6gZCpMM027SbpeYWCAD5zwJyYP9ntfO1p2HjnQ1dZaP9FeNcO7uIV1Lnd1eGCu6I\\nsrVp5k1f3isAEQEAAYkCPgQYAQIACQUCVuxMygIbAgEpCRAyYu/yW6DScMBdIAQZ\\nAQIABgUCVuxMygAKCRCKohN4dhq2b4tcCACHxmOHVXNpu47OvUGYQydLgMACUlXN\\nlj+HfE0VReqShxdDmpasAY9IRpuMB2RsGK8GbNP+4SlOlAiPf5SMhS7nZNkNDgQQ\\naZ3HFpgrFmFwmE10BKT4iQtoxELLM57z0qGOAfTsEjWFQa4sF+6IHAQR/ptkdkkI\\nBUEXiMnAwVwBysLIJiLO8qdjB6qp52QkT074JVrwywT/P+DkMfC2k4r/AfEbf6eF\\ndmPDuPk6KD87+hJZsSa5MaMUBQVvRO/mgEkhJRITVu58eWGaBOcQJ8gqurhCqM5P\\nDfUA4TJ7wiqM6sS764vV1rOioTTXkszzhClQqET7hPVnVQjenYgv0EZHNyQH/1f1\\n/CYqvV1vFjM9vJjMbxXsATCkZe6wvBVKD8vLsJAr8N+onKQz+4OPc3kmKq7aESu3\\nCi/iuie5KKVwnuNhr9AzT61vEkKxwHcVFEvHB77F6ZAAInhRvjzmQbD2dlPLLQCC\\nqDj71ODSSAPTEmUy6969bgD9PfWei7kNkBIx7s3eBv8yzytSc2EcuUgopqFazquw\\nFs1+tqGHjBvQfTo6bqbJjp/9Ci2pvde3ElV2rAgUlb3lqXyXjRDqrXosh5GcRPQj\\nK8Nhj1BNhnrCVskE4BP0LYbOHuzgm86uXwGCFsY+w2VOsSm16Jx5GHyG5S5WU3+D\\nIts/HFYRLiFgDLmTlxo=\\n=+OzK\\n-----END\n          PGP PUBLIC KEY BLOCK-----\"'\n    key:\n      value:\n        key_id: '012345678912345678'\n        key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\n        id: 2\n        url: https://api.github.com/user/keys/2\n        title: ssh-rsa AAAAB3NzaC1yc2EAAA\n        created_at: '2020-06-11T21:31:57Z'\n        verified: false\n        read_only: false\n    email-items:\n      value:\n      - email: octocat@octocat.org\n        primary: false\n        verified: false\n        visibility: public\n      - email: octocat@github.com\n        primary: false\n        verified: false\n        visibility: \n      - email: mona@github.com\n        primary: false\n        verified: false\n        visibility: \n    email-items-2:\n      value:\n      - email: octocat@github.com\n        verified: true\n        primary: true\n        visibility: public\n    public-user-default-response:\n      summary: Default response\n      value:\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        name: monalisa octocat\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        hireable: false\n        bio: There once was...\n        twitter_username: monatheoctocat\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        created_at: '2008-01-14T04:33:35Z'\n        updated_at: '2008-01-14T04:33:35Z'\n    public-user-response-with-git-hub-plan-information:\n      summary: Response with GitHub plan information\n      value:\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        name: monalisa octocat\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        hireable: false\n        bio: There once was...\n        twitter_username: monatheoctocat\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        created_at: '2008-01-14T04:33:35Z'\n        updated_at: '2008-01-14T04:33:35Z'\n        plan:\n          name: pro\n          space: 976562499\n          collaborators: 0\n          private_repos: 9999\n    key-items:\n      value:\n      - key_id: '012345678912345678'\n        key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\n        id: 2\n        url: https://api.github.com/user/keys/2\n        title: ssh-rsa AAAAB3NzaC1yc2EAAA\n        created_at: '2020-06-11T21:31:57Z'\n        verified: false\n        read_only: false\n      - key_id: '012345678912345608'\n        key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJy931234\n        id: 3\n        url: https://api.github.com/user/keys/3\n        title: ssh-rsa AAAAB3NzaC1yc2EAAB\n        created_at: '2020-07-11T21:31:57Z'\n        verified: false\n        read_only: false\n    private-user-response-with-public-and-private-profile-information:\n      summary: Response with public and private profile information\n      value:\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        name: monalisa octocat\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        hireable: false\n        bio: There once was...\n        twitter_username: monatheoctocat\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        created_at: '2008-01-14T04:33:35Z'\n        updated_at: '2008-01-14T04:33:35Z'\n        private_gists: 81\n        total_private_repos: 100\n        owned_private_repos: 100\n        disk_usage: 10000\n        collaborators: 8\n        two_factor_authentication: true\n        plan:\n          name: Medium\n          space: 400\n          private_repos: 20\n          collaborators: 0\n    private-user-response-with-public-profile-information:\n      summary: Response with public profile information\n      value:\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        name: monalisa octocat\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        hireable: false\n        bio: There once was...\n        twitter_username: monatheoctocat\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        created_at: '2008-01-14T04:33:35Z'\n        updated_at: '2008-01-14T04:33:35Z'\n    private-user:\n      value:\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        name: monalisa octocat\n        company: GitHub\n        blog: https://github.com/blog\n        location: San Francisco\n        email: octocat@github.com\n        hireable: false\n        bio: There once was...\n        twitter_username: monatheoctocat\n        public_repos: 2\n        public_gists: 1\n        followers: 20\n        following: 0\n        created_at: '2008-01-14T04:33:35Z'\n        updated_at: '2008-01-14T04:33:35Z'\n        private_gists: 81\n        total_private_repos: 100\n        owned_private_repos: 100\n        disk_usage: 10000\n        collaborators: 8\n        two_factor_authentication: true\n        plan:\n          name: Medium\n          space: 400\n          private_repos: 20\n          collaborators: 0\n    hovercard:\n      value:\n        contexts:\n        - message: Owns this repository\n          octicon: repo\n    key-simple-items:\n      value:\n      - id: 1\n        key: ssh-rsa AAA...\n    team-project-items:\n      value:\n      - owner_url: https://api.github.com/orgs/octocat\n        url: https://api.github.com/projects/1002605\n        html_url: https://github.com/orgs/api-playground/projects/1\n        columns_url: https://api.github.com/projects/1002605/columns\n        id: 1002605\n        node_id: MDc6UHJvamVjdDEwMDI2MDU=\n        name: Organization Roadmap\n        body: High-level roadmap for the upcoming year.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-11T20:09:31Z'\n        updated_at: '2014-03-04T18:58:10Z'\n        organization_permission: write\n        private: false\n        permissions:\n          read: true\n          write: true\n          admin: false\n    minimal-repository-alternative-response-with-extra-repository-information:\n      summary: Alternative response with extra repository information\n      value:\n        organization:\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: Organization\n          site_admin: false\n        parent:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          allow_squash_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          anonymous_access_enabled: false\n        source:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          allow_squash_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          anonymous_access_enabled: false\n        permissions:\n          pull: true\n          triage: true\n          push: false\n          maintain: false\n          admin: false\n    team-discussion-comment:\n      value:\n        author:\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        body: Do you like apples?\n        body_html: \"<p>Do you like apples?</p>\"\n        body_version: 5eb32b219cdc6a5a9b29ba5d6caa9c51\n        created_at: '2018-01-15T23:53:58Z'\n        last_edited_at: \n        discussion_url: https://api.github.com/teams/2403582/discussions/1\n        html_url: https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\n        node_id: MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\n        number: 1\n        updated_at: '2018-01-15T23:53:58Z'\n        url: https://api.github.com/teams/2403582/discussions/1/comments/1\n        reactions:\n          url: https://api.github.com/teams/2403582/discussions/1/reactions\n          total_count: 5\n          \"+1\": 3\n          \"-1\": 1\n          laugh: 0\n          confused: 0\n          heart: 1\n          hooray: 0\n          eyes: 1\n          rocket: 1\n    team-discussion-comment-2:\n      value:\n        author:\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        body: Do you like pineapples?\n        body_html: \"<p>Do you like pineapples?</p>\"\n        body_version: e6907b24d9c93cc0c5024a7af5888116\n        created_at: '2018-01-15T23:53:58Z'\n        last_edited_at: '2018-01-26T18:22:20Z'\n        discussion_url: https://api.github.com/teams/2403582/discussions/1\n        html_url: https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\n        node_id: MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\n        number: 1\n        updated_at: '2018-01-26T18:22:20Z'\n        url: https://api.github.com/teams/2403582/discussions/1/comments/1\n        reactions:\n          url: https://api.github.com/teams/2403582/discussions/1/reactions\n          total_count: 5\n          \"+1\": 3\n          \"-1\": 1\n          laugh: 0\n          confused: 0\n          heart: 1\n          hooray: 0\n          eyes: 1\n          rocket: 1\n    team-discussion:\n      value:\n        author:\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        body: Hi! This is an area for us to collaborate as a team.\n        body_html: \"<p>Hi! This is an area for us to collaborate as a team</p>\"\n        body_version: 0d495416a700fb06133c612575d92bfb\n        comments_count: 0\n        comments_url: https://api.github.com/teams/2343027/discussions/1/comments\n        created_at: '2018-01-25T18:56:31Z'\n        last_edited_at: \n        html_url: https://github.com/orgs/github/teams/justice-league/discussions/1\n        node_id: MDE0OlRlYW1EaXNjdXNzaW9uMQ==\n        number: 1\n        pinned: false\n        private: false\n        team_url: https://api.github.com/teams/2343027\n        title: Our first team post\n        updated_at: '2018-01-25T18:56:31Z'\n        url: https://api.github.com/teams/2343027/discussions/1\n        reactions:\n          url: https://api.github.com/teams/2343027/discussions/1/reactions\n          total_count: 5\n          \"+1\": 3\n          \"-1\": 1\n          laugh: 0\n          confused: 0\n          heart: 1\n          hooray: 0\n          eyes: 1\n          rocket: 1\n    team-discussion-2:\n      value:\n        author:\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        body: Hi! This is an area for us to collaborate as a team.\n        body_html: \"<p>Hi! This is an area for us to collaborate as a team</p>\"\n        body_version: 0d495416a700fb06133c612575d92bfb\n        comments_count: 1\n        comments_url: https://api.github.com/teams/2343027/discussions/1/comments\n        created_at: '2018-01-25T18:56:31Z'\n        last_edited_at: '2018-01-26T18:22:20Z'\n        html_url: https://github.com/orgs/github/teams/justice-league/discussions/1\n        node_id: MDE0OlRlYW1EaXNjdXNzaW9uMQ==\n        number: 1\n        pinned: false\n        private: false\n        team_url: https://api.github.com/teams/2343027\n        title: Welcome to our first team post\n        updated_at: '2018-01-26T18:22:20Z'\n        url: https://api.github.com/teams/2343027/discussions/1\n        reactions:\n          url: https://api.github.com/teams/2343027/discussions/1/reactions\n          total_count: 5\n          \"+1\": 3\n          \"-1\": 1\n          laugh: 0\n          confused: 0\n          heart: 1\n          hooray: 0\n          eyes: 1\n          rocket: 1\n    team-membership-response-if-users-membership-with-team-is-now-active:\n      summary: Response if user's membership with team is now active\n      value:\n        url: https://api.github.com/teams/1/memberships/octocat\n        role: member\n        state: active\n    team-membership-response-if-users-membership-with-team-is-now-pending:\n      summary: Response if user's membership with team is now pending\n      value:\n        url: https://api.github.com/teams/1/memberships/octocat\n        role: member\n        state: pending\n    team-membership-response-if-user-has-an-active-membership-with-team:\n      summary: Response if user has an active membership with team\n      value:\n        url: https://api.github.com/teams/1/memberships/octocat\n        role: member\n        state: active\n    team-membership-response-if-user-is-a-team-maintainer:\n      summary: Response if user is a team maintainer\n      value:\n        url: https://api.github.com/teams/1/memberships/octocat\n        role: maintainer\n        state: active\n    team-membership-response-if-user-has-a-pending-membership-with-team:\n      summary: Response if user has a pending membership with team\n      value:\n        url: https://api.github.com/teams/1/memberships/octocat\n        role: member\n        state: pending\n    team-discussion-items:\n      value:\n      - author:\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        body: Hi! This is an area for us to collaborate as a team.\n        body_html: \"<p>Hi! This is an area for us to collaborate as a team</p>\"\n        body_version: 0d495416a700fb06133c612575d92bfb\n        comments_count: 0\n        comments_url: https://api.github.com/teams/2343027/discussions/1/comments\n        created_at: '2018-01-25T18:56:31Z'\n        last_edited_at: \n        html_url: https://github.com/orgs/github/teams/justice-league/discussions/1\n        node_id: MDE0OlRlYW1EaXNjdXNzaW9uMQ==\n        number: 1\n        pinned: false\n        private: false\n        team_url: https://api.github.com/teams/2343027\n        title: Our first team post\n        updated_at: '2018-01-25T18:56:31Z'\n        url: https://api.github.com/teams/2343027/discussions/1\n        reactions:\n          url: https://api.github.com/teams/2343027/discussions/1/reactions\n          total_count: 5\n          \"+1\": 3\n          \"-1\": 1\n          laugh: 0\n          confused: 0\n          heart: 1\n          hooray: 0\n          eyes: 1\n          rocket: 1\n    team-full:\n      value:\n        id: 1\n        node_id: MDQ6VGVhbTE=\n        url: https://api.github.com/teams/1\n        html_url: https://api.github.com/teams/justice-league\n        name: Justice League\n        slug: justice-league\n        description: A great team.\n        privacy: closed\n        permission: admin\n        members_url: https://api.github.com/teams/1/members{/member}\n        repositories_url: https://api.github.com/teams/1/repos\n        parent: \n        members_count: 3\n        repos_count: 10\n        created_at: '2017-07-14T16:53:42Z'\n        updated_at: '2017-08-17T12:37:15Z'\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n          name: github\n          company: GitHub\n          blog: https://github.com/blog\n          location: San Francisco\n          email: octocat@github.com\n          is_verified: true\n          has_organization_projects: true\n          has_repository_projects: true\n          public_repos: 2\n          public_gists: 1\n          followers: 20\n          following: 0\n          html_url: https://github.com/octocat\n          created_at: '2008-01-14T04:33:35Z'\n          updated_at: '2017-08-17T12:37:15Z'\n          type: Organization\n    team-discussion-comment-items:\n      value:\n      - author:\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        body: Do you like apples?\n        body_html: \"<p>Do you like apples?</p>\"\n        body_version: 5eb32b219cdc6a5a9b29ba5d6caa9c51\n        created_at: '2018-01-15T23:53:58Z'\n        last_edited_at: \n        discussion_url: https://api.github.com/teams/2403582/discussions/1\n        html_url: https://github.com/orgs/github/teams/justice-league/discussions/1/comments/1\n        node_id: MDIxOlRlYW1EaXNjdXNzaW9uQ29tbWVudDE=\n        number: 1\n        updated_at: '2018-01-15T23:53:58Z'\n        url: https://api.github.com/teams/2403582/discussions/1/comments/1\n        reactions:\n          url: https://api.github.com/teams/2403582/discussions/1/reactions\n          total_count: 5\n          \"+1\": 3\n          \"-1\": 1\n          laugh: 0\n          confused: 0\n          heart: 1\n          hooray: 0\n          eyes: 1\n          rocket: 1\n    team-project:\n      value:\n        owner_url: https://api.github.com/orgs/octocat\n        url: https://api.github.com/projects/1002605\n        html_url: https://github.com/orgs/api-playground/projects/1\n        columns_url: https://api.github.com/projects/1002605/columns\n        id: 1002605\n        node_id: MDc6UHJvamVjdDEwMDI2MDU=\n        name: Organization Roadmap\n        body: High-level roadmap for the upcoming year.\n        number: 1\n        state: open\n        creator:\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        created_at: '2011-04-11T20:09:31Z'\n        updated_at: '2014-03-04T18:58:10Z'\n        organization_permission: write\n        private: false\n        permissions:\n          read: true\n          write: true\n          admin: false\n    team-full-items:\n      value:\n      - id: 1\n        node_id: MDQ6VGVhbTE=\n        url: https://api.github.com/teams/1\n        html_url: https://api.github.com/teams/justice-league\n        name: Justice League\n        slug: justice-league\n        description: A great team.\n        privacy: closed\n        permission: admin\n        members_url: https://api.github.com/teams/1/members{/member}\n        repositories_url: https://api.github.com/teams/1/repos\n        parent: \n        members_count: 3\n        repos_count: 10\n        created_at: '2017-07-14T16:53:42Z'\n        updated_at: '2017-08-17T12:37:15Z'\n        organization:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          hooks_url: https://api.github.com/orgs/github/hooks\n          issues_url: https://api.github.com/orgs/github/issues\n          members_url: https://api.github.com/orgs/github/members{/member}\n          public_members_url: https://api.github.com/orgs/github/public_members{/member}\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          description: A great organization\n          name: github\n          company: GitHub\n          blog: https://github.com/blog\n          location: San Francisco\n          email: octocat@github.com\n          is_verified: true\n          has_organization_projects: true\n          has_repository_projects: true\n          public_repos: 2\n          public_gists: 1\n          followers: 20\n          following: 0\n          html_url: https://github.com/octocat\n          created_at: '2008-01-14T04:33:35Z'\n          updated_at: '2017-08-17T12:37:15Z'\n          type: Organization\n    team-items-response-if-child-teams-exist:\n      value:\n      - id: 2\n        node_id: MDQ6VGVhbTI=\n        url: https://api.github.com/teams/2\n        name: Original Roster\n        slug: original-roster\n        description: Started it all.\n        privacy: closed\n        permission: admin\n        members_url: https://api.github.com/teams/2/members{/member}\n        repositories_url: https://api.github.com/teams/2/repos\n        parent:\n          id: 1\n          node_id: MDQ6VGVhbTE=\n          url: https://api.github.com/teams/1\n          html_url: https://api.github.com/teams/justice-league\n          name: Justice League\n          slug: justice-league\n          description: A great team.\n          privacy: closed\n          permission: admin\n          members_url: https://api.github.com/teams/1/members{/member}\n          repositories_url: https://api.github.com/teams/1/repos\n        html_url: https://github.com/orgs/rails/teams/core\n    pull-request-review-comment-2:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n        pull_request_review_id: 42\n        id: 10\n        node_id: MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\n        diff_hunk: \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\"\n        path: file1.txt\n        position: 1\n        original_position: 4\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        original_commit_id: 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\n        in_reply_to_id: 8\n        user:\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        body: Great stuff!\n        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        html_url: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        author_association: NONE\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        start_line: 1\n        original_start_line: 1\n        start_side: RIGHT\n        line: 2\n        original_line: 2\n        side: RIGHT\n    pull-request-review-comment-items:\n      value:\n      - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n        pull_request_review_id: 42\n        id: 10\n        node_id: MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\n        diff_hunk: \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\"\n        path: file1.txt\n        position: 1\n        original_position: 4\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        original_commit_id: 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\n        in_reply_to_id: 8\n        user:\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        body: Great stuff!\n        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        html_url: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        author_association: NONE\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        start_line: 1\n        original_start_line: 1\n        start_side: RIGHT\n        line: 2\n        original_line: 2\n        side: RIGHT\n    pull-request-review-comment-example-for-a-multi-line-comment:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n        pull_request_review_id: 42\n        id: 10\n        node_id: MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\n        diff_hunk: \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\"\n        path: file1.txt\n        position: 1\n        original_position: 4\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        original_commit_id: 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\n        in_reply_to_id: 8\n        user:\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        body: Great stuff!\n        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        html_url: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        author_association: NONE\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        start_line: 1\n        original_start_line: 1\n        start_side: RIGHT\n        line: 2\n        original_line: 2\n        side: RIGHT\n    pull-request-review-5:\n      value:\n        id: 80\n        node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\n        user:\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        body: This is close to perfect! Please address the suggested inline change.\n          And add more about this.\n        state: CHANGES_REQUESTED\n        html_url: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        _links:\n          html:\n            href: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        submitted_at: '2019-11-17T17:43:43Z'\n        commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\n        author_association: collaborator\n    pull-request-review-4:\n      value:\n        id: 80\n        node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\n        user:\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        body: Here is the body for the review.\n        state: APPROVED\n        html_url: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        _links:\n          html:\n            href: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        submitted_at: '2019-11-17T17:43:43Z'\n        commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\n        author_association: collaborator\n    pull-request-review:\n      value:\n        id: 80\n        node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\n        user:\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        body: This is close to perfect! Please address the suggested inline change.\n        state: CHANGES_REQUESTED\n        html_url: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        _links:\n          html:\n            href: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        submitted_at: '2019-11-17T17:43:43Z'\n        commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\n        author_association: collaborator\n    pull-request-review-3:\n      value:\n        id: 80\n        node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\n        user:\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        body: Here is the body for the review.\n        state: DISMISSED\n        html_url: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        _links:\n          html:\n            href: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        submitted_at: '2019-11-17T17:43:43Z'\n        commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\n        author_association: collaborator\n    simple-pull-request-review-request:\n      value:\n        users:\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        teams:\n        - id: 1\n          node_id: MDQ6VGVhbTE=\n          url: https://api.github.com/teams/1\n          html_url: https://api.github.com/teams/justice-league\n          name: Justice League\n          slug: justice-league\n          description: A great team.\n          privacy: closed\n          permission: admin\n          members_url: https://api.github.com/teams/1/members{/member}\n          repositories_url: https://api.github.com/teams/1/repos\n          parent: \n    pull-request-review-request:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n        id: 1\n        node_id: MDExOlB1bGxSZXF1ZXN0MQ==\n        html_url: https://github.com/octocat/Hello-World/pull/1347\n        diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n        patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n        issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        commits_url: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n        review_comments_url: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n        review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        number: 1347\n        state: open\n        locked: true\n        title: Amazing new feature\n        user:\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        body: Please pull these awesome changes in!\n        labels:\n        - id: 208045946\n          node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n          url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n          name: bug\n          description: Something isn't working\n          color: f29513\n          default: true\n        milestone:\n          url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n          html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n          labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n          id: 1002604\n          node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n          number: 1\n          state: open\n          title: v1.0\n          description: Tracking milestone for version 1.0\n          creator:\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          open_issues: 4\n          closed_issues: 8\n          created_at: '2011-04-10T20:09:31Z'\n          updated_at: '2014-03-03T18:58:10Z'\n          closed_at: '2013-02-12T13:22:01Z'\n          due_on: '2012-10-09T23:39:01Z'\n        active_lock_reason: too heated\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:01:12Z'\n        closed_at: '2011-01-26T19:01:12Z'\n        merged_at: '2011-01-26T19:01:12Z'\n        merge_commit_sha: e5bd3914e2e596debea16f433f57875b5b90bcd6\n        assignee:\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        assignees:\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        - login: hubot\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/hubot_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/hubot\n          html_url: https://github.com/hubot\n          followers_url: https://api.github.com/users/hubot/followers\n          following_url: https://api.github.com/users/hubot/following{/other_user}\n          gists_url: https://api.github.com/users/hubot/gists{/gist_id}\n          starred_url: https://api.github.com/users/hubot/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/hubot/subscriptions\n          organizations_url: https://api.github.com/users/hubot/orgs\n          repos_url: https://api.github.com/users/hubot/repos\n          events_url: https://api.github.com/users/hubot/events{/privacy}\n          received_events_url: https://api.github.com/users/hubot/received_events\n          type: User\n          site_admin: true\n        requested_reviewers:\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        - login: hubot\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/hubot_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/hubot\n          html_url: https://github.com/hubot\n          followers_url: https://api.github.com/users/hubot/followers\n          following_url: https://api.github.com/users/hubot/following{/other_user}\n          gists_url: https://api.github.com/users/hubot/gists{/gist_id}\n          starred_url: https://api.github.com/users/hubot/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/hubot/subscriptions\n          organizations_url: https://api.github.com/users/hubot/orgs\n          repos_url: https://api.github.com/users/hubot/repos\n          events_url: https://api.github.com/users/hubot/events{/privacy}\n          received_events_url: https://api.github.com/users/hubot/received_events\n          type: User\n          site_admin: true\n        - login: other_user\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/other_user_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/other_user\n          html_url: https://github.com/other_user\n          followers_url: https://api.github.com/users/other_user/followers\n          following_url: https://api.github.com/users/other_user/following{/other_user}\n          gists_url: https://api.github.com/users/other_user/gists{/gist_id}\n          starred_url: https://api.github.com/users/other_user/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/other_user/subscriptions\n          organizations_url: https://api.github.com/users/other_user/orgs\n          repos_url: https://api.github.com/users/other_user/repos\n          events_url: https://api.github.com/users/other_user/events{/privacy}\n          received_events_url: https://api.github.com/users/other_user/received_events\n          type: User\n          site_admin: false\n        requested_teams:\n        - id: 1\n          node_id: MDQ6VGVhbTE=\n          url: https://api.github.com/teams/1\n          html_url: https://api.github.com/teams/justice-league\n          name: Justice League\n          slug: justice-league\n          description: A great team.\n          privacy: closed\n          permission: admin\n          members_url: https://api.github.com/teams/1/members{/member}\n          repositories_url: https://api.github.com/teams/1/repos\n        head:\n          label: octocat:new-topic\n          ref: new-topic\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          user:\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          repo:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World\n            full_name: octocat/Hello-World\n            owner:\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            private: false\n            html_url: https://github.com/octocat/Hello-World\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World\n            archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World.git\n            mirror_url: git:git.example.com/octocat/Hello-World\n            hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World\n            homepage: https://github.com\n            language: \n            forks_count: 9\n            stargazers_count: 80\n            watchers_count: 80\n            size: 108\n            default_branch: master\n            open_issues_count: 0\n            is_template: true\n            topics:\n            - octocat\n            - atom\n            - electron\n            - api\n            has_issues: true\n            has_projects: true\n            has_wiki: true\n            has_pages: false\n            has_downloads: true\n            archived: false\n            disabled: false\n            visibility: public\n            pushed_at: '2011-01-26T19:06:43Z'\n            created_at: '2011-01-26T19:01:12Z'\n            updated_at: '2011-01-26T19:14:43Z'\n            permissions:\n              admin: false\n              push: false\n              pull: true\n            allow_rebase_merge: true\n            template_repository: \n            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\n            license:\n              key: mit\n              name: MIT License\n              url: https://api.github.com/licenses/mit\n              spdx_id: MIT\n              node_id: MDc6TGljZW5zZW1pdA==\n              html_url: https://github.com/licenses/mit\n            forks: 1\n            open_issues: 1\n            watchers: 1\n        base:\n          label: octocat:master\n          ref: master\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          user:\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          repo:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World\n            full_name: octocat/Hello-World\n            owner:\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            private: false\n            html_url: https://github.com/octocat/Hello-World\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World\n            archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World.git\n            mirror_url: git:git.example.com/octocat/Hello-World\n            hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World\n            homepage: https://github.com\n            language: \n            forks_count: 9\n            stargazers_count: 80\n            watchers_count: 80\n            size: 108\n            default_branch: master\n            open_issues_count: 0\n            is_template: true\n            topics:\n            - octocat\n            - atom\n            - electron\n            - api\n            has_issues: true\n            has_projects: true\n            has_wiki: true\n            has_pages: false\n            has_downloads: true\n            archived: false\n            disabled: false\n            visibility: public\n            pushed_at: '2011-01-26T19:06:43Z'\n            created_at: '2011-01-26T19:01:12Z'\n            updated_at: '2011-01-26T19:14:43Z'\n            permissions:\n              admin: false\n              push: false\n              pull: true\n            allow_rebase_merge: true\n            template_repository: \n            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            delete_branch_on_merge: true\n            allow_merge_commit: true\n            subscribers_count: 42\n            network_count: 0\n            license:\n              key: mit\n              name: MIT License\n              url: https://api.github.com/licenses/mit\n              spdx_id: MIT\n              node_id: MDc6TGljZW5zZW1pdA==\n              html_url: https://api.github.com/licenses/mit\n            forks: 1\n            open_issues: 1\n            watchers: 1\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1347\n          issue:\n            href: https://api.github.com/repos/octocat/Hello-World/issues/1347\n          comments:\n            href: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n          review_comments:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n          review_comment:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n          commits:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n          statuses:\n            href: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        author_association: OWNER\n        draft: false\n    pull-request:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n        id: 1\n        node_id: MDExOlB1bGxSZXF1ZXN0MQ==\n        html_url: https://github.com/octocat/Hello-World/pull/1347\n        diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n        patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n        issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        commits_url: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n        review_comments_url: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n        review_comment_url: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        number: 1347\n        state: open\n        locked: true\n        title: Amazing new feature\n        user:\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        body: Please pull these awesome changes in!\n        labels:\n        - id: 208045946\n          node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n          url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n          name: bug\n          description: Something isn't working\n          color: f29513\n          default: true\n        milestone:\n          url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n          html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n          labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n          id: 1002604\n          node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n          number: 1\n          state: open\n          title: v1.0\n          description: Tracking milestone for version 1.0\n          creator:\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          open_issues: 4\n          closed_issues: 8\n          created_at: '2011-04-10T20:09:31Z'\n          updated_at: '2014-03-03T18:58:10Z'\n          closed_at: '2013-02-12T13:22:01Z'\n          due_on: '2012-10-09T23:39:01Z'\n        active_lock_reason: too heated\n        created_at: '2011-01-26T19:01:12Z'\n        updated_at: '2011-01-26T19:01:12Z'\n        closed_at: '2011-01-26T19:01:12Z'\n        merged_at: '2011-01-26T19:01:12Z'\n        merge_commit_sha: e5bd3914e2e596debea16f433f57875b5b90bcd6\n        assignee:\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        assignees:\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        - login: hubot\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/hubot_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/hubot\n          html_url: https://github.com/hubot\n          followers_url: https://api.github.com/users/hubot/followers\n          following_url: https://api.github.com/users/hubot/following{/other_user}\n          gists_url: https://api.github.com/users/hubot/gists{/gist_id}\n          starred_url: https://api.github.com/users/hubot/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/hubot/subscriptions\n          organizations_url: https://api.github.com/users/hubot/orgs\n          repos_url: https://api.github.com/users/hubot/repos\n          events_url: https://api.github.com/users/hubot/events{/privacy}\n          received_events_url: https://api.github.com/users/hubot/received_events\n          type: User\n          site_admin: true\n        requested_reviewers:\n        - login: other_user\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/other_user_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/other_user\n          html_url: https://github.com/other_user\n          followers_url: https://api.github.com/users/other_user/followers\n          following_url: https://api.github.com/users/other_user/following{/other_user}\n          gists_url: https://api.github.com/users/other_user/gists{/gist_id}\n          starred_url: https://api.github.com/users/other_user/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/other_user/subscriptions\n          organizations_url: https://api.github.com/users/other_user/orgs\n          repos_url: https://api.github.com/users/other_user/repos\n          events_url: https://api.github.com/users/other_user/events{/privacy}\n          received_events_url: https://api.github.com/users/other_user/received_events\n          type: User\n          site_admin: false\n        requested_teams:\n        - id: 1\n          node_id: MDQ6VGVhbTE=\n          url: https://api.github.com/teams/1\n          html_url: https://api.github.com/teams/justice-league\n          name: Justice League\n          slug: justice-league\n          description: A great team.\n          privacy: closed\n          permission: admin\n          members_url: https://api.github.com/teams/1/members{/member}\n          repositories_url: https://api.github.com/teams/1/repos\n        head:\n          label: octocat:new-topic\n          ref: new-topic\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          user:\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          repo:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World\n            full_name: octocat/Hello-World\n            owner:\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            private: false\n            html_url: https://github.com/octocat/Hello-World\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World\n            archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World.git\n            mirror_url: git:git.example.com/octocat/Hello-World\n            hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World\n            homepage: https://github.com\n            language: \n            forks_count: 9\n            stargazers_count: 80\n            watchers_count: 80\n            size: 108\n            default_branch: master\n            open_issues_count: 0\n            topics:\n            - octocat\n            - atom\n            - electron\n            - api\n            has_issues: true\n            has_projects: true\n            has_wiki: true\n            has_pages: false\n            has_downloads: true\n            archived: false\n            disabled: false\n            pushed_at: '2011-01-26T19:06:43Z'\n            created_at: '2011-01-26T19:01:12Z'\n            updated_at: '2011-01-26T19:14:43Z'\n            permissions:\n              admin: false\n              push: false\n              pull: true\n            allow_rebase_merge: true\n            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            allow_merge_commit: true\n            forks: 123\n            open_issues: 123\n            license:\n              key: mit\n              name: MIT License\n              url: https://api.github.com/licenses/mit\n              spdx_id: MIT\n              node_id: MDc6TGljZW5zZW1pdA==\n            watchers: 123\n        base:\n          label: octocat:master\n          ref: master\n          sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n          user:\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          repo:\n            id: 1296269\n            node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n            name: Hello-World\n            full_name: octocat/Hello-World\n            owner:\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            private: false\n            html_url: https://github.com/octocat/Hello-World\n            description: This your first repo!\n            fork: false\n            url: https://api.github.com/repos/octocat/Hello-World\n            archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n            assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n            blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n            branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n            collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n            comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n            commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n            compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n            contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n            contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n            deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n            downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n            events_url: https://api.github.com/repos/octocat/Hello-World/events\n            forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n            git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n            git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n            git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n            git_url: git:github.com/octocat/Hello-World.git\n            issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n            issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n            issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n            keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n            labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n            languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n            merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n            milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n            notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n            pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n            releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n            ssh_url: git@github.com:octocat/Hello-World.git\n            stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n            statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n            subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n            subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n            tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n            teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n            trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n            clone_url: https://github.com/octocat/Hello-World.git\n            mirror_url: git:git.example.com/octocat/Hello-World\n            hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n            svn_url: https://svn.github.com/octocat/Hello-World\n            homepage: https://github.com\n            language: \n            forks_count: 9\n            stargazers_count: 80\n            watchers_count: 80\n            size: 108\n            default_branch: master\n            open_issues_count: 0\n            topics:\n            - octocat\n            - atom\n            - electron\n            - api\n            has_issues: true\n            has_projects: true\n            has_wiki: true\n            has_pages: false\n            has_downloads: true\n            archived: false\n            disabled: false\n            pushed_at: '2011-01-26T19:06:43Z'\n            created_at: '2011-01-26T19:01:12Z'\n            updated_at: '2011-01-26T19:14:43Z'\n            permissions:\n              admin: false\n              push: false\n              pull: true\n            allow_rebase_merge: true\n            temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n            allow_squash_merge: true\n            allow_merge_commit: true\n            forks: 123\n            open_issues: 123\n            license:\n              key: mit\n              name: MIT License\n              url: https://api.github.com/licenses/mit\n              spdx_id: MIT\n              node_id: MDc6TGljZW5zZW1pdA==\n            watchers: 123\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1347\n          issue:\n            href: https://api.github.com/repos/octocat/Hello-World/issues/1347\n          comments:\n            href: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n          review_comments:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347/comments\n          review_comment:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments{/number}\n          commits:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1347/commits\n          statuses:\n            href: https://api.github.com/repos/octocat/Hello-World/statuses/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        author_association: OWNER\n        draft: false\n        merged: false\n        mergeable: true\n        rebaseable: true\n        mergeable_state: clean\n        merged_by:\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        comments: 10\n        review_comments: 0\n        maintainer_can_modify: true\n        commits: 3\n        additions: 100\n        deletions: 3\n        changed_files: 5\n    pull-request-review-items:\n      value:\n      - id: 80\n        node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA=\n        user:\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        body: Here is the body for the review.\n        state: APPROVED\n        html_url: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        _links:\n          html:\n            href: https://github.com/octocat/Hello-World/pull/12#pullrequestreview-80\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/12\n        submitted_at: '2019-11-17T17:43:43Z'\n        commit_id: ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091\n        author_association: collaborator\n    pull-request-merge-result-response-if-merge-was-successful:\n      value:\n        sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        merged: true\n        message: Pull Request successfully merged\n    diff-entry-items:\n      value:\n      - sha: bbcd538c8e72b8c175046e27cc8f907076331401\n        filename: file1.txt\n        status: added\n        additions: 103\n        deletions: 21\n        changes: 124\n        blob_url: https://github.com/octocat/Hello-World/blob/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\n        raw_url: https://github.com/octocat/Hello-World/raw/6dcb09b5b57875f334f61aebed695e2e4193db5e/file1.txt\n        contents_url: https://api.github.com/repos/octocat/Hello-World/contents/file1.txt?ref=6dcb09b5b57875f334f61aebed695e2e4193db5e\n        patch: \"@@ -132,7 +132,7 @@ module Test @@ -1000,7 +1000,7 @@ module Test\"\n    pull-request-review-comment:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n        pull_request_review_id: 42\n        id: 10\n        node_id: MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\n        diff_hunk: \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\"\n        path: file1.txt\n        position: 1\n        original_position: 4\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        original_commit_id: 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\n        in_reply_to_id: 426899381\n        user:\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        body: Great stuff!\n        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        html_url: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        author_association: NONE\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        start_line: 1\n        original_start_line: 1\n        start_side: RIGHT\n        line: 2\n        original_line: 2\n        side: RIGHT\n    review-comment-items:\n      value:\n      - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n        pull_request_review_id: 42\n        id: 10\n        node_id: MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDEw\n        diff_hunk: \"@@ -16,33 +16,40 @@ public class Connection : IConnection...\"\n        path: file1.txt\n        position: 1\n        original_position: 4\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        original_commit_id: 9c48853fa3dc5c1c3d6f1f1cd1f2743e72652840\n        in_reply_to_id: 8\n        user:\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        body: Great stuff!\n        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        html_url: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n        pull_request_url: https://api.github.com/repos/octocat/Hello-World/pulls/1\n        author_association: NONE\n        _links:\n          self:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1\n          html:\n            href: https://github.com/octocat/Hello-World/pull/1#discussion-diff-1\n          pull_request:\n            href: https://api.github.com/repos/octocat/Hello-World/pulls/1\n    issue-with-repo-items:\n      value:\n      - id: 1\n        node_id: MDU6SXNzdWUx\n        url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        repository_url: https://api.github.com/repos/octocat/Hello-World\n        labels_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        events_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/events\n        html_url: https://github.com/octocat/Hello-World/issues/1347\n        number: 1347\n        state: open\n        title: Found a bug\n        body: I'm having a problem with this.\n        user:\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        labels:\n        - id: 208045946\n          node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n          url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n          name: bug\n          description: Something isn't working\n          color: f29513\n          default: true\n        assignee:\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        assignees:\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        milestone:\n          url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n          html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n          labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n          id: 1002604\n          node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n          number: 1\n          state: open\n          title: v1.0\n          description: Tracking milestone for version 1.0\n          creator:\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          open_issues: 4\n          closed_issues: 8\n          created_at: '2011-04-10T20:09:31Z'\n          updated_at: '2014-03-03T18:58:10Z'\n          closed_at: '2013-02-12T13:22:01Z'\n          due_on: '2012-10-09T23:39:01Z'\n        locked: true\n        active_lock_reason: too heated\n        comments: 0\n        pull_request:\n          url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          html_url: https://github.com/octocat/Hello-World/pull/1347\n          diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n          patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n        closed_at: \n        created_at: '2011-04-22T13:33:48Z'\n        updated_at: '2011-04-22T13:33:48Z'\n        repository:\n          id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n        author_association: collaborator\n    milestone:\n      value:\n        url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n        html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n        labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n        id: 1002604\n        node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n        number: 1\n        state: open\n        title: v1.0\n        description: Tracking milestone for version 1.0\n        creator:\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        open_issues: 4\n        closed_issues: 8\n        created_at: '2011-04-10T20:09:31Z'\n        updated_at: '2014-03-03T18:58:10Z'\n        closed_at: '2013-02-12T13:22:01Z'\n        due_on: '2012-10-09T23:39:01Z'\n    label-items-2:\n      value:\n      - id: 208045946\n        node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n        url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n        name: bug\n        description: Something isn't working\n        color: f29513\n        default: true\n    milestone-items:\n      value:\n      - url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n        html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n        labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n        id: 1002604\n        node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n        number: 1\n        state: open\n        title: v1.0\n        description: Tracking milestone for version 1.0\n        creator:\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        open_issues: 4\n        closed_issues: 8\n        created_at: '2011-04-10T20:09:31Z'\n        updated_at: '2014-03-03T18:58:10Z'\n        closed_at: '2013-02-12T13:22:01Z'\n        due_on: '2012-10-09T23:39:01Z'\n    issue-comment:\n      value:\n        id: 1\n        node_id: MDEyOklzc3VlQ29tbWVudDE=\n        url: https://api.github.com/repos/octocat/Hello-World/issues/comments/1\n        html_url: https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\n        body: Me too\n        user:\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        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        author_association: collaborator\n    issue:\n      value:\n        id: 1\n        node_id: MDU6SXNzdWUx\n        url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        repository_url: https://api.github.com/repos/octocat/Hello-World\n        labels_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        events_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/events\n        html_url: https://github.com/octocat/Hello-World/issues/1347\n        number: 1347\n        state: open\n        title: Found a bug\n        body: I'm having a problem with this.\n        user:\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        labels:\n        - id: 208045946\n          node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n          url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n          name: bug\n          description: Something isn't working\n          color: f29513\n          default: true\n        assignee:\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        assignees:\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        milestone:\n          url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n          html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n          labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n          id: 1002604\n          node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n          number: 1\n          state: open\n          title: v1.0\n          description: Tracking milestone for version 1.0\n          creator:\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          open_issues: 4\n          closed_issues: 8\n          created_at: '2011-04-10T20:09:31Z'\n          updated_at: '2014-03-03T18:58:10Z'\n          closed_at: '2013-02-12T13:22:01Z'\n          due_on: '2012-10-09T23:39:01Z'\n        locked: true\n        active_lock_reason: too heated\n        comments: 0\n        pull_request:\n          url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          html_url: https://github.com/octocat/Hello-World/pull/1347\n          diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n          patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n        closed_at: \n        created_at: '2011-04-22T13:33:48Z'\n        updated_at: '2011-04-22T13:33:48Z'\n        closed_by:\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        author_association: collaborator\n    label:\n      value:\n        id: 208045946\n        node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n        url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n        name: bug\n        description: Something isn't working\n        color: f29513\n        default: true\n    label-2:\n      value:\n        id: 208045946\n        node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n        url: 'https://api.github.com/repos/octocat/Hello-World/labels/bug%20:bug:'\n        name: 'bug :bug:'\n        description: Small bug fix required\n        color: b01f26\n        default: true\n    label-items:\n      value:\n      - id: 208045946\n        node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n        url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n        name: bug\n        description: Something isn't working\n        color: f29513\n        default: true\n      - id: 208045947\n        node_id: MDU6TGFiZWwyMDgwNDU5NDc=\n        url: https://api.github.com/repos/octocat/Hello-World/labels/enhancement\n        name: enhancement\n        description: New feature or request\n        color: a2eeef\n        default: false\n    issue-event-for-issue-items:\n      value:\n      - id: 1\n        node_id: MDEwOklzc3VlRXZlbnQx\n        url: https://api.github.com/repos/octocat/Hello-World/issues/events/1\n        actor:\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        event: closed\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        commit_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        created_at: '2011-04-14T16:00:49Z'\n    issue-simple-items:\n      value:\n      - id: 1\n        node_id: MDU6SXNzdWUx\n        url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        repository_url: https://api.github.com/repos/octocat/Hello-World\n        labels_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        events_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/events\n        html_url: https://github.com/octocat/Hello-World/issues/1347\n        number: 1347\n        state: open\n        title: Found a bug\n        body: I'm having a problem with this.\n        user:\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        labels:\n        - id: 208045946\n          node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n          url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n          name: bug\n          description: Something isn't working\n          color: f29513\n          default: true\n        assignee:\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        assignees:\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        milestone:\n          url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n          html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n          labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n          id: 1002604\n          node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n          number: 1\n          state: open\n          title: v1.0\n          description: Tracking milestone for version 1.0\n          creator:\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          open_issues: 4\n          closed_issues: 8\n          created_at: '2011-04-10T20:09:31Z'\n          updated_at: '2014-03-03T18:58:10Z'\n          closed_at: '2013-02-12T13:22:01Z'\n          due_on: '2012-10-09T23:39:01Z'\n        locked: true\n        active_lock_reason: too heated\n        comments: 0\n        pull_request:\n          url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          html_url: https://github.com/octocat/Hello-World/pull/1347\n          diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n          patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n        closed_at: \n        created_at: '2011-04-22T13:33:48Z'\n        updated_at: '2011-04-22T13:33:48Z'\n        author_association: collaborator\n    issue-comment-items:\n      value:\n      - id: 1\n        node_id: MDEyOklzc3VlQ29tbWVudDE=\n        url: https://api.github.com/repos/octocat/Hello-World/issues/comments/1\n        html_url: https://github.com/octocat/Hello-World/issues/1347#issuecomment-1\n        body: Me too\n        user:\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        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n        issue_url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        author_association: collaborator\n    issue-simple:\n      value:\n        id: 1\n        node_id: MDU6SXNzdWUx\n        url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n        repository_url: https://api.github.com/repos/octocat/Hello-World\n        labels_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\n        comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n        events_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/events\n        html_url: https://github.com/octocat/Hello-World/issues/1347\n        number: 1347\n        state: open\n        title: Found a bug\n        body: I'm having a problem with this.\n        user:\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        labels:\n        - id: 208045946\n          node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n          url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n          name: bug\n          description: Something isn't working\n          color: f29513\n          default: true\n        assignee:\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        assignees:\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        - login: hubot\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/hubot_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/hubot\n          html_url: https://github.com/hubot\n          followers_url: https://api.github.com/users/hubot/followers\n          following_url: https://api.github.com/users/hubot/following{/other_user}\n          gists_url: https://api.github.com/users/hubot/gists{/gist_id}\n          starred_url: https://api.github.com/users/hubot/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/hubot/subscriptions\n          organizations_url: https://api.github.com/users/hubot/orgs\n          repos_url: https://api.github.com/users/hubot/repos\n          events_url: https://api.github.com/users/hubot/events{/privacy}\n          received_events_url: https://api.github.com/users/hubot/received_events\n          type: User\n          site_admin: true\n        - login: other_user\n          id: 1\n          node_id: MDQ6VXNlcjE=\n          avatar_url: https://github.com/images/error/other_user_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/users/other_user\n          html_url: https://github.com/other_user\n          followers_url: https://api.github.com/users/other_user/followers\n          following_url: https://api.github.com/users/other_user/following{/other_user}\n          gists_url: https://api.github.com/users/other_user/gists{/gist_id}\n          starred_url: https://api.github.com/users/other_user/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/other_user/subscriptions\n          organizations_url: https://api.github.com/users/other_user/orgs\n          repos_url: https://api.github.com/users/other_user/repos\n          events_url: https://api.github.com/users/other_user/events{/privacy}\n          received_events_url: https://api.github.com/users/other_user/received_events\n          type: User\n          site_admin: false\n        milestone:\n          url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n          html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n          labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n          id: 1002604\n          node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n          number: 1\n          state: open\n          title: v1.0\n          description: Tracking milestone for version 1.0\n          creator:\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          open_issues: 4\n          closed_issues: 8\n          created_at: '2011-04-10T20:09:31Z'\n          updated_at: '2014-03-03T18:58:10Z'\n          closed_at: '2013-02-12T13:22:01Z'\n          due_on: '2012-10-09T23:39:01Z'\n        locked: true\n        active_lock_reason: too heated\n        comments: 0\n        pull_request:\n          url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n          html_url: https://github.com/octocat/Hello-World/pull/1347\n          diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n          patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n        closed_at: \n        created_at: '2011-04-22T13:33:48Z'\n        updated_at: '2011-04-22T13:33:48Z'\n        author_association: collaborator\n    issue-event-items:\n      value:\n      - id: 1\n        node_id: MDEwOklzc3VlRXZlbnQx\n        url: https://api.github.com/repos/octocat/Hello-World/issues/events/1\n        actor:\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        event: closed\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        commit_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        created_at: '2011-04-14T16:00:49Z'\n        issue:\n          id: 1\n          node_id: MDU6SXNzdWUx\n          url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n          repository_url: https://api.github.com/repos/octocat/Hello-World\n          labels_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n          events_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/events\n          html_url: https://github.com/octocat/Hello-World/issues/1347\n          number: 1347\n          state: open\n          title: Found a bug\n          body: I'm having a problem with this.\n          user:\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          labels:\n          - id: 208045946\n            node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n            url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n            name: bug\n            description: Something isn't working\n            color: f29513\n            default: true\n          assignee:\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          assignees:\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          milestone:\n            url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n            html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n            labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n            id: 1002604\n            node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n            number: 1\n            state: open\n            title: v1.0\n            description: Tracking milestone for version 1.0\n            creator:\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            open_issues: 4\n            closed_issues: 8\n            created_at: '2011-04-10T20:09:31Z'\n            updated_at: '2014-03-03T18:58:10Z'\n            closed_at: '2013-02-12T13:22:01Z'\n            due_on: '2012-10-09T23:39:01Z'\n          locked: true\n          active_lock_reason: too heated\n          comments: 0\n          pull_request:\n            url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n            html_url: https://github.com/octocat/Hello-World/pull/1347\n            diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n            patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n          closed_at: \n          created_at: '2011-04-22T13:33:48Z'\n          updated_at: '2011-04-22T13:33:48Z'\n          author_association: collaborator\n    issue-event:\n      value:\n        id: 1\n        node_id: MDEwOklzc3VlRXZlbnQx\n        url: https://api.github.com/repos/octocat/Hello-World/issues/events/1\n        actor:\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        event: closed\n        commit_id: 6dcb09b5b57875f334f61aebed695e2e4193db5e\n        commit_url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e\n        created_at: '2011-04-14T16:00:49Z'\n        issue:\n          id: 1\n          node_id: MDU6SXNzdWUx\n          url: https://api.github.com/repos/octocat/Hello-World/issues/1347\n          repository_url: https://api.github.com/repos/octocat/Hello-World\n          labels_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/labels{/name}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/comments\n          events_url: https://api.github.com/repos/octocat/Hello-World/issues/1347/events\n          html_url: https://github.com/octocat/Hello-World/issues/1347\n          number: 1347\n          state: open\n          title: Found a bug\n          body: I'm having a problem with this.\n          user:\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          labels:\n          - id: 208045946\n            node_id: MDU6TGFiZWwyMDgwNDU5NDY=\n            url: https://api.github.com/repos/octocat/Hello-World/labels/bug\n            name: bug\n            description: Something isn't working\n            color: f29513\n            default: true\n          assignee:\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          assignees:\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          milestone:\n            url: https://api.github.com/repos/octocat/Hello-World/milestones/1\n            html_url: https://github.com/octocat/Hello-World/milestones/v1.0\n            labels_url: https://api.github.com/repos/octocat/Hello-World/milestones/1/labels\n            id: 1002604\n            node_id: MDk6TWlsZXN0b25lMTAwMjYwNA==\n            number: 1\n            state: open\n            title: v1.0\n            description: Tracking milestone for version 1.0\n            creator:\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            open_issues: 4\n            closed_issues: 8\n            created_at: '2011-04-10T20:09:31Z'\n            updated_at: '2014-03-03T18:58:10Z'\n            closed_at: '2013-02-12T13:22:01Z'\n            due_on: '2012-10-09T23:39:01Z'\n          locked: true\n          active_lock_reason: too heated\n          comments: 0\n          pull_request:\n            url: https://api.github.com/repos/octocat/Hello-World/pulls/1347\n            html_url: https://github.com/octocat/Hello-World/pull/1347\n            diff_url: https://github.com/octocat/Hello-World/pull/1347.diff\n            patch_url: https://github.com/octocat/Hello-World/pull/1347.patch\n          closed_at: \n          created_at: '2011-04-22T13:33:48Z'\n          updated_at: '2011-04-22T13:33:48Z'\n          author_association: collaborator\n    authorization-with-user:\n      value:\n        id: 1\n        url: https://api.github.com/authorizations/1\n        scopes:\n        - public_repo\n        token: abcdefgh12345678\n        token_last_eight: '12345678'\n        hashed_token: 25f94a2a5c7fbaf499c665bc73d67c1c87e496da8985131633ee0a95819db2e8\n        app:\n          url: http://my-github-app.com\n          name: my github app\n          client_id: abcde12345fghij67890\n        note: optional note\n        note_url: http://optional/note/url\n        updated_at: '2011-09-06T20:39:23Z'\n        created_at: '2011-09-06T17:26:27Z'\n        fingerprint: jklmnop12345678\n        user:\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    installation:\n      value:\n        id: 1\n        account:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          avatar_url: https://github.com/images/error/hubot_happy.gif\n          gravatar_id: ''\n          url: https://api.github.com/orgs/github\n          html_url: https://github.com/github\n          followers_url: https://api.github.com/users/github/followers\n          following_url: https://api.github.com/users/github/following{/other_user}\n          gists_url: https://api.github.com/users/github/gists{/gist_id}\n          starred_url: https://api.github.com/users/github/starred{/owner}{/repo}\n          subscriptions_url: https://api.github.com/users/github/subscriptions\n          organizations_url: https://api.github.com/users/github/orgs\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          received_events_url: https://api.github.com/users/github/received_events\n          type: Organization\n          site_admin: false\n        repository_selection: all\n        access_tokens_url: https://api.github.com/installations/1/access_tokens\n        repositories_url: https://api.github.com/installation/repositories\n        html_url: https://github.com/organizations/github/settings/installations/1\n        app_id: 1\n        target_id: 1\n        target_type: Organization\n        permissions:\n          checks: write\n          metadata: read\n          contents: read\n        events:\n        - push\n        - pull_request\n        created_at: '2018-02-09T20:51:14Z'\n        updated_at: '2018-02-09T20:51:14Z'\n        single_file_name: \n        app_slug: github-actions\n    content-reference-attachment:\n      value:\n        id: 101\n        title: \"[A-1234] Error found in core/models.py file'\"\n        body: |-\n          You have used an email that already exists for the user_email_uniq field.\n           ## DETAILS:\n\n          The (email)=(Octocat@github.com) already exists.\n\n           The error was found in core/models.py in get_or_create_user at line 62.\n\n           self.save()\n    base-installation-for-auth-user-paginated:\n      value:\n        total_count: 2\n        installations:\n        - id: 1\n          account:\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          access_tokens_url: https://api.github.com/installations/1/access_tokens\n          repositories_url: https://api.github.com/installation/repositories\n          html_url: https://github.com/organizations/github/settings/installations/1\n          app_id: 1\n          target_id: 1\n          target_type: Organization\n          permissions:\n            checks: write\n            metadata: read\n            contents: read\n          events:\n          - push\n          - pull_request\n          single_file_name: config.yml\n          repository_selection: all\n          created_at: '2017-07-08T16:18:44-04:00'\n          updated_at: '2017-07-08T16:18:44-04:00'\n          app_slug: github-actions\n        - id: 3\n          account:\n            login: octocat\n            id: 2\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          access_tokens_url: https://api.github.com/installations/1/access_tokens\n          repositories_url: https://api.github.com/installation/repositories\n          html_url: https://github.com/organizations/github/settings/installations/1\n          app_id: 1\n          target_id: 1\n          target_type: Organization\n          permissions:\n            checks: write\n            metadata: read\n            contents: read\n          events:\n          - push\n          - pull_request\n          single_file_name: config.yml\n          repository_selection: all\n          created_at: '2017-07-08T16:18:44-04:00'\n          updated_at: '2017-07-08T16:18:44-04:00'\n          app_slug: github-actions\n    repository-paginated-2:\n      value:\n        total_count: 1\n        repositories:\n        - id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    repository-paginated:\n      value:\n        total_count: 1\n        repositories:\n        - id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    installation-token:\n      value:\n        token: v1.1f699f1069f60xxx\n        expires_at: '2016-07-11T22:14:10Z'\n        permissions:\n          issues: write\n          contents: read\n        repository_selection: selected\n        repositories:\n        - id: 1296269\n          node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5\n          name: Hello-World\n          full_name: octocat/Hello-World\n          owner:\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          private: false\n          html_url: https://github.com/octocat/Hello-World\n          description: This your first repo!\n          fork: false\n          url: https://api.github.com/repos/octocat/Hello-World\n          archive_url: https://api.github.com/repos/octocat/Hello-World/{archive_format}{/ref}\n          assignees_url: https://api.github.com/repos/octocat/Hello-World/assignees{/user}\n          blobs_url: https://api.github.com/repos/octocat/Hello-World/git/blobs{/sha}\n          branches_url: https://api.github.com/repos/octocat/Hello-World/branches{/branch}\n          collaborators_url: https://api.github.com/repos/octocat/Hello-World/collaborators{/collaborator}\n          comments_url: https://api.github.com/repos/octocat/Hello-World/comments{/number}\n          commits_url: https://api.github.com/repos/octocat/Hello-World/commits{/sha}\n          compare_url: https://api.github.com/repos/octocat/Hello-World/compare/{base}...{head}\n          contents_url: https://api.github.com/repos/octocat/Hello-World/contents/{+path}\n          contributors_url: https://api.github.com/repos/octocat/Hello-World/contributors\n          deployments_url: https://api.github.com/repos/octocat/Hello-World/deployments\n          downloads_url: https://api.github.com/repos/octocat/Hello-World/downloads\n          events_url: https://api.github.com/repos/octocat/Hello-World/events\n          forks_url: https://api.github.com/repos/octocat/Hello-World/forks\n          git_commits_url: https://api.github.com/repos/octocat/Hello-World/git/commits{/sha}\n          git_refs_url: https://api.github.com/repos/octocat/Hello-World/git/refs{/sha}\n          git_tags_url: https://api.github.com/repos/octocat/Hello-World/git/tags{/sha}\n          git_url: git:github.com/octocat/Hello-World.git\n          issue_comment_url: https://api.github.com/repos/octocat/Hello-World/issues/comments{/number}\n          issue_events_url: https://api.github.com/repos/octocat/Hello-World/issues/events{/number}\n          issues_url: https://api.github.com/repos/octocat/Hello-World/issues{/number}\n          keys_url: https://api.github.com/repos/octocat/Hello-World/keys{/key_id}\n          labels_url: https://api.github.com/repos/octocat/Hello-World/labels{/name}\n          languages_url: https://api.github.com/repos/octocat/Hello-World/languages\n          merges_url: https://api.github.com/repos/octocat/Hello-World/merges\n          milestones_url: https://api.github.com/repos/octocat/Hello-World/milestones{/number}\n          notifications_url: https://api.github.com/repos/octocat/Hello-World/notifications{?since,all,participating}\n          pulls_url: https://api.github.com/repos/octocat/Hello-World/pulls{/number}\n          releases_url: https://api.github.com/repos/octocat/Hello-World/releases{/id}\n          ssh_url: git@github.com:octocat/Hello-World.git\n          stargazers_url: https://api.github.com/repos/octocat/Hello-World/stargazers\n          statuses_url: https://api.github.com/repos/octocat/Hello-World/statuses/{sha}\n          subscribers_url: https://api.github.com/repos/octocat/Hello-World/subscribers\n          subscription_url: https://api.github.com/repos/octocat/Hello-World/subscription\n          tags_url: https://api.github.com/repos/octocat/Hello-World/tags\n          teams_url: https://api.github.com/repos/octocat/Hello-World/teams\n          trees_url: https://api.github.com/repos/octocat/Hello-World/git/trees{/sha}\n          clone_url: https://github.com/octocat/Hello-World.git\n          mirror_url: git:git.example.com/octocat/Hello-World\n          hooks_url: https://api.github.com/repos/octocat/Hello-World/hooks\n          svn_url: https://svn.github.com/octocat/Hello-World\n          homepage: https://github.com\n          language: \n          forks_count: 9\n          stargazers_count: 80\n          watchers_count: 80\n          size: 108\n          default_branch: master\n          open_issues_count: 0\n          is_template: true\n          topics:\n          - octocat\n          - atom\n          - electron\n          - api\n          has_issues: true\n          has_projects: true\n          has_wiki: true\n          has_pages: false\n          has_downloads: true\n          archived: false\n          disabled: false\n          visibility: public\n          pushed_at: '2011-01-26T19:06:43Z'\n          created_at: '2011-01-26T19:01:12Z'\n          updated_at: '2011-01-26T19:14:43Z'\n          permissions:\n            admin: false\n            push: false\n            pull: true\n          allow_rebase_merge: true\n          template_repository: \n          temp_clone_token: ABTLWHOULUVAXGTRYU7OC2876QJ2O\n          allow_squash_merge: true\n          delete_branch_on_merge: true\n          allow_merge_commit: true\n          subscribers_count: 42\n          network_count: 0\n          license:\n            key: mit\n            name: MIT License\n            url: https://api.github.com/licenses/mit\n            spdx_id: MIT\n            node_id: MDc6TGljZW5zZW1pdA==\n            html_url: https://github.com/licenses/mit\n          forks: 1\n          open_issues: 1\n          watchers: 1\n    base-installation-items:\n      value:\n      - id: 1\n        account:\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        access_tokens_url: https://api.github.com/installations/1/access_tokens\n        repositories_url: https://api.github.com/installation/repositories\n        html_url: https://github.com/organizations/github/settings/installations/1\n        app_id: 1\n        target_id: 1\n        target_type: Organization\n        permissions:\n          checks: write\n          metadata: read\n          contents: read\n        events:\n        - push\n        - pull_request\n        single_file_name: config.yml\n        repository_selection: selected\n        created_at: '2017-07-08T16:18:44-04:00'\n        updated_at: '2017-07-08T16:18:44-04:00'\n        app_slug: github-actions\n    integration-from-manifest:\n      value:\n        id: 1\n        slug: octoapp\n        node_id: MDxOkludGVncmF0aW9uMQ==\n        owner:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          gravatar_id: ''\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          received_events_url: https://api.github.com/users/octocat/received_events\n          type: User\n          site_admin: true\n        name: Octocat App\n        description: ''\n        external_url: https://example.com\n        html_url: https://github.com/apps/octoapp\n        created_at: '2017-07-08T16:18:44-04:00'\n        updated_at: '2017-07-08T16:18:44-04:00'\n        permissions:\n          metadata: read\n          contents: read\n          issues: write\n          single_file: write\n        events:\n        - push\n        - pull_request\n        client_id: Iv1.8a61f9b3a7aba766\n        client_secret: 1726be1638095a19edd134c77bde3aa2ece1e5d8\n        webhook_secret: e340154128314309424b7c8e90325147d99fdafa\n        pem: |\n          -----BEGIN RSA PRIVATE KEY-----\n          MIIEowIBAAKCAQEAuEPzOUE+kiEH1WLiMeBytTEF856j0hOVcSUSUkZxKvqczkWM\n          9vo1gDyC7ZXhdH9fKh32aapba3RSsp4ke+giSmYTk2mGR538ShSDxh0OgpJmjiKP\n          X0Bj4j5sFqfXuCtl9SkH4iueivv4R53ktqM+n6hk98l6hRwC39GVIblAh2lEM4L/\n          6WvYwuQXPMM5OG2Ryh2tDZ1WS5RKfgq+9ksNJ5Q9UtqtqHkO+E63N5OK9sbzpUUm\n          oNaOl3udTlZD3A8iqwMPVxH4SxgATBPAc+bmjk6BMJ0qIzDcVGTrqrzUiywCTLma\n          szdk8GjzXtPDmuBgNn+o6s02qVGpyydgEuqmTQIDAQABAoIBACL6AvkjQVVLn8kJ\n          dBYznJJ4M8ECo+YEgaFwgAHODT0zRQCCgzd+Vxl4YwHmKV2Lr+y2s0drZt8GvYva\n          KOK8NYYZyi15IlwFyRXmvvykF1UBpSXluYFDH7KaVroWMgRreHcIys5LqVSIb6Bo\n          gDmK0yBLPp8qR29s2b7ScZRtLaqGJiX+j55rNzrZwxHkxFHyG9OG+u9IsBElcKCP\n          kYCVE8ZdYexfnKOZbgn2kZB9qu0T/Mdvki8yk3I2bI6xYO24oQmhnT36qnqWoCBX\n          NuCNsBQgpYZeZET8mEAUmo9d+ABmIHIvSs005agK8xRaP4+6jYgy6WwoejJRF5yd\n          NBuF7aECgYEA50nZ4FiZYV0vcJDxFYeY3kYOvVuKn8OyW+2rg7JIQTremIjv8FkE\n          ZnwuF9ZRxgqLxUIfKKfzp/5l5LrycNoj2YKfHKnRejxRWXqG+ZETfxxlmlRns0QG\n          J4+BYL0CoanDSeA4fuyn4Bv7cy/03TDhfg/Uq0Aeg+hhcPE/vx3ebPsCgYEAy/Pv\n          eDLssOSdeyIxf0Brtocg6aPXIVaLdus+bXmLg77rJIFytAZmTTW8SkkSczWtucI3\n          FI1I6sei/8FdPzAl62/JDdlf7Wd9K7JIotY4TzT7Tm7QU7xpfLLYIP1bOFjN81rk\n          77oOD4LsXcosB/U6s1blPJMZ6AlO2EKs10UuR1cCgYBipzuJ2ADEaOz9RLWwi0AH\n          Pza2Sj+c2epQD9ZivD7Zo/Sid3ZwvGeGF13JyR7kLEdmAkgsHUdu1rI7mAolXMaB\n          1pdrsHureeLxGbRM6za3tzMXWv1Il7FQWoPC8ZwXvMOR1VQDv4nzq7vbbA8z8c+c\n          57+8tALQHOTDOgQIzwK61QKBgERGVc0EJy4Uag+VY8J4m1ZQKBluqo7TfP6DQ7O8\n          M5MX73maB/7yAX8pVO39RjrhJlYACRZNMbK+v/ckEQYdJSSKmGCVe0JrGYDuPtic\n          I9+IGfSorf7KHPoMmMN6bPYQ7Gjh7a++tgRFTMEc8956Hnt4xGahy9NcglNtBpVN\n          6G8jAoGBAMCh028pdzJa/xeBHLLaVB2sc0Fe7993WlsPmnVE779dAz7qMscOtXJK\n          fgtriltLSSD6rTA9hUAsL/X62rY0wdXuNdijjBb/qvrx7CAV6i37NK1CjABNjsfG\n          ZM372Ac6zc1EqSrid2IjET1YqyIW2KGLI1R2xbQc98UGlt48OdWu\n          -----END RSA PRIVATE KEY-----\n    integration:\n      value:\n        id: 1\n        slug: octoapp\n        node_id: MDExOkludGVncmF0aW9uMQ==\n        owner:\n          login: github\n          id: 1\n          node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n          url: https://api.github.com/orgs/github\n          repos_url: https://api.github.com/orgs/github/repos\n          events_url: https://api.github.com/orgs/github/events\n          avatar_url: https://github.com/images/error/octocat_happy.gif\n          gravatar_id: ''\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          received_events_url: https://api.github.com/users/octocat/received_events\n          type: User\n          site_admin: true\n        name: Octocat App\n        description: ''\n        external_url: https://example.com\n        html_url: https://github.com/apps/octoapp\n        created_at: '2017-07-08T16:18:44-04:00'\n        updated_at: '2017-07-08T16:18:44-04:00'\n        permissions:\n          metadata: read\n          contents: read\n          issues: write\n          single_file: write\n        events:\n        - push\n        - pull_request\n    base-installation:\n      value:\n        id: 1\n        account:\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        access_tokens_url: https://api.github.com/installations/1/access_tokens\n        repositories_url: https://api.github.com/installation/repositories\n        html_url: https://github.com/organizations/github/settings/installations/1\n        app_id: 1\n        target_id: 1\n        target_type: Organization\n        permissions:\n          checks: write\n          metadata: read\n          contents: read\n        events:\n        - push\n        - pull_request\n        single_file_name: config.yml\n        repository_selection: selected\n        created_at: '2017-07-08T16:18:44-04:00'\n        updated_at: '2017-07-08T16:18:44-04:00'\n        app_slug: github-actions\n    base-gist-items:\n      value:\n      - url: https://api.github.com/gists/aa5a315d61ae9438b18d\n        forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks\n        commits_url: https://api.github.com/gists/aa5a315d61ae9438b18d/commits\n        id: aa5a315d61ae9438b18d\n        node_id: MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\n        git_pull_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        git_push_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        html_url: https://gist.github.com/aa5a315d61ae9438b18d\n        files:\n          hello_world.rb:\n            filename: hello_world.rb\n            type: application/x-ruby\n            language: Ruby\n            raw_url: https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\n            size: 167\n        public: true\n        created_at: '2010-04-14T02:15:15Z'\n        updated_at: '2011-06-20T11:34:15Z'\n        description: Hello World Examples\n        comments: 0\n        user: \n        comments_url: https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\n        owner:\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        truncated: false\n    gist-comment:\n      value:\n        id: 1\n        node_id: MDExOkdpc3RDb21tZW50MQ==\n        url: https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\n        body: Just commenting for the sake of commenting\n        user:\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        created_at: '2011-04-18T23:23:56Z'\n        updated_at: '2011-04-18T23:23:56Z'\n        author_association: collaborator\n    gist:\n      value:\n        url: https://api.github.com/gists/aa5a315d61ae9438b18d\n        forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks\n        commits_url: https://api.github.com/gists/aa5a315d61ae9438b18d/commits\n        id: aa5a315d61ae9438b18d\n        node_id: MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\n        git_pull_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        git_push_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        html_url: https://gist.github.com/aa5a315d61ae9438b18d\n        created_at: '2010-04-14T02:15:15Z'\n        updated_at: '2011-06-20T11:34:15Z'\n        description: Hello World Examples\n        comments: 0\n        comments_url: https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\n    gist-3:\n      value:\n        url: https://api.github.com/gists/aa5a315d61ae9438b18d\n        forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks\n        commits_url: https://api.github.com/gists/aa5a315d61ae9438b18d/commits\n        id: aa5a315d61ae9438b18d\n        node_id: MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\n        git_pull_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        git_push_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        html_url: https://gist.github.com/aa5a315d61ae9438b18d\n        created_at: '2010-04-14T02:15:15Z'\n        updated_at: '2011-06-20T11:34:15Z'\n        description: Hello World Examples\n        comments: 0\n        comments_url: https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\n    gist-fork-items:\n      value:\n      - url: https://api.github.com/gists/dee9c42e4998ce2ea439\n        id: dee9c42e4998ce2ea439\n        created_at: '2011-04-14T16:00:49Z'\n        updated_at: '2011-04-14T16:00:49Z'\n    base-gist:\n      value:\n        url: https://api.github.com/gists/aa5a315d61ae9438b18d\n        forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks\n        commits_url: https://api.github.com/gists/aa5a315d61ae9438b18d/commits\n        id: aa5a315d61ae9438b18d\n        node_id: MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\n        git_pull_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        git_push_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        html_url: https://gist.github.com/aa5a315d61ae9438b18d\n        files:\n          hello_world.rb:\n            filename: hello_world.rb\n            type: application/x-ruby\n            language: Ruby\n            raw_url: https://gist.githubusercontent.com/octocat/6cad326836d38bd3a7ae/raw/db9c55113504e46fa076e7df3a04ce592e2e86d8/hello_world.rb\n            size: 167\n        public: true\n        created_at: '2010-04-14T02:15:15Z'\n        updated_at: '2011-06-20T11:34:15Z'\n        description: Hello World Examples\n        comments: 0\n        user: \n        comments_url: https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\n        owner:\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        truncated: false\n    gist-commit-items:\n      value:\n      - url: https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\n        version: 57a7f021a713b1c5a6a199b54cc514735d2d462f\n        user:\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        change_status:\n          deletions: 0\n          additions: 180\n          total: 180\n        committed_at: '2010-04-14T02:15:15Z'\n    gist-comment-items:\n      value:\n      - id: 1\n        node_id: MDExOkdpc3RDb21tZW50MQ==\n        url: https://api.github.com/gists/a6db0bec360bb87e9418/comments/1\n        body: Just commenting for the sake of commenting\n        user:\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        created_at: '2011-04-18T23:23:56Z'\n        updated_at: '2011-04-18T23:23:56Z'\n        author_association: collaborator\n    gist-2:\n      value:\n        url: https://api.github.com/gists/aa5a315d61ae9438b18d/57a7f021a713b1c5a6a199b54cc514735d2d462f\n        forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks\n        commits_url: https://api.github.com/gists/aa5a315d61ae9438b18d/commits\n        id: aa5a315d61ae9438b18d\n        node_id: MDQ6R2lzdGFhNWEzMTVkNjFhZTk0MzhiMThk\n        git_pull_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        git_push_url: https://gist.github.com/aa5a315d61ae9438b18d.git\n        html_url: https://gist.github.com/aa5a315d61ae9438b18d\n        created_at: '2010-04-14T02:15:15Z'\n        updated_at: '2011-06-20T11:34:15Z'\n        description: Hello World Examples\n        comments: 0\n        comments_url: https://api.github.com/gists/aa5a315d61ae9438b18d/comments/\n    rate-limit-overview:\n      value:\n        resources:\n          core:\n            limit: 5000\n            remaining: 4999\n            reset: 1372700873\n          search:\n            limit: 30\n            remaining: 18\n            reset: 1372697452\n          graphql:\n            limit: 5000\n            remaining: 4993\n            reset: 1372700389\n          integration_manifest:\n            limit: 5000\n            remaining: 4999\n            reset: 1551806725\n        rate:\n          limit: 5000\n          remaining: 4999\n          reset: 1372700873\n    git-tree-default-response:\n      summary: Default response\n      value:\n        sha: 9fb037999f264ba9a7fc6274d15fa3ae2ab98312\n        url: https://api.github.com/repos/octocat/Hello-World/trees/9fb037999f264ba9a7fc6274d15fa3ae2ab98312\n        tree:\n        - path: file.rb\n          mode: '100644'\n          type: blob\n          size: 30\n          sha: 44b4fc6d56897b048c772eb4087f854f46256132\n          url: https://api.github.com/repos/octocat/Hello-World/git/blobs/44b4fc6d56897b048c772eb4087f854f46256132\n        - path: subdir\n          mode: '040000'\n          type: tree\n          sha: f484d249c660418515fb01c2b9662073663c242e\n          url: https://api.github.com/repos/octocat/Hello-World/git/blobs/f484d249c660418515fb01c2b9662073663c242e\n        - path: exec_file\n          mode: '100755'\n          type: blob\n          size: 75\n          sha: 45b983be36b73c0788dc9cbcb76cbb80fc7bb057\n          url: https://api.github.com/repos/octocat/Hello-World/git/blobs/45b983be36b73c0788dc9cbcb76cbb80fc7bb057\n        truncated: false\n    git-tree-response-recursively-retrieving-a-tree:\n      summary: Response recursively retrieving a tree\n      value:\n        sha: fc6274d15fa3ae2ab983129fb037999f264ba9a7\n        url: https://api.github.com/repos/octocat/Hello-World/trees/fc6274d15fa3ae2ab983129fb037999f264ba9a7\n        tree:\n        - path: subdir/file.txt\n          mode: '100644'\n          type: blob\n          size: 132\n          sha: 7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\n          url: https://api.github.com/repos/octocat/Hello-World/git/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\n        truncated: false\n    git-ref-items:\n      value:\n      - ref: refs/heads/feature-a\n        node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWE=\n        url: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-a\n        object:\n          type: commit\n          sha: aa218f56b14c9653891f9e74264a383fa43fefbd\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\n      - ref: refs/heads/feature-b\n        node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlLWI=\n        url: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/feature-b\n        object:\n          type: commit\n          sha: 612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/612077ae6dffb4d2fbd8ce0cccaa58893b07b5ac\n    git-ref:\n      value:\n        ref: refs/heads/featureA\n        node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ==\n        url: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA\n        object:\n          type: commit\n          sha: aa218f56b14c9653891f9e74264a383fa43fefbd\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/aa218f56b14c9653891f9e74264a383fa43fefbd\n    git-commit:\n      value:\n        sha: 7638417db6d59f3c431d3e1f261cc637155684cd\n        node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==\n        url: https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\n        author:\n          date: '2014-11-07T22:01:45Z'\n          name: Monalisa Octocat\n          email: octocat@github.com\n        committer:\n          date: '2014-11-07T22:01:45Z'\n          name: Monalisa Octocat\n          email: octocat@github.com\n        message: my commit message\n        tree:\n          url: https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132\n          sha: 827efc6d56897b048c772eb4087f854f46256132\n        parents:\n        - url: https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0\n          sha: 7d1b31e74ee336d15cbd21741bc88a537ed063a0\n        verification:\n          verified: false\n          reason: unsigned\n          signature: \n          payload: \n    git-tag:\n      value:\n        node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw==\n        tag: v0.0.1\n        sha: 940bd336248efae0f9ee5bc7b2d5c985887b16ac\n        url: https://api.github.com/repos/octocat/Hello-World/git/tags/940bd336248efae0f9ee5bc7b2d5c985887b16ac\n        message: initial version\n        tagger:\n          name: Monalisa Octocat\n          email: octocat@github.com\n          date: '2014-11-07T22:01:45Z'\n        object:\n          type: commit\n          sha: c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\n          url: https://api.github.com/repos/octocat/Hello-World/git/commits/c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c\n        verification:\n          verified: false\n          reason: unsigned\n          signature: \n          payload: \n    git-tree:\n      value:\n        sha: cd8274d15fa3ae2ab983129fb037999f264ba9a7\n        url: https://api.github.com/repos/octocat/Hello-World/trees/cd8274d15fa3ae2ab983129fb037999f264ba9a7\n        tree:\n        - path: file.rb\n          mode: '100644'\n          type: blob\n          size: 132\n          sha: 7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\n          url: https://api.github.com/repos/octocat/Hello-World/git/blobs/7c258a9869f33c1e1e1f74fbb32f07c86cb5a75b\n        truncated: true\n    short-blob:\n      value:\n        url: https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\n        sha: 3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\n    blob:\n      value:\n        content: Q29udGVudCBvZiB0aGUgYmxvYg==\n        encoding: base64\n        url: https://api.github.com/repos/octocat/example/git/blobs/3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\n        sha: 3a0f86fb8db8eea7ccbb9a95f325ddbedfb25e15\n        size: 19\n        node_id: Q29udGVudCBvZiB0aGUgYmxvYg==\n    git-commit-2:\n      value:\n        sha: 7638417db6d59f3c431d3e1f261cc637155684cd\n        node_id: MDY6Q29tbWl0NmRjYjA5YjViNTc4NzVmMzM0ZjYxYWViZWQ2OTVlMmU0MTkzZGI1ZQ==\n        url: https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd\n        author:\n          date: '2014-11-07T22:01:45Z'\n          name: Monalisa Octocat\n          email: octocat@github.com\n        committer:\n          date: '2014-11-07T22:01:45Z'\n          name: Monalisa Octocat\n          email: octocat@github.com\n        message: added readme, because im a good github citizen\n        tree:\n          url: https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb\n          sha: 691272480426f78a0138979dd3ce63b77f706feb\n        parents:\n        - url: https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5\n          sha: 1acc419d4d6a9ce985db7be48c6349a0475975b5\n        verification:\n          verified: false\n          reason: unsigned\n          signature: \n          payload: \n    gitignore-template:\n      value:\n        name: C\n        source: |\n          # Object files\n          *.o\n\n          # Libraries\n          *.lib\n          *.a\n\n          # Shared objects (inc. Windows DLLs)\n          *.dll\n          *.so\n          *.so.*\n          *.dylib\n\n          # Executables\n          *.exe\n          *.out\n          *.app\n    pre-receive-hook:\n      value:\n        id: 1\n        name: Check Commits\n        enforcement: disabled\n        script: scripts/commmit_check.sh\n        script_repository:\n          id: 595\n          full_name: DevIT/hooks\n          url: https://github.example.com/api/v3/repos/DevIT/hooks\n          html_url: https://github.example.com/DevIT/hooks\n        environment:\n          id: 2\n          name: DevTools Hook Env\n          image_url: https://my_file_server/path/to/devtools_env.tar.gz\n          url: https://github.example.com/api/v3/admin/pre-receive-environments/2\n          html_url: https://github.example.com/admin/pre-receive-environments/2\n          default_environment: false\n          created_at: '2016-05-20T11:35:45-05:00'\n          hooks_count: 1\n          download:\n            url: https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\n            state: success\n            downloaded_at: '2016-05-26T07:42:53-05:00'\n            message: \n        allow_downstream_configuration: false\n    pre-receive-hook-2:\n      value:\n        id: 1\n        name: Check Commits\n        enforcement: disabled\n        script: scripts/commmit_check.sh\n        script_repository:\n          id: 595\n          full_name: DevIT/hooks\n          url: https://github.example.com/api/v3/repos/DevIT/hooks\n          html_url: https://github.example.com/DevIT/hooks\n        environment:\n          id: 1\n          name: Default\n          image_url: githubenterprise://internal\n          url: https://github.example.com/api/v3/admin/pre-receive-environments/1\n          html_url: https://github.example.com/admin/pre-receive-environments/1\n          default_environment: true\n          created_at: '2016-05-20T11:35:45-05:00'\n          hooks_count: 1\n          download:\n            url: https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\n            state: success\n            downloaded_at: '2016-05-26T07:42:53-05:00'\n            message: \n        allow_downstream_configuration: true\n    pre-receive-hook-items:\n      value:\n      - id: 1\n        name: Check Commits\n        enforcement: disabled\n        script: scripts/commmit_check.sh\n        script_repository:\n          id: 595\n          full_name: DevIT/hooks\n          url: https://github.example.com/api/v3/repos/DevIT/hooks\n          html_url: https://github.example.com/DevIT/hooks\n        environment:\n          id: 2\n          name: DevTools Hook Env\n          image_url: https://my_file_server/path/to/devtools_env.tar.gz\n          url: https://github.example.com/api/v3/admin/pre-receive-environments/2\n          html_url: https://github.example.com/admin/pre-receive-environments/2\n          default_environment: false\n          created_at: '2016-05-20T11:35:45-05:00'\n          hooks_count: 1\n          download:\n            url: https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\n            state: success\n            downloaded_at: '2016-05-26T07:42:53-05:00'\n            message: \n        allow_downstream_configuration: false\n    organization-simple:\n      value:\n        login: github\n        id: 1\n        node_id: MDEyOk9yZ2FuaXphdGlvbjE=\n        url: https://api.github.com/orgs/github\n        repos_url: https://api.github.com/orgs/github/repos\n        events_url: https://api.github.com/orgs/github/events\n        hooks_url: https://api.github.com/orgs/github/hooks\n        issues_url: https://api.github.com/orgs/github/issues\n        members_url: https://api.github.com/orgs/github/members{/member}\n        public_members_url: https://api.github.com/orgs/github/public_members{/member}\n        avatar_url: https://github.com/images/error/octocat_happy.gif\n        description: A great organization\n    ssh-key-items:\n      value:\n      - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB...\n        pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\n      - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB...\n        pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\n      - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB...\n        pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64\n    pre-receive-environment-download-status:\n      value:\n        url: https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\n        state: success\n        downloaded_at: '2016-05-26T07:42:53-05:00'\n        message: \n    global-hook-2:\n      value:\n        type: Global\n        id: 1\n        name: web\n        active: true\n        events:\n        - organization\n        config:\n          url: https://example.com\n          content_type: form\n          insecure_ssl: '0'\n        updated_at: '2017-12-07T00:14:59Z'\n        created_at: '2017-12-07T00:14:59Z'\n        url: https://api.github.com/admin/hooks/1\n        ping_url: https://api.github.com/admin/hooks/1/pings\n    global-hook:\n      value:\n        type: Global\n        id: 1\n        name: web\n        active: true\n        events:\n        - organization\n        - user\n        config:\n          url: https://example.com\n          content_type: json\n          insecure_ssl: '0'\n          secret: \"********\"\n        updated_at: '2017-12-07T00:14:59Z'\n        created_at: '2017-12-07T00:14:59Z'\n        url: https://api.github.com/admin/hooks/1\n        ping_url: https://api.github.com/admin/hooks/1/pings\n    enterprise-public-key-items:\n      value:\n      - key_id: '012345678912345678'\n        key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\n        user_id: 232\n        repository_id: \n      - key_id: '012345678912345678'\n        key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234\n        user_id: \n        repository_id: 2333\n        id: '2'\n        url: https://api.github.com/repos/octocat/Hello-World/keys/2\n    enterprise-overview:\n      value:\n        repos:\n          total_repos: 212\n          root_repos: 194\n          fork_repos: 18\n          org_repos: 51\n          total_pushes: 3082\n          total_wikis: 15\n        hooks:\n          total_hooks: 27\n          active_hooks: 23\n          inactive_hooks: 4\n        pages:\n          total_pages: 36\n        orgs:\n          total_orgs: 33\n          disabled_orgs: 0\n          total_teams: 60\n          total_team_members: 314\n        users:\n          total_users: 254\n          admin_users: 45\n          suspended_users: 21\n        pulls:\n          total_pulls: 86\n          merged_pulls: 60\n          mergeable_pulls: 21\n          unmergeable_pulls: 3\n        issues:\n          total_issues: 179\n          open_issues: 83\n          closed_issues: 96\n        milestones:\n          total_milestones: 7\n          open_milestones: 6\n          closed_milestones: 1\n        gists:\n          total_gists: 178\n          private_gists: 151\n          public_gists: 25\n        comments:\n          total_commit_comments: 6\n          total_gist_comments: 28\n          total_issue_comments: 366\n          total_pull_request_comments: 30\n    pre-receive-environment:\n      value:\n        id: 2\n        name: DevTools Hook Env\n        image_url: https://my_file_server/path/to/devtools_env.tar.gz\n        url: https://github.example.com/api/v3/admin/pre-receive-environments/2\n        html_url: https://github.example.com/admin/pre-receive-environments/2\n        default_environment: false\n        created_at: '2016-05-20T11:35:45-05:00'\n        hooks_count: 1\n        download:\n          url: https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\n          state: not_started\n          downloaded_at: \n          message: \n    pre-receive-environment-items:\n      value:\n      - id: 1\n        name: Default\n        image_url: githubenterprise://internal\n        url: https://github.example.com/api/v3/admin/pre-receive-environments/1\n        html_url: https://github.example.com/admin/pre-receive-environments/1\n        default_environment: true\n        created_at: '2016-05-20T11:35:45-05:00'\n        hooks_count: 14\n        download:\n          url: https://github.example.com/api/v3/admin/pre-receive-environments/1/downloads/latest\n          state: not_started\n          downloaded_at: '2016-05-26T07:42:53-05:00'\n          message: \n      - id: 2\n        name: DevTools Hook Env\n        image_url: https://my_file_server/path/to/devtools_env.tar.gz\n        url: https://github.example.com/api/v3/admin/pre-receive-environments/2\n        html_url: https://github.example.com/admin/pre-receive-environments/2\n        default_environment: false\n        created_at: '2016-05-20T11:35:45-05:00'\n        hooks_count: 1\n        download:\n          url: https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\n          state: success\n          downloaded_at: '2016-05-26T07:42:53-05:00'\n          message: \n    enterprise-settings:\n      value:\n        enterprise:\n          private_mode: false\n          public_pages: false\n          subdomain_isolation: true\n          signup_enabled: false\n          github_hostname: ghe.local\n          identicons_host: dotcom\n          http_proxy: \n          auth_mode: default\n          expire_sessions: false\n          admin_password: \n          configuration_id: 1401777404\n          configuration_run_count: 4\n          avatar:\n            enabled: false\n            uri: ''\n          customer:\n            name: GitHub\n            email: stannis@themannis.biz\n            uuid: af6cac80-e4e1-012e-d822-1231380e52e9\n            secret_key_data: |\n              -----BEGIN PGP PRIVATE KEY BLOCK-----\n              Version: GnuPG v1.4.10 (GNU/Linux)\n\n              lQcYBE5TCgsBEACk4yHpUcapplebaumBMXYMiLF+nCQ0lxpx...\n              -----END PGP PRIVATE KEY BLOCK-----\n            public_key_data: |\n              -----BEGIN PGP PUBLIC KEY BLOCK-----\n              Version: GnuPG v1.4.10 (GNU/Linux)\n\n              mI0ETqzZYgEEALSe6snowdenXyqvLfSQ34HWD6C7....\n              -----END PGP PUBLIC KEY BLOCK-----\n          license:\n            seats: 0\n            evaluation: false\n            perpetual: false\n            unlimited_seating: true\n            support_key: ssh-rsa AAAAB3N....\n            ssh_allowed: true\n            cluster_support: false\n            expire_at: '2016-04-27T00:00:00-07:00'\n          github_ssl:\n            enabled: false\n            cert: \n            key: \n          ldap:\n            host: \n            port: 0\n            base: []\n            uid: \n            bind_dn: \n            password: \n            method: Plain\n            search_strategy: detect\n            user_groups: []\n            admin_group: \n            virtual_attribute_enabled: false\n            recursive_group_search: false\n            posix_support: true\n            user_sync_emails: false\n            user_sync_keys: false\n            user_sync_interval: 4\n            team_sync_interval: 4\n            sync_enabled: false\n            reconciliation:\n              user: \n              org: \n            profile:\n              uid: uid\n              name: \n              mail: \n              key: \n          cas:\n            url: \n          saml:\n            sso_url: \n            certificate: \n            certificate_path: \n            issuer: \n            idp_initiated_sso: false\n            disable_admin_demote: false\n          github_oauth:\n            client_id: '12313412'\n            client_secret: kj123131132\n            organization_name: Homestar Runners\n            organization_team: homestarrunners/characters\n          smtp:\n            enabled: true\n            address: smtp.example.com\n            authentication: plain\n            port: '1234'\n            domain: blah\n            username: foo\n            user_name: mr_foo\n            enable_starttls_auto: true\n            password: bar\n            discard-to-noreply-address: true\n            support_address: enterprise@github.com\n            support_address_type: email\n            noreply_address: noreply@github.com\n          ntp:\n            primary_server: 0.pool.ntp.org\n            secondary_server: 1.pool.ntp.org\n          timezone: \n          snmp:\n            enabled: false\n            community: ''\n          syslog:\n            enabled: false\n            server: \n            protocol_name: udp\n          assets: \n          pages:\n            enabled: true\n          collectd:\n            enabled: false\n            server: \n            port: 0\n            encryption: \n            username: \n            password: \n          mapping:\n            enabled: true\n            tileserver: \n            basemap: company.map-qsz2zrvs\n            token: \n          load_balancer: \n        run_list:\n        - recipe[enterprise-configure]\n    global-hook-items:\n      value:\n      - type: Global\n        id: 1\n        name: web\n        active: true\n        events:\n        - organization\n        - user\n        config:\n          url: https://example.com\n          content_type: json\n          insecure_ssl: '0'\n          secret: \"********\"\n        updated_at: '2017-12-07T00:14:59Z'\n        created_at: '2017-12-07T00:14:59Z'\n        url: https://api.github.com/admin/hooks/1\n        ping_url: https://api.github.com/admin/hooks/1/pings\n    repository-pre-receive-hook-2:\n      value:\n        id: 42\n        name: Check Commits\n        enforcement: enabled\n        configuration_url: https://github.example.com/api/v3/repos/octocat/hello-world/pre-receive-hooks/42\n    repository-pre-receive-hook:\n      value:\n        id: 42\n        name: Check Commits\n        enforcement: disabled\n        configuration_url: https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\n    maintenance-status:\n      value:\n        status: scheduled\n        scheduled_time: Tuesday, January 22 at 15 => 34 -0800\n        connection_services:\n        - name: git operations\n          number: 0\n        - name: mysql queries\n          number: 233\n        - name: resque jobs\n          number: 54\n    configuration-status:\n      value:\n        status: running\n        progress:\n        - status: DONE\n          key: Appliance core components\n        - status: DONE\n          key: GitHub utilities\n        - status: DONE\n          key: GitHub applications\n        - status: CONFIGURING\n          key: GitHub services\n        - status: PENDING\n          key: Reloading appliance services\n    simple-user:\n      value:\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    ldap-mapping-user:\n      value:\n        ldap_dn: uid=asdf,ou=users,dc=github,dc=com\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    repository-pre-receive-hook-items:\n      value:\n      - id: 42\n        name: Check Commits\n        enforcement: disabled\n        configuration_url: https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\n    pre-receive-environment-default-response:\n      value:\n        id: 2\n        name: DevTools Hook Env\n        image_url: https://my_file_server/path/to/devtools_env.tar.gz\n        url: https://github.example.com/api/v3/admin/pre-receive-environments/2\n        html_url: https://github.example.com/admin/pre-receive-environments/2\n        default_environment: false\n        created_at: '2016-05-20T11:35:45-05:00'\n        hooks_count: 1\n        download:\n          url: https://github.example.com/api/v3/admin/pre-receive-environments/2/downloads/latest\n          state: success\n          downloaded_at: '2016-05-26T07:42:53-05:00'\n          message: \n    org-pre-receive-hook-items:\n      value:\n      - id: 42\n        name: Check Commits\n        enforcement: disabled\n        configuration_url: https://github.example.com/api/v3/admin/pre-receive-hooks/42\n        allow_downstream_configuration: true\n    pre-receive-environment-download-status-default-response:\n      value:\n        url: https://github.example.com/api/v3/admin/pre-receive-environments/3/downloads/latest\n        state: not_started\n        downloaded_at: \n        message: \n    org-pre-receive-hook:\n      value:\n        id: 42\n        name: Check Commits\n        enforcement: disabled\n        configuration_url: https://github.example.com/api/v3/admin/pre-receive-hooks/42\n        allow_downstream_configuration: true\n    org-pre-receive-hook-2:\n      value:\n        id: 42\n        name: Check Commits\n        enforcement: enabled\n        configuration_url: https://github.example.com/api/v3/orgs/octocat/pre-receive-hooks/42\n        allow_downstream_configuration: false\n    license-info:\n      value:\n        seats: 1400\n        seats_used: 1316\n        seats_available: 84\n        kind: standard\n        days_until_expiration: 365\n        expire_at: 2016/02/06 12:41:52 -0600\n    ldap-mapping-team:\n      value:\n        ldap_dn: cn=Enterprise Ops,ou=teams,dc=github,dc=com\n        id: 1\n        node_id: MDQ6VGVhbTE=\n        url: https://api.github.com/teams/1\n        html_url: https://api.github.com/teams/justice-league\n        name: Justice League\n        slug: justice-league\n        description: A great team.\n        privacy: closed\n        permission: admin\n        members_url: https://api.github.com/teams/1/members{/member}\n        repositories_url: https://api.github.com/teams/1/repos\n        parent: \n  headers:\n    link:\n      example: <https://api.github.com/resource?page=2>; rel=\"next\", <https://api.github.com/resource?page=5>;\n        rel=\"last\"\n      schema:\n        type: string\n    content-type:\n      example: text/html\n      schema:\n        type: string\n    x-common-marker-version:\n      example: 0.17.4\n      schema:\n        type: string\n    x-rate-limit-limit:\n      example: '5000'\n      schema:\n        type: integer\n    x-rate-limit-remaining:\n      example: '4999'\n      schema:\n        type: integer\n    x-rate-limit-reset:\n      example: '1590701888'\n      schema:\n        type: integer\n        format: timestamp\n  responses:\n    forbidden:\n      description: Forbidden\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    validation_failed:\n      description: Validation Failed\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/validation-error\"\n    not_found:\n      description: Resource Not Found\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    preview_header_missing:\n      description: Preview Header Missing\n      content:\n        application/json:\n          schema:\n            type: object\n            required:\n            - message\n            - documentation_url\n            properties:\n              message:\n                type: string\n              documentation_url:\n                type: string\n    found:\n      description: Found\n    conflict:\n      description: Conflict\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    service_unavailable:\n      description: Service Unavailable\n      content:\n        application/json:\n          schema:\n            type: object\n            properties:\n              code:\n                type: string\n              message:\n                type: string\n              documentation_url:\n                type: string\n    validation_failed_simple:\n      description: Validation Failed\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/validation-error-simple\"\n    bad_request:\n      description: Bad Request\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n        application/scim+json:\n          schema:\n            \"$ref\": \"#/components/schemas/scim-error\"\n    moved_permanently:\n      description: Moved Permanently\n    internal_error:\n      description: Internal Error\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    not_modified:\n      description: Not Modified\n    requires_authentication:\n      description: Requires Authentication\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    gone:\n      description: Gone\n      content:\n        application/json:\n          schema:\n            \"$ref\": \"#/components/schemas/basic-error\"\n    forbidden_gist:\n      description: Forbidden Gist\n      content:\n        application/json:\n          schema:\n            type: object\n            properties:\n              block:\n                type: object\n                properties:\n                  reason:\n                    type: string\n                  created_at:\n                    type: string\n                  html_url:\n                    type: string\n                    nullable: true\n              message:\n                type: string\n              documentation_url:\n                type: string\n"
  },
  {
    "path": "example/openapi.yml",
    "content": "openapi: \"3.0.0\"\n\ninfo:\n  version: 1.0.0\n  title: Quisque API\n  description: |\n    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nec dui nec nisl dapibus ullamcorper. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut tincidunt vestibulum venenatis. Phasellus semper vehicula consectetur. Fusce convallis nulla id auctor interdum. Curabitur ut aliquam metus. Ut ac euismod elit.\n\n    Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer auctor eu diam a convallis. Phasellus at maximus dui. Quisque imperdiet elementum volutpat. Integer molestie nisi hendrerit sem semper volutpat. Morbi nec porta eros. Morbi porttitor risus id massa convallis, at pharetra diam dictum.\n\n    Nulla a nisl ullamcorper, scelerisque augue eu, suscipit massa. Vivamus consequat, nibh id porttitor rutrum, magna erat egestas ipsum, ac posuere neque lectus eu nibh. Etiam nunc tellus, lacinia eget luctus sit amet, rutrum et erat. Donec massa magna, finibus id vehicula vel, maximus sit amet mauris. Mauris pellentesque est a ex malesuada, a ultricies neque vulputate. Vivamus hendrerit felis a gravida tempor. Sed congue efficitur tellus, sed scelerisque lorem ultricies ac. Nullam aliquet facilisis tincidunt. Ut aliquam ipsum ac sem rutrum, ut vulputate elit porttitor.\n  contact:\n    name: Quisque support\n    email: support@example.com\n    url: https://example.com\n  termsOfService: https://example.com/terms\n  license:\n    name: MIT\n    url: https://github.com/ouropencode/OpenDocumenter/blob/master/LICENSE\n    identifier: MIT\n\nservers:\n  - url: https://fermentum.example.com\n    description: Fermentum API\n  - url: https://vestibulum.example.com\n    description: Vestibulum API\n\nexternalDocs:\n  url: https://doc.example.com\n  description: Curabitur eget porta\n\ntags:\n  - name: Consectetur\n    description: |\n      Pellentesque sit amet metus lacinia, venenatis erat quis, gravida massa. Suspendisse facilisis porttitor nunc, in consequat augue. Vestibulum tincidunt quam vel mi dapibus, non convallis lacus porttitor. Etiam id purus nec diam vehicula feugiat ut sit amet metus. Nunc mattis dolor nec tristique ullamcorper. Integer malesuada in nisl eu consequat. Donec eu quam pellentesque, sodales neque ut, mattis ipsum. Nullam sit amet varius est. Duis et commodo leo, non suscipit eros. Nam tempor ultricies libero in bibendum. Curabitur eu bibendum erat. Morbi odio ipsum, imperdiet quis luctus at, venenatis sit amet nibh.\n  - name: Posuere\n    description: |\n      Cras condimentum pulvinar venenatis. Nam sed mi in odio ornare imperdiet et eget dolor. Curabitur eros lorem, eleifend id finibus et, euismod a felis. Aliquam lobortis consectetur nisl in faucibus. In euismod consequat justo, eu auctor nunc semper in. Cras non tristique sem. Duis nec luctus augue. Etiam leo leo, malesuada in pellentesque rutrum, tempus ut sem. Duis neque velit, aliquet at malesuada congue, ultricies vehicula lacus.\n  - name: Egestas\n    description: |\n      Phasellus eu felis hendrerit, volutpat odio sit amet, luctus augue. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean quis tempor lectus. Nam eu enim malesuada ex tristique congue id id orci. Duis pretium nisi a arcu efficitur, quis faucibus justo suscipit. Mauris consequat, eros eget cursus scelerisque, sapien nibh sodales elit, ut porttitor nisi lacus nec ante. Suspendisse libero leo, pharetra vel porta nec, gravida eu magna. Vivamus sit amet nisl elementum, euismod justo quis, volutpat nunc.\n  - name: Convallis\n    description: |\n      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam pulvinar felis eget leo porta ultricies. Integer fermentum diam at ex commodo molestie. Nulla facilisi. Donec egestas metus sodales ante vulputate dignissim. Etiam ut sollicitudin ligula. Ut molestie leo nec nisl elementum mattis. Vestibulum sollicitudin tellus ut felis aliquam, a pulvinar ipsum tempus. Etiam ac faucibus arcu. Donec non lectus faucibus odio pulvinar tempus. Duis convallis dictum eros ut varius.\n\npaths:\n  /consectetur/venenatis:\n    get:\n      summary: Nullam vehicula enim\n      description: |\n        Nullam convallis leo tortor, at vestibulum libero hendrerit at. Vivamus posuere, velit eu consectetur commodo, lectus lorem dictum felis, at commodo sem nulla sed eros. Etiam in ligula non ligula condimentum rhoncus. Phasellus aliquam lacus nisl, non hendrerit magna accumsan et. Phasellus lacinia est quis faucibus fermentum. Nulla ac sem at massa vehicula porta ac laoreet ligula. Suspendisse lobortis molestie tincidunt. Sed faucibus neque at ex feugiat, ac consequat augue aliquam.\n      tags:\n        - Consectetur\n      requestBody:\n        required: true\n        content:\n          application/json:\n            example:\n              lorem: loremipsum\n              ipsum: ipsumlorem\n            schema:\n              $ref: '#/components/schemas/LoremIpsum'\n      responses:\n        '200':\n          description: Vestibulum vitae tempor lorem\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n        '404':\n          description: Nullam blandit faucibus vehicula\n          content:\n            application/json:\n              example:\n                error: iaculis arcu vitae urna accumsan\n              schema:\n                $ref: '#/components/schemas/Error'\n        '409':\n          description: Praesent vulputate vehicula urna\n          content:\n            application/json:\n              example:\n                error: scelerisque condimentum eleifend sed\n              schema:\n                $ref: '#/components/schemas/Error'\n        '418':\n          description: Nunc enim arcu mattis at rutrum\n          content:\n            application/json:\n              example:\n                error: arcu diam laoreet nulla in vestibulum\n              schema:\n                $ref: '#/components/schemas/Error'\n\n  /consectetur/vitae:\n    post:\n      summary: Phasellus nec vestibulum\n      description: |\n        Etiam aliquam quam ac porta venenatis. Nulla facilisi. Curabitur mollis finibus mi, et congue nisi tincidunt non. Sed eleifend justo et turpis mollis sodales. In et tortor in augue mattis congue. Vestibulum imperdiet imperdiet auctor. Quisque sit amet consequat justo, in imperdiet sapien. Integer hendrerit vehicula lacus, eget vestibulum nisi consequat eget. Morbi dapibus neque aliquam mauris lacinia venenatis. Sed facilisis libero lacus, in egestas massa scelerisque molestie. Nunc tincidunt gravida sem in gravida. Duis facilisis ultrices massa, a malesuada purus ultrices nec. Cras ac urna at nulla interdum efficitur. Sed eu arcu at ante consectetur imperdiet ut vel sem.\n      tags:\n        - Consectetur\n      requestBody:\n        required: true\n        content:\n          application/json:\n            example:\n              lorem: loremipsum\n              ipsum: ipsumlorem\n            schema:\n              $ref: '#/components/schemas/LoremIpsum'\n      responses:\n        '200':\n          description: Vestibulum vitae tempor lorem\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n        '409':\n          description: Nullam blandit faucibus vehicula\n          content:\n            application/json:\n              example:\n                error: curabitur sed lectus ac felis\n              schema:\n                $ref: '#/components/schemas/Error'\n\n  /consectetur/pulvinar:\n    put:\n      summary: In tincidunt nec nisl sed ornare\n      description: |\n        Nullam blandit faucibus vehicula. Cras ut lectus ornare sapien euismod mollis id pharetra nulla. Aliquam a libero faucibus, posuere mi ac, blandit eros. Maecenas aliquet ultricies urna, nec laoreet lacus fermentum ut. Sed ac magna sed risus facilisis accumsan. Fusce scelerisque erat quis vestibulum varius. Quisque pretium interdum leo, a tristique turpis maximus eu.\n      tags:\n        - Consectetur\n      requestBody:\n        required: true\n        content:\n          application/json:\n            example:\n              lorem: loremipsum\n              ipsum: ipsumlorem\n            schema:\n              $ref: '#/components/schemas/LoremIpsum'\n      responses:\n        '200':\n          description: Nunc malesuada scelerisque sem\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n        '409':\n          description: Integer suscipit lacus lorem\n          content:\n            application/json:\n              example:\n                error: curabitur sed lectus ac felis\n              schema:\n                $ref: '#/components/schemas/Error'\n\n  /consectetur/condimentum/dolor:\n    delete:\n      summary: Cras sed augue varius\n      description: |\n        Fringilla elit eget, tincidunt odio. Curabitur ultrices eget purus ut rutrum. Ut vulputate pulvinar finibus. Quisque sollicitudin velit non dui suscipit dapibus. Duis non porta nisi. Mauris et magna vitae felis imperdiet finibus. Fusce accumsan sed urna vitae vehicula. Nulla id fermentum orci. Aenean egestas ac libero at sodales. Nam in aliquam orci. Cras volutpat placerat arcu, in gravida magna pharetra at.\n      tags:\n        - Consectetur\n      responses:\n        '200':\n          description: In ut facilisis nulla\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n        '404':\n          description: Aenean imperdiet nisi ac mauris\n          content:\n            application/json:\n              example:\n                error: integer leo massa\n              schema:\n                $ref: '#/components/schemas/Error'\n\n  /posuere/mollis:\n    get:\n      summary: Praesent consectetur pharetra\n      description: |\n        Aenean a justo vel erat condimentum sollicitudin at ut velit. Mauris volutpat lectus lorem, sed rutrum felis cursus nec. Praesent dapibus, augue vitae varius viverra, ante orci gravida risus, eu aliquet ex est non metus. In ultricies sem ac dictum feugiat. Sed accumsan pretium justo vitae rutrum. Nunc in efficitur lacus. Proin sodales condimentum blandit. Maecenas consectetur accumsan vestibulum.\n      tags:\n        - Posuere\n      responses:\n        '200':\n          description: Sed a porttitor risus id dapibus purus\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n\n  /posuere/imperdiet:\n    get:\n      summary: Mauris volutpat lectus\n      description: |\n        This endpoint provides a list of all the teams the logged in user has access to.Praesent dapibus, augue vitae varius viverra, ante orci gravida risus, eu aliquet ex est non metus. In ultricies sem ac dictum feugiat. Sed accumsan pretium justo vitae rutrum. Nunc in efficitur lacus. Proin sodales condimentum blandit. Maecenas consectetur accumsan vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean facilisis lectus et rutrum sagittis.\n      tags:\n        - Posuere\n      responses:\n        '200':\n          description: Sed a porttitor risus id dapibus purus\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n\n  /egestas/{{lorem}}/aliquam:\n    get:\n      summary: Duis ac egestas augue\n      description: |\n        Pellentesque aliquet pulvinar tellus eu varius. Quisque ultrices sit amet augue tristique lobortis. Mauris id libero a nulla dignissim sodales. Vestibulum bibendum, nunc eu finibus imperdiet, magna libero ultrices dolor, eu ullamcorper urna ipsum fringilla libero. In venenatis odio a velit vestibulum fringilla. Phasellus vulputate bibendum porta. Duis mattis quis tellus nec posuere. Nunc rutrum pharetra vulputate. Praesent et metus ultrices, tristique mauris id, consectetur erat.\n      tags:\n        - Egestas\n      responses:\n        '200':\n          description: Sed a porttitor risus id dapibus purus\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n        '403':\n          description: Nulla tincidunt dapibus nisi\n          content:\n            application/json:\n              example:\n                error: sit amet semper nibh\n              schema:\n                $ref: '#/components/schemas/Error'\n\n  /convallis:\n    post:\n      summary: Vivamus eget leo eget\n      description: |\n        Etiam pellentesque ligula urna, quis feugiat ante rhoncus nec. Praesent egestas, mi a venenatis rutrum, nisl eros lacinia libero, eget consectetur lectus enim ac risus. Vivamus at eleifend justo. Mauris cursus orci lacinia vehicula vestibulum. Integer accumsan accumsan felis vel ultricies. Phasellus gravida imperdiet urna, et varius mi pharetra eu. Interdum et malesuada fames ac ante ipsum primis in faucibus. Morbi ut nunc lacinia, euismod elit non, fermentum est. Aliquam sollicitudin sodales velit quis ultricies. Nulla sollicitudin posuere magna, eu interdum ipsum aliquet in. Vestibulum cursus at lorem non faucibus. Aliquam erat volutpat. Proin sit amet arcu ullamcorper, elementum magna a, dictum leo. Nunc lobortis cursus lacus a condimentum.\n      tags:\n        - Convallis\n      responses:\n        '200':\n          description: Quisque ultrices sit amet\n          content:\n            application/json:\n              example:\n                lorem: loremipsum\n                ipsum: ipsumlorem\n              schema:\n                $ref: '#/components/schemas/LoremIpsum'\n\ncomponents:\n  schemas:\n    Error:\n      type: object\n      required:\n        - error\n      properties:\n        error:\n          type: string\n\n    LoremIpsum:\n      type: object\n      required:\n        - lorem\n        - ipsum\n      properties:\n        lorem:\n          type: string\n        ipsum:\n          type: string\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"opendocumenter\",\n  \"version\": \"0.5.0\",\n  \"author\": \"$ourOpenCode\",\n  \"scripts\": {\n    \"start\": \"npm-run-all dev-generate dev-serve\",\n    \"dev\": \"nodemon -e js,vue,less,sass,css,html,json,yml --ignore tmp/ --ignore example/docs/ --exec npm start\",\n    \"dev-generate\": \"node ./src-engine/cli.js --schema=./example/openapi.yml --output=./example/docs --config=./example/config.json\",\n    \"dev-serve\": \"serve ./example/docs\",\n    \"vue\": \"vue-cli-service build\"\n  },\n  \"main\": \"./src-engine/index.js\",\n  \"dependencies\": {\n    \"@apidevtools/swagger-parser\": \"^10.0.1\",\n    \"@fortawesome/fontawesome-svg-core\": \"^1.2.30\",\n    \"@fortawesome/free-solid-svg-icons\": \"^5.14.0\",\n    \"@fortawesome/vue-fontawesome\": \"^0.1.10\",\n    \"@vue/cli-plugin-babel\": \"~4.5.3\",\n    \"@vue/cli-plugin-vuex\": \"~4.5.3\",\n    \"@vue/cli-service\": \"~4.5.2\",\n    \"babel-plugin-root-import\": \"^6.5.0\",\n    \"babel-runtime\": \"^6.26.0\",\n    \"colors\": \"^1.4.0\",\n    \"core-js\": \"^3.6.5\",\n    \"exec-sh\": \"^0.3.4\",\n    \"highlight.js\": \"9.18.3\",\n    \"less\": \"^3.0.4\",\n    \"less-loader\": \"^6.2.0\",\n    \"markdown-it-vue\": \"^1.1.3\",\n    \"minimist\": \"^1.2.5\",\n    \"npm-run-all\": \"^4.1.5\",\n    \"recursive-copy\": \"^2.0.10\",\n    \"uuid\": \"^8.3.0\",\n    \"vue\": \"^2.6.11\",\n    \"vue-cli-plugin-webfontloader\": \"~0.1.1\",\n    \"vue-head\": \"^2.2.0\",\n    \"vue-highlight.js\": \"^3.1.0\",\n    \"vue-template-compiler\": \"^2.6.11\",\n    \"vuex\": \"^3.4.0\",\n    \"webfontloader\": \"^1.6.28\"\n  },\n  \"devDependencies\": {\n    \"nodemon\": \"^2.0.4\",\n    \"serve\": \"^11.3.2\"\n  },\n  \"bin\": {\n    \"opendocumenter\": \"src/cli.js\"\n  },\n  \"engines\": {\n    \"node\": \">=14.6\"\n  },\n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "src/.babelrc",
    "content": "{\n  \"presets\": [\n    \"@vue/cli-plugin-babel/preset\"\n  ]\n}\n"
  },
  {
    "path": "src/.browserslistrc",
    "content": "> 1%\nlast 2 versions\nnot dead\n"
  },
  {
    "path": "src/assets/highlighter-theme-dark.less",
    "content": "/*\n\nOrginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #002b36;\n  color: #839496;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #586e75;\n}\n\n/* Solarized Green */\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-addition {\n  color: #859900;\n}\n\n/* Solarized Cyan */\n.hljs-number,\n.hljs-string,\n.hljs-meta .hljs-meta-string,\n.hljs-literal,\n.hljs-doctag,\n.hljs-regexp {\n  color: #2aa198;\n}\n\n/* Solarized Blue */\n.hljs-title,\n.hljs-section,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #268bd2;\n}\n\n/* Solarized Yellow */\n.hljs-attribute,\n.hljs-attr,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-class .hljs-title,\n.hljs-type {\n  color: #b58900;\n}\n\n/* Solarized Orange */\n.hljs-symbol,\n.hljs-bullet,\n.hljs-subst,\n.hljs-meta,\n.hljs-meta .hljs-keyword,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-link {\n  color: #cb4b16;\n}\n\n/* Solarized Red */\n.hljs-built_in,\n.hljs-deletion {\n  color: #dc322f;\n}\n\n.hljs-formula {\n  background: #073642;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "src/assets/highlighter-theme-light.less",
    "content": "/*\n\nOrginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>\n\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #fdf6e3;\n  color: #657b83;\n}\n\n.hljs-comment,\n.hljs-quote {\n  color: #93a1a1;\n}\n\n/* Solarized Green */\n.hljs-keyword,\n.hljs-selector-tag,\n.hljs-addition {\n  color: #859900;\n}\n\n/* Solarized Cyan */\n.hljs-number,\n.hljs-string,\n.hljs-meta .hljs-meta-string,\n.hljs-literal,\n.hljs-doctag,\n.hljs-regexp {\n  color: #2aa198;\n}\n\n/* Solarized Blue */\n.hljs-title,\n.hljs-section,\n.hljs-name,\n.hljs-selector-id,\n.hljs-selector-class {\n  color: #268bd2;\n}\n\n/* Solarized Yellow */\n.hljs-attribute,\n.hljs-attr,\n.hljs-variable,\n.hljs-template-variable,\n.hljs-class .hljs-title,\n.hljs-type {\n  color: #b58900;\n}\n\n/* Solarized Orange */\n.hljs-symbol,\n.hljs-bullet,\n.hljs-subst,\n.hljs-meta,\n.hljs-meta .hljs-keyword,\n.hljs-selector-attr,\n.hljs-selector-pseudo,\n.hljs-link {\n  color: #cb4b16;\n}\n\n/* Solarized Red */\n.hljs-built_in,\n.hljs-deletion {\n  color: #dc322f;\n}\n\n.hljs-formula {\n  background: #eee8d5;\n}\n\n.hljs-emphasis {\n  font-style: italic;\n}\n\n.hljs-strong {\n  font-weight: bold;\n}\n"
  },
  {
    "path": "src/assets/theme.less",
    "content": "/**\n * Colors\n */\n\n@color-body-background: white;\n@color-body-text: black;\n\n@color-body-link: #292b36;\n@color-body-link-hover: #8b8fa7;\n\n@color-sidebar-background: #f5f5f5;\n@color-sidebar-link: #16171d;\n@color-sidebar-link-hover: #8b8fa7;\n\n@color-split-background: #16171d;\n@color-split-text: white;\n\n@color-code-background: white;\n@color-code-text: black;\n@color-code-dark-background: #292b36;\n@color-code-dark-text: white;\n\n@color-toolbox-text: white;\n@color-toolbox-background: #292b36;\n@color-toolbox-active-background: #292b36;\n@color-toolbox-dropdown-background: white;\n@color-toolbox-link: #16171d;\n@color-toolbox-link-hover: #8b8fa7;\n\n@color-header-version: #808080;\n@color-header-intro: #808080;\n\n@color-help-text: #292b36;\n\n@color-endpoint-text: white;\n@color-endpoint-unk: #3387CC;\n@color-endpoint-get: green;\n@color-endpoint-put: #e5c500;\n@color-endpoint-post: #4070ec;\n@color-endpoint-delete: #ff4e3f;\n\n/**\n * Fonts\n */\n\n@primary-font: Montserrat, sans-serif;\n@secondary-font: Roboto, sans-serif;\n@monospace-font: \"Source Code Pro\", monospace;\n\n.theme-font-title() {\n  font-family: @primary-font;\n  font-weight: 400;\n  font-size: 2.5em;\n}\n\n.theme-font-subtitle() {\n  font-family: @primary-font;\n  font-weight: 400;\n  font-size: 1.8em;\n}\n\n.theme-font-summary() {\n  font-family: @primary-font;\n  font-weight: 400;\n  font-size: 1.2em;\n}\n\n.theme-font-tag-title() {\n  font-family: @primary-font;\n  font-weight: 400;\n  font-size: 1.6em;\n}\n\n.theme-font-entry-title() {\n  font-family: @primary-font;\n  font-weight: 400;\n  font-size: 1.2em;\n}\n\n.theme-font-entry-subtitle() {\n  font-family: @primary-font;\n  font-weight: 400;\n  font-size: 1em;\n}\n\n.theme-font-body() {\n  font-family: @secondary-font;\n  font-weight: 400;\n  font-size: 1em;\n}\n\n.theme-font-code() {\n  font-family: @monospace-font;\n  font-weight: 400;\n  font-size: 1em;\n}\n"
  },
  {
    "path": "src/assets/utils.less",
    "content": ".truncated() {\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\n"
  },
  {
    "path": "src/components/ContactTeam.vue",
    "content": "<template>\n  <div class=\"contact-team\">\n    {{ $i18n(\"HAVE_ANY_QUESTIONS_CONTACT\") }}\n    <span v-if=\"email && url\">\n      {{ name }} <a :href=\"'mailto:' + email\">{{ $i18n(\"VIA_EMAIL\") }}</a> {{ $i18n(\"OR\") }} <a :href=\"url\">{{ $i18n(\"VIA_OUR_WEBSITE\") }}</a>.\n    </span>\n    <span v-else-if=\"email\">\n      {{ name }} <a :href=\"'mailto:' + email\">{{ $i18n(\"VIA_EMAIL\") }}</a>.\n    </span>\n    <span v-else-if=\"url\">\n      {{ name }} <a :href=\"'mailto:' + url\">{{ $i18n(\"VIA_OUR_WEBSITE\") }}</a>.\n    </span>\n    <span v-else>\n      {{ name }}.\n    </span>\n  </div>\n</template>\n\n<script>\nexport default {\n  data() {\n    return {\n      name:  this.$api.info.contact.name || \"us\",\n      email: this.$api.info.contact.email,\n      url:   this.$api.info.contact.url\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.contact-team {\n  padding-top: 1rem;\n  color: @color-help-text;\n  a { color: @color-help-text; }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocEntry.vue",
    "content": "<template>\n  <SplitSection class=\"entry\">\n    <DocEntryTitle :title=\"definition.summary\" :path=\"definition.path\" :method=\"definition.method\" />\n\n    <Markdown v-if=\"definition.description\" :content=\"definition.description\" />\n    <p v-else>{{ $i18n('NO_INDEPTH_DOCS_AVAILABLE_ENDPOINT') }}</p>\n\n    <div v-if=\"definition.requestBody\">\n      <div class=\"entry-subtitle\">{{ $i18n('REQUEST_BODY') }}</div>\n      <ReqBody :body=\"definition.requestBody\" />\n    </div>\n\n    <div v-if=\"Object.keys(definition.responses).length > 0\">\n      <div class=\"entry-subtitle\">{{ $i18n('REQUEST_RESPONSES') }}</div>\n      <div v-for=\"(resp, code) in definition.responses\" :key=\"code\">\n        <ReqResponse :response=\"resp\" :code=\"code\" />\n      </div>\n    </div>\n\n    <div slot=\"side\">\n      <Example title=\"Example Request\" :lang=\"currentLang\" :content=\"exampleRequest\" />\"\n      <Example v-if=\"exampleResponse\" title=\"Example Response\" lang=\"json\" :content='exampleResponse' />\n      <Example v-if=\"showDefinition\" :title=\"$i18n('DEFINITION')\" lang=\"json\" :content=\"definition\" />\n    </div>\n  </SplitSection>\n</template>\n\n<script>\nimport Vuex from 'vuex'\n\nimport SplitSection from \"@/components/SplitSection\"\nimport Markdown from \"@/components/Markdown\"\nimport DocEntryTitle from \"@/components/DocEntryTitle\"\nimport Example from \"@/components/Example\"\nimport ReqBody from \"@/components/ReqBody\"\nimport ReqResponse from \"@/components/ReqResponse\"\n\nexport default {\n  props: ['definition', 'show-definition'],\n  components: { SplitSection, Markdown, DocEntryTitle, Example, ReqBody, ReqResponse },\n  computed: {\n    exampleRequest() {\n      return this.$codegen(this.currentLang, this.definition)\n    },\n    exampleResponse() {\n      let resp = this.definition.responses['200']\n      if(!resp) resp = this.definition.responses['default']\n      if(!resp) return undefined\n\n      if(!resp.content || !resp.content['application/json'])\n        return undefined\n\n      return resp.content['application/json'].example\n    },\n    ...Vuex.mapGetters(['currentServer', 'currentLang', 'showDefinition'])\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.entry {\n  .split-section__main {\n    padding-bottom: 3em;\n  }\n\n  .entry-subtitle {\n    .theme-font-entry-subtitle();\n    padding-bottom: 1em;\n  }\n\n  .markdown {\n    padding-bottom: 1em;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocEntryTitle.vue",
    "content": "<template>\n  <div class=\"entry-title\" :id=\"$hashPath(path, method)\">\n    <div class=\"entry-title__title\">\n      <p>{{ title }}</p>\n    </div>\n    <div class=\"entry-title__endpoint\">\n      <endpoint :method=\"method\" :path=\"path\" />\n    </div>\n  </div>\n</template>\n\n<script>\nimport Endpoint from '@/components/Endpoint'\n\nexport default {\n  components: { Endpoint },\n  props: ['title', 'path', 'method']\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n@import \"@/assets/utils.less\";\n\n.entry-title {\n  width: 100%;\n  display: flex;\n  align-items: center;\n\n  &__title {\n    flex: 1 1 auto;\n    min-width: 0;\n    p {\n      .truncated();\n      .theme-font-entry-title();\n    }\n  }\n\n  &__endpoint {\n    flex: 0 0 auto;\n    .theme-font-entry-title();\n    font-size: 0.9em;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocFooter.vue",
    "content": "<template>\n  <SplitSection class=\"footer\" id=\"bottom\">\n    <a href=\"https://github.com/ouropencode/opendocumenter\" target=\"_blank\" slot=\"side\" class=\"footer__link\">\n      <div class=\"footer__love\">\n        <font-awesome-icon icon=\"heart\" />\n      </div>\n      <div class=\"footer__credit\">\n        {{ $i18n('GENERATED_USING') }}\n      </div>\n    </a>\n  </SplitSection>\n</template>\n\n<script>\nimport SplitSection from \"@/components/SplitSection\"\n\nexport default {\n  components: { SplitSection }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.footer {\n  &__link {\n    position: relative;\n    display: block;\n    opacity: 0.7;\n    color: @color-code-dark-text;\n    text-decoration: none;\n\n    &:hover {\n      opacity: 1;\n    }\n  }\n\n  &__credit {\n    padding: 3rem 0;\n    text-transform: uppercase;\n    text-align: center;\n    font-size: 0.8em;\n    opacity: 0.4;\n  }\n\n  &__love {\n    font-size: 3em;\n    svg {\n      position: absolute;\n      top: 50%;\n      left: 50%;\n      transform: translate(-50%, -50%);\n      opacity: 0.1;\n    }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocHeader.vue",
    "content": "<template>\n  <SplitSection class=\"header\" id=\"top\" :no-padding=\"true\">\n    <div class=\"header-split\">\n      <div class=\"header-split__left header__title\">{{ $api.info.title }}</div>\n      <div class=\"header-split__right header__shields\">\n        <shield v-for=\"(shield, idx) in shields\" :key=\"idx\"\n          :url=\"shield.url\"\n          :left=\"shield.left\"\n          :right=\"shield.right\"\n          :translate=\"shield.translate\"\n          :color=\"shield.color\"\n          :href=\"shield.href\"\n          />\n      </div>\n    </div>\n\n    <div class=\"header__subtitle\">{{ $i18n('API_SDK_DOCUMENTATION') }}</div>\n\n    <markdown v-if=\"$api.info.summary\" class=\"header__summary\" :content=\"$api.info.summary\" />\n    <markdown v-if=\"$api.info.description\" class=\"header__description\" :content=\"$api.info.description\" />\n\n    <ContactTeam v-if=\"$api.info.contact\" />\n\n    <div slot=\"side\">\n      <DocToolbox />\n    </div>\n  </SplitSection>\n</template>\n\n<script>\nimport SplitSection from \"@/components/SplitSection\"\nimport Markdown from \"@/components/Markdown\"\nimport DocToolbox from \"@/components/DocToolbox\"\nimport Shield from \"@/components/Shield\"\nimport ContactTeam from \"@/components/ContactTeam\"\n\nexport default {\n  components: { SplitSection, Markdown, DocToolbox, Shield, ContactTeam },\n  computed: {\n    shields() {\n      const shields = [\n        { left: \"VERSION\", right: this.$api.info.version, translate: \"left\", color: \"#EE7A3B\" },\n      ]\n\n      if(this.$api.info.license) {\n        let license = this.$api.info.license\n        shields.push({\n          left: \"LICENSE\",\n          right: license.identifier || license.name || \"unknown\",\n          translate: \"left\",\n          href: license.url,\n        })\n      }\n\n      return [\n        ...shields,\n        ...(this.$config.shields || []),\n      ]\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.header {\n  .header-split {\n    display: flex;\n    &__left { flex: 0 0 auto; }\n    &__right { flex: 1 1 auto; }\n  }\n\n  &__shields {\n    color: @color-header-version;\n    padding: 0.25rem 0 0 0;\n    text-align: right;\n  }\n\n  &__title {\n    .theme-font-title();\n    padding: 0 0 1.6rem 0;\n  }\n\n  &__subtitle {\n    .theme-font-subtitle();\n    padding: 1.5rem 0 1.25rem 0;\n  }\n\n  &__summary {\n    p { .theme-font-summary(); }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocLayout.vue",
    "content": "<template>\n  <div class=\"layout\">\n    <div class=\"layout__sidebar\">\n      <DocSidebar />\n    </div>\n    <div class=\"layout__content\">\n      <DocHeader />\n      <article v-for=\"tag in $api.tags\" :key=\"tag.name\">\n        <DocTag :tag=\"tag\" />\n      </article>\n      <DocFooter v-if=\"$config.disableGeneratedUsingFooter == false\" />\n    </div>\n  </div>\n</template>\n\n<script>\nimport DocSidebar from \"@/components/DocSidebar\"\nimport DocHeader from \"@/components/DocHeader\"\nimport DocTag from \"@/components/DocTag\"\nimport DocFooter from \"@/components/DocFooter\"\n\nexport default {\n  components: { DocSidebar, DocHeader, DocTag, DocFooter },\n  head() {\n    return {\n      title: `${this.$api.info.title} - ${this.$api.info.version}`,\n      meta: [\n        { name: 'description', content: this.$api.info.description.substr(0, 160), vmid: 'index' }\n      ]\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.layout {\n  display: flex;\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n\n  &__sidebar {\n    flex: 0 0 auto;\n    width: 16em;\n    height: 100%;\n    overflow-x: hidden;\n    overflow-y: auto;\n\n    background: @color-sidebar-background;\n  }\n\n  &__content {\n    flex: 1 1 auto;\n    height: 100%;\n    overflow-x: hidden;\n    overflow-y: auto;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocSidebar.vue",
    "content": "<template>\n  <div class=\"sidebar\">\n    <div>\n      <DocSidebarTag :home=\"true\" />\n    </div>\n\n    <div class=\"external-docs\" v-if=\"$api.externalDocs\">\n      <DocSidebarTag v-if=\"$api.externalDocs.url\" :link=\"$api.externalDocs.url\" :text=\"$api.externalDocs.description || $i18n('EXTERNAL_DOCUMENTATION')\" />\n    </div>\n\n    <div v-for=\"tag in $api.tags\" :key=\"tag.name\">\n      <DocSidebarTag :tag=\"tag\" />\n    </div>\n\n    <div class=\"additional-links\">\n      <div v-if=\"$api.info.termsOfService\">\n        <DocSidebarTag :link=\"$api.info.termsOfService\" :text=\"$i18n('TERMS_OF_SERVICE')\" />\n      </div>\n\n      <div v-if=\"$api.info.contact\">\n        <DocSidebarTag v-if=\"$api.info.contact.email\" :link=\"$api.info.contact.email\" :text=\"$i18n('SEND_US_AN_EMAIL')\" />\n        <DocSidebarTag v-if=\"$api.info.contact.url\" :link=\"$api.info.contact.url\" :text=\"$i18n('VISIT_OUR_WEBSITE')\" />\n      </div>\n    </div>\n  </div>\n</template>\n\n<script>\nimport DocSidebarTag from '@/components/DocSidebarTag'\n\nexport default {\n  components: { DocSidebarTag }\n}\n</script>\n\n<style>\n.additional-links {\n  opacity: 0.5;\n  padding: 1em 0;\n\n}\n</style>\n"
  },
  {
    "path": "src/components/DocSidebarEntry.vue",
    "content": "<template>\n  <a :href=\"href\" class=\"sidebar-entry\" @click=\"click\">\n    <div class=\"sidebar-entry__title\">{{ definition.summary }}</div>\n    <div class=\"sidebar-entry__method\" :data-type=\"definition.method\">{{ definition.method }}</div>\n  </a>\n</template>\n\n<script>\nexport default {\n  props: ['definition'],\n  methods: {\n    click(e) {\n      e.preventDefault()\n      this.$smoothScroll(this.$hashPath(this.definition.path, this.definition.method))\n    },\n  },\n  computed: {\n    href() {\n      return \"#\" + this.$hashPath(this.definition.path, this.definition.method);\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n@import \"@/assets/utils.less\";\n\n.sidebar-entry {\n  display: flex;\n  padding: 0.5em 1em 0.5em 1.5em;\n  align-items: center;\n  text-decoration: none;\n\n  color: @color-sidebar-link;\n  &:hover {\n    color: @color-sidebar-link-hover;\n  }\n\n  &__title {\n    .truncated();\n    flex: 1 1 auto;\n  }\n\n  &__method {\n    flex: 0 0 auto;\n    text-transform: uppercase;\n    font-size: 0.8em;\n    padding-left: 0.5em;\n\n    color: @color-endpoint-unk;\n    &[data-type=\"get\"] { color: @color-endpoint-get; }\n    &[data-type=\"put\"] { color: @color-endpoint-put; }\n    &[data-type=\"post\"] { color: @color-endpoint-post; }\n    &[data-type=\"delete\"] { color: @color-endpoint-delete; }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocSidebarTag.vue",
    "content": "<template>\n  <div class=\"sidebar-tag\" v-if=\"home\">\n    <a href=\"#\" @click=\"click\" class=\"sidebar-tag__name\">{{ $api.info.title }}</a>\n  </div>\n  <div class=\"sidebar-tag\" v-else-if=\"this.link\">\n    <a :href=\"this.link\" target=\"_blank\" class=\"sidebar-tag__name\">{{ this.text }}</a>\n  </div>\n  <div class=\"sidebar-tag\" v-else>\n    <a :href=\"href\" @click=\"click\" class=\"sidebar-tag__name\">{{ tag.name }}</a>\n    <div class=\"sidebar-tag__entries\">\n      <div v-for=\"(pathDef, path) in tag.paths\" :key=\"path\">\n        <div v-for=\"(methodDef, method) in pathDef\" :key=\"method\">\n          <DocSidebarEntry :definition=\"methodDef\" />\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n\n<script>\nimport DocSidebarEntry from '@/components/DocSidebarEntry'\n\nexport default {\n  props: ['tag', 'home', 'link', 'text'],\n  components: { DocSidebarEntry },\n  methods: {\n    click(e) {\n      e.preventDefault()\n      this.$smoothScroll(this.home ? \"\" : this.$hashPath('', this.tag.name))\n    },\n  },\n  computed: {\n    href() {\n      if(this.home)\n        return \"#top\"\n      return \"#\" + this.$hashPath('', this.tag.name)\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n@import \"@/assets/utils.less\";\n\n.sidebar-tag {\n  &__name {\n    .truncated();\n    display: block;\n    padding: 1em 1em 0.5em 1em;\n    text-decoration: none;\n\n    color: @color-sidebar-link;\n    &:hover {\n      color: @color-sidebar-link-hover;\n    }\n  }\n\n  &__entries {\n    font-size: 0.8em;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocTag.vue",
    "content": "<template>\n  <div class=\"doc-tag\">\n    <SplitSection>\n      <div :id=\"$hashPath('', tag.name)\" class=\"doc-tag__title\">{{ tag.name }}</div>\n\n      <div class=\"doc-tag__content\">\n        <markdown v-if=\"tag.description\" :content=\"tag.description\" />\n        <p v-else>{{ $i18n('NO_INDEPTH_DOCS_AVAILABLE_TAG') }}</p>\n      </div>\n    </SplitSection>\n\n    <div v-for=\"(pathDef, path) in tag.paths\" :key=\"path\">\n      <div v-for=\"(methodDef, method) in pathDef\" :key=\"method\">\n        <DocEntry :definition=\"methodDef\" :show-definition=\"true\" />\n      </div>\n    </div>\n  </div>\n</template>\n\n<script>\nimport SplitSection from \"@/components/SplitSection\"\nimport Markdown from \"@/components/Markdown\"\nimport DocEntry from \"@/components/DocEntry\"\n\nexport default {\n  props: ['tag'],\n  components: { SplitSection, Markdown, DocEntry }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n.doc-tag {\n  &__title {\n    .theme-font-tag-title();\n    padding: 0.75em 0;\n  }\n\n  &__content {\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocToolbox.vue",
    "content": "<template>\n  <div class=\"toolbox\">\n    <DocToolboxDropdown v-if=\"serverOptions.length\" :label=\"$i18n('SERVER')\" v-model=\"currentServer\" :options=\"serverOptions\" :show-key=\"true\" />\n    <DocToolboxDropdown v-if=\"langOptions.length\" :label=\"$i18n('LANGUAGE')\" v-model=\"currentLang\" :options=\"langOptions\" />\n    <div class=\"toolbox__spacer\"></div>\n    <DocToolboxDropdown :label=\"$i18n('DEFINITIONS')\" v-model=\"showDefinition\" :options=\"showDefOptions\" />\n    <DocToolboxIcon icon=\"cog\" @click=\"openOptions\" />\n  </div>\n</template>\n\n<script>\nimport DocToolboxIcon from '@/components/DocToolboxIcon'\nimport DocToolboxDropdown from '@/components/DocToolboxDropdown'\n\nexport default {\n  components: { DocToolboxIcon, DocToolboxDropdown },\n  mounted() {\n    if(!this.currentServer && this.serverOptions.length)\n      this.currentServer = this.serverOptions[0].key\n    if(!this.currentLang && this.langOptions.length)\n      this.currentLang = this.langOptions[0].key\n  },\n  methods: {\n    openOptions() {\n      alert('No options currently available.')\n    },\n  },\n  computed: {\n    serverOptions() {\n      const options = [];\n      this.$api.servers.forEach(server => options.push({\n        key:   server.url,\n        value: server.description\n      }));\n      return options\n    },\n    langOptions() {\n      return [\n        {key: 'curl', value: 'cURL'},\n        //{key: 'php',  value: 'PHP'},\n      ]\n    },\n    showDefOptions() {\n      return [\n        {key: false, value: 'Hide'},\n        {key: true,  value: 'Show'},\n      ]\n    },\n    currentServer: {\n      get() {\n        return this.$store.getters.currentServer\n      },\n      set(value) {\n        this.$store.commit('setServer', value)\n      },\n    },\n    currentLang: {\n      get() {\n        return this.$store.getters.currentLang\n      },\n      set(value) {\n        this.$store.commit('setLang', value)\n      },\n    },\n    showDefinition: {\n      get() {\n        return this.$store.getters.showDefinition\n      },\n      set(value) {\n        this.$store.commit('setShowDefinition', value)\n      },\n    },\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.toolbox {\n  display: flex;\n  background: @color-toolbox-background;\n  color: @color-toolbox-text;\n  justify-content: flex-end;\n\n  &__spacer {\n    flex: 1 1 auto;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocToolboxDropdown.vue",
    "content": "<template>\n  <div class=\"toolbox-dropdown\">\n    <div class=\"toolbox-dropdown__label\">\n      {{ label }}\n    </div>\n\n    <div class=\"toolbox-dropdown__value\" @click=\"isOpen = !isOpen\">\n      <div>\n        <span>{{ valueText }}</span>\n      </div>\n\n      <div class=\"toolbox-dropdown__options\" v-show=\"isOpen\" v-if=\"options.length > 1\">\n        <div class=\"toolbox-dropdown-option\" v-for=\"opt in options\" :key=\"opt.key\" @click=\"$emit('input', opt.key)\">\n          <span v-if=\"showKey\">\n            <b>{{ opt.value }}</b>\n            {{ opt.key }}\n          </span>\n          <span v-else>\n            {{ opt.value }}\n          </span>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"toolbox-dropdown__arrow\" @click=\"isOpen = !isOpen\" v-if=\"options.length > 1\">\n      <font-awesome-icon icon=\"chevron-down\" />\n    </div>\n  </div>\n</template>\n\n<script>\nimport DocToolboxDropdown from '@/components/DocToolboxDropdown'\n\nexport default {\n  props: ['label', 'value', 'options',  'show-key'],\n  components: { DocToolboxDropdown },\n  computed: {\n    valueText() {\n      for(let opt of this.options) {\n        if(opt.key == this.value)\n          return opt.value\n      }\n      return this.value\n    }\n  },\n  data() {\n    return {\n      isOpen: false\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n@import \"@/assets/utils.less\";\n\n.toolbox-dropdown {\n  display: flex;\n  align-items: center;\n\n  &__label {\n    flex: 0 0 auto;\n    padding: 0.5em 0.5em 0.5em 1em;\n    text-transform: uppercase;\n    font-size: 0.8em;\n    opacity: 0.8;\n  }\n\n  &__value {\n    cursor: pointer;\n    position: relative;\n    flex: 0 0 auto;\n    max-width: 10em;\n    background: @color-toolbox-active-background;\n    padding: 0.5em;\n    font-size: 0.8em;\n    > div {\n      display: block;\n      .truncated();\n      span {\n        padding-right: 0.25em;\n      }\n    }\n  }\n\n  &__arrow {\n    cursor: pointer;\n  }\n\n  &__options {\n    position: absolute;\n    top: 100%;\n    left: 0;\n    padding: 0.25em;\n    background: @color-toolbox-dropdown-background;\n  }\n}\n\n.toolbox-dropdown-option {\n  padding: 0.5em;\n  color: @color-toolbox-link;\n  max-width: 15em;\n  .truncated();\n\n  &:hover {\n    color: @color-toolbox-link-hover;\n  }\n\n  b {\n    display: block;\n    padding-bottom: 0.25em;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/DocToolboxIcon.vue",
    "content": "<template>\n  <div class=\"toolbox-icon\" @click=\"$emit('click')\">\n    <font-awesome-icon :icon=\"icon\" />\n  </div>\n</template>\n\n<script>\nexport default {\n  props: ['icon']\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n@import \"@/assets/utils.less\";\n\n.toolbox-icon {\n  cursor: pointer;\n  font-size: 1.25em;\n  padding: 0.2em 0.4em;\n  opacity: 0.5;\n  &:hover {\n    opacity: 1.0;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/Endpoint.vue",
    "content": "<template>\n  <div class=\"endpoint\" :data-type=\"method\" @click=\"copyText\">\n    <div class=\"endpoint__path\" ref=\"text\">\n      {{ path }}\n    </div>\n\n    <div class=\"endpoint__method\">\n      {{ method }}\n    </div>\n\n    <div class=\"endpoint__hover\">\n      <span v-if=\"copied\">{{ $i18n('COPIED') }}</span>\n      <span v-else>{{ $i18n('CLICK_TO_COPY') }}</span>\n    </div>\n  </div>\n</template>\n\n<script>\nexport default {\n  props: ['method', 'path'],\n  methods: {\n    copyText() {\n      clearTimeout(this.timeout)\n      this.selectText(this.$refs.text)\n      document.execCommand(\"copy\")\n      this.copied = true\n      this.timeout = setTimeout(() => this.copied = false, 3000)\n    },\n    selectText(element) {\n      var range\n      if (document.selection) {\n        range = document.body.createTextRange()\n        range.moveToElementText(element)\n        range.select()\n      } else if (window.getSelection) {\n        range = document.createRange()\n        range.selectNode(element)\n        window.getSelection().removeAllRanges()\n        window.getSelection().addRange(range)\n      }\n    }\n  },\n  data() {\n    return {\n      copied: false,\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n@border-radius: 0.5rem;\n\n.endpoint {\n  position: relative;\n  display: flex;\n  align-items: center;\n\n  cursor: pointer;\n\n  border-radius: @border-radius;\n\n  background: @color-endpoint-unk;\n  &[data-type=\"get\"] { background: @color-endpoint-get; }\n  &[data-type=\"put\"] { background: @color-endpoint-put; }\n  &[data-type=\"post\"] { background: @color-endpoint-post; }\n  &[data-type=\"delete\"] { background: @color-endpoint-delete; }\n\n  &__method {\n    flex: 0 0 auto;\n\n    color: @color-endpoint-text;\n    font-weight: 600;\n    font-size: 0.8em;\n    text-transform: uppercase;\n\n    padding: 0 0.75em;\n\n    border-top-right-radius: @border-radius;\n    border-bottom-right-radius: @border-radius;\n  }\n\n  &__path {\n    .theme-font-code();\n    flex: 0 0 auto;\n    background-color: @color-code-dark-background;\n    color: @color-code-dark-text;\n\n    padding: 0.4em 0.5em 0.5em 0.5em;\n\n    border-top-left-radius: @border-radius;\n    border-bottom-left-radius: @border-radius;\n  }\n\n  &__hover {\n    display: none;\n    position: absolute;\n    font-size: 0.8em;\n    bottom: -1.25em;\n    right: 0;\n    opacity: 0.5;\n  }\n\n  &:hover {\n    .endpoint__hover {\n      display: block;\n    }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/Example.vue",
    "content": "<template>\n  <div class=\"example\">\n    <div class=\"example__title\">{{ title }}</div>\n    <highlight :dark-mode=\"true\" :lang=\"lang\" :content=\"content\" />\n  </div>\n</template>\n\n<script>\nimport Highlight from \"@/components/Highlight\"\n\nexport default {\n  props: ['title', 'content', 'lang'],\n  components: { Highlight }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.example {\n  padding-top: 0.75em;\n  padding-bottom: 1em;\n\n  &__title {\n    color: @color-split-text;\n    font-size: 0.8em;\n    text-transform: uppercase;\n    padding: 1em;\n    opacity: 0.9;\n  }\n\n  pre {\n    padding: 1em;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/Highlight.vue",
    "content": "<template>\n  <div :key=\"content+lang\" class=\"highlight\">\n    <highlight-code :class=\"highlightClasses\" :lang=\"realLang\">{{ content }}</highlight-code>\n  </div>\n</template>\n\n<script>\nexport default {\n  props: ['content', 'lang', 'dark-mode'],\n  computed: {\n    realLang() {\n      let lang = this.lang\n      if(lang == \"curl\") lang = \"bash\"\n      if(lang == \"json\") lang = \"json\"\n      return lang\n    },\n    highlightClasses() {\n      let lang = this.realLang\n\n      const classes = {};\n      classes['language-' + lang] = true\n\n      if(this.darkMode) {\n        classes['dark-mode'] = true\n      } else {\n        classes['light-mode'] = true\n      }\n\n      return classes;\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.highlight {\n  pre {\n    display: block;\n    width: 100%;\n    box-sizing: border-box;\n    overflow-x: auto;\n\n    background-color: @color-code-background !important;\n    color: @color-code-text;\n\n    code {\n      word-break: break-all;\n      white-space: pre-wrap !important;\n      background-color: transparent !important;\n    }\n\n    &.light-mode {\n      @import \"@/assets/highlighter-theme-light.less\";\n    }\n    &.dark-mode {\n      @import \"@/assets/highlighter-theme-dark.less\";\n      background-color: @color-code-dark-background !important;\n      color: @color-code-dark-text;\n    }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/Markdown.vue",
    "content": "<template>\n  <markdown-it-vue-light class=\"markdown md-body\" :content=\"content\" />\n</template>\n\n<script>\nimport MarkdownItVueLight from 'markdown-it-vue/dist/markdown-it-vue-light.umd.min.js'\nimport 'markdown-it-vue/dist/markdown-it-vue-light.css'\n\nexport default {\n  props: ['content'],\n  components: { MarkdownItVueLight }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.markdown {\n  p {\n    line-height: 1.5em;\n  }\n\n  blockquote {\n    margin: 0;\n    opacity: 0.8;\n    font-size: 0.8em;\n  }\n\n  pre, code {\n    background-color: @color-code-background !important;\n    color: @color-code-text;\n    @import \"@/assets/highlighter-theme-light.less\";\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/ReqBody.vue",
    "content": "<template>\n  <div class=\"req-body\">\n    <Highlight lang=\"json\" :content=\"body.content['application/json'].example\" />\n  </div>\n</template>\n\n<script>\nimport Highlight from \"@/components/Highlight\"\n\nexport default {\n  props: ['body'],\n  components: { Highlight }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.req-body {\n  padding-bottom: 1em;\n}\n</style>\n"
  },
  {
    "path": "src/components/ReqResponse.vue",
    "content": "<template>\n  <div class=\"req-response\">\n    <div class=\"req-response__code\">\n      <StatusCode :code=\"code\" />\n    </div>\n    <div class=\"req-response__response\">\n      {{ response.description }}\n      <Highlight v-if=\"response.content\" lang=\"json\" :content=\"response.content['application/json'].example\" />\n    </div>\n  </div>\n</template>\n\n<script>\nimport Highlight from \"@/components/Highlight\"\nimport StatusCode from \"@/components/StatusCode\"\n\nexport default {\n  props: ['code', 'response'],\n  components: { Highlight, StatusCode }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.req-response {\n  display: flex;\n\n  &__code {\n    flex: 0 0 auto;\n    width: 5em;\n    padding: 0.5em;\n    text-align: right;\n  }\n\n  &__response {\n    flex: 1 1 auto;\n    padding: 0.5em;\n    pre {\n      margin-top: 0.5em;\n    }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/Shield.vue",
    "content": "<template>\n  <a :href=\"href\" class=\"badge\">\n    <img :src=\"src\" />\n  </a>\n</template>\n\n<script>\nexport default {\n  props: ['url', 'left', 'right', 'color', 'translate', 'href'],\n  computed: {\n    src() {\n      if(this.url)\n        return this.url;\n\n      let left = this.left\n      if(this.translate == \"left\" || this.translate == \"both\")\n        left = this.$i18n(left).toLowerCase()\n\n      let right = this.right\n      if(this.translate == \"right\" || this.translate == \"both\")\n        right = this.$i18n(right)\n\n      return `https://img.shields.io/static/v1?`\n        + `label=${encodeURIComponent(left)}`\n        + `&message=${encodeURIComponent(right)}`\n        + `&color=${encodeURIComponent(this.color)}`\n    }\n  }\n}\n</script>\n\n<style lang=\"less\">\n.badge {\n  display: inline-block;\n  padding: 0 0.25em;\n}\n</style>\n"
  },
  {
    "path": "src/components/SplitSection.vue",
    "content": "<template>\n  <div class=\"split-section\">\n    <div class=\"split-section__main\">\n      <slot></slot>\n    </div>\n    <div class=\"split-section__side\" :class=\"{'no-padding': noPadding}\">\n      <slot name=\"side\"></slot>\n    </div>\n  </div>\n</template>\n\n<script>\nexport default {\n  props: ['no-padding']\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\n.split-section {\n  display: flex;\n\n  &__main {\n    flex: 0 0 auto;\n    width: 60%;\n    padding: 1rem;\n    box-sizing: border-box;\n  }\n\n  &__side {\n    flex: 0 0 auto;\n    width: 40%;\n    padding-top: 1rem;\n    background: @color-split-background;\n    box-sizing: border-box;\n    &.no-padding { padding: 0; }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/StatusCode.vue",
    "content": "<template>\n  <div class=\"status-code\">\n    <div class=\"status-code__code\">{{ code }}</div>\n    <div class=\"status-code__friendly\">{{ friendlyCode(code) }}</div>\n  </div>\n</template>\n\n<script>\nexport default {\n  props: ['code'],\n  methods: {\n    friendlyCode(code) {\n      return codes[code];\n    }\n  }\n}\n\nconst codes = {\n    '200': 'OK',\n    '201': 'Created',\n    '202': 'Accepted',\n    '203': 'Non-Authoritative Information',\n    '204': 'No Content',\n    '205': 'Reset Content',\n    '206': 'Partial Content',\n    '300': 'Multiple Choices',\n    '301': 'Moved Permanently',\n    '302': 'Found',\n    '303': 'See Other',\n    '304': 'Not Modified',\n    '305': 'Use Proxy',\n    '306': 'Unused',\n    '307': 'Temporary Redirect',\n    '400': 'Bad Request',\n    '401': 'Unauthorized',\n    '402': 'Payment Required',\n    '403': 'Forbidden',\n    '404': 'Not Found',\n    '405': 'Method Not Allowed',\n    '406': 'Not Acceptable',\n    '407': 'Proxy Authentication Required',\n    '408': 'Request Timeout',\n    '409': 'Conflict',\n    '410': 'Gone',\n    '411': 'Length Required',\n    '412': 'Precondition Required',\n    '413': 'Request Entry Too Large',\n    '414': 'Request-URI Too Long',\n    '415': 'Unsupported Media Type',\n    '416': 'Requested Range Not Satisfiable',\n    '417': 'Expectation Failed',\n    '418': 'I\\'m a teapot',\n    '420': 'Enhance your calm',\n    '500': 'Internal Server Error',\n    '501': 'Not Implemented',\n    '502': 'Bad Gateway',\n    '503': 'Service Unavailable',\n    '504': 'Gateway Timeout',\n    '505': 'HTTP Version Not Supported',\n}\n</script>\n\n<style lang=\"less\">\n.status-code {\n  &__code {\n\n  }\n  &__friendly {\n    opacity: 0.5;\n    font-size: 0.8em;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/environment.json",
    "content": "{\n  \"api\": {\n    \"openapi\": \"0.0.0\",\n    \"info\": {},\n    \"servers\": [],\n    \"paths\": {},\n    \"components\": {},\n    \"security\": [],\n    \"tags\": [],\n    \"externalDocs\": []\n  },\n  \"i18n\": {}\n}\n"
  },
  {
    "path": "src/index.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n    <title>Loading Documentation...</title>\n    <style>\n      body,html{width:100%;height:100%;margin:0;padding:0}#page-loading{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.ldi{display:block;width:5vh;height:5vh}.ldi:after{content:\"\";display:block;width:5vh;height:5vh;border-radius:50%;border:1vh solid;border-color:#ccc #fff #ccc #fff;animation:_A 1.2s infinite}@keyframes _A{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}\n    </style>\n  </head>\n  <body>\n    <div id=\"app\"></div>\n    <div id=\"page-loading\"><div class=\"ldi\"></div></div>\n  </body>\n</html>\n"
  },
  {
    "path": "src/index.js",
    "content": "import Vue from 'vue'\n\nimport './plugins/codegen'\nimport envInject from './plugins/envInject'\n\nVue.config.productionTip = false\n\n// Setup webfonts\nimport WebFont from 'webfontloader'\nWebFont.load({\n  google: {\n    families: [\"Montserrat:200,400\", \"Roboto:400,700\", \"Source Code Pro:400\"]\n  }\n})\n\n// Setup vue-head\nimport VueHead from 'vue-head'\nVue.use(VueHead)\n\n// Setup vue-highlight.js\nimport VueHighlightJS from 'vue-highlight.js'\nimport 'vue-highlight.js/lib/allLanguages'\nimport 'highlight.js/styles/default.css'\nVue.use(VueHighlightJS)\n\n// Setup fontawesome\nimport { library } from '@fortawesome/fontawesome-svg-core'\nimport { faChevronDown, faCog, faHeart, faQuestionCircle } from '@fortawesome/free-solid-svg-icons'\nimport { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'\nlibrary.add(faChevronDown)\nlibrary.add(faCog)\nlibrary.add(faHeart)\nlibrary.add(faQuestionCircle)\nVue.component('font-awesome-icon', FontAwesomeIcon)\n\n// Smooth scrolling helper function\nVue.prototype.$smoothScroll = id => {\n  history.pushState({}, '', \"#\" + id)\n  if(id == \"\") id = \"top\"\n  let ele = document.getElementById(id)\n  if(!ele)\n    return console.log(\"cannot scroll to missing ele\", id)\n  document.getElementById(id).scrollIntoView({\n    behavior: \"smooth\"\n  })\n}\n\n// Path hashing function\nVue.prototype.$hashPath = (path, method) => {\n  path = path.replace(/[^a-zA-Z0-9_-]+/g, \"-\")\n  let hash = `${method}-${path}`\n  return hash.replace(/-+$/g, \"\").toLowerCase()\n}\n\n// Initialise Vue\nimport store from './store'\nimport index from './index.vue'\n;(async () => {\n  await envInject()\n  new Vue({\n    store: store,\n    render: h => h(index)\n  }).$mount('#app')\n})()\n"
  },
  {
    "path": "src/index.vue",
    "content": "<template>\n  <div id=\"app\">\n    <DocLayout />\n  </div>\n</template>\n\n<script>\nimport DocLayout from \"@/components/DocLayout\"\n\nexport default {\n  components: { DocLayout },\n  mounted() {\n    const hash = document.location.hash.substr(1)\n    if(hash.length > 0)\n      this.$smoothScroll(hash)\n    document.getElementById(\"page-loading\").remove()\n  },\n  head: {\n    title: function() {\n      return {\n        inner: `${this.$api.info.title} - ${this.$api.info.version}`,\n        separator: '-',\n        complement: this.$i18n(\"DOCUMENTATION\"),\n      }\n    },\n    meta: function() {\n      return [\n        { name: 'description', content: this.$api.info.description.substr(0, 160), vmid: 'index' },\n      ]\n    },\n  }\n}\n</script>\n\n<style lang=\"less\">\n@import \"@/assets/theme.less\";\n\nbody {\n  .theme-font-body();\n  background: @color-body-background;\n  color: @color-body-text;\n  margin: 0;\n  padding: 0;\n}\n\npre, code {\n  .theme-font-code();\n  padding: 0;\n  margin: 0;\n}\n\np {\n  .theme-font-body();\n}\n\na {\n  color: @color-body-link;\n  &:hover { color: @color-body-link-hover; }\n}\n</style>\n"
  },
  {
    "path": "src/plugins/codegen.js",
    "content": "import Vue from 'vue'\nimport store from '@/store'\n\nconst generators = {\n\n  curl(server, def) {\n    let cmd = `curl -X ${def.method.toUpperCase()} \"${server}${def.path}\"`\n\n    if (def.requestBody) {\n      if(def.requestBody.content['application/json']) {\n        let example = JSON.stringify(def.requestBody.content['application/json'].example || {});\n        cmd += ` -H \"Content-Type: application/json\" --data ${example}`\n      }\n    }\n\n    return cmd\n  },\n\n}\n\nconst codegen = (lang, def) => {\n  const server = store.getters.currentServer\n  if(!generators[lang])\n    return \"\"\n  return generators[lang](server, def)\n}\n\nVue.prototype.$codegen = codegen\n"
  },
  {
    "path": "src/plugins/envInject.js",
    "content": "import Vue from 'vue'\nimport SwaggerParser from '@apidevtools/swagger-parser'\nimport Environment from '../environment.json'\n\nconst addSaneDefaults = api => {\n  api.info = {\n    title: \"Untitled\",\n    version: \"0.0.0\",\n    description: \"\",\n    ...api.info\n  }\n}\n\nconst addPathMethodAndDefaultTags = api => {\n  for(let path in api.paths) {\n    for(let method in api.paths[path]) {\n      const def = api.paths[path][method]\n      def.path = path\n      def.method = method\n      if(!Array.isArray(def.tags) || def.tags.length == 0) {\n        def.tags = ['default']\n        if(api.tags.filter(t => t.name == 'default').length == 0)\n          api.tags.push({ name: \"default\" })\n      }\n    }\n  }\n}\n\nconst addPathsToTags = api => {\n  api.tags.forEach(tag => {\n    tag.paths = {}\n    for(let path in api.paths) {\n      for(let method in api.paths[path]) {\n        const def = api.paths[path][method]\n        if(def.tags.indexOf(tag.name) !== -1) {\n          if(tag.paths[path] == undefined)\n            tag.paths[path] = {}\n          tag.paths[path][method] = def\n        }\n      }\n    }\n  })\n}\n\nexport default async () => {\n  let api = Environment.api\n  addSaneDefaults(api)\n  addPathMethodAndDefaultTags(api)\n  addPathsToTags(api)\n  api = await SwaggerParser.bundle(api)\n\n  Vue.prototype.$api    = api\n  Vue.prototype.$config = Environment\n  Vue.prototype.$i18n   = key => Environment.i18n[key] || key\n\n  console.log(`API name: ${api.info.title}, Version: ${api.info.version}`)\n}\n"
  },
  {
    "path": "src/store.js",
    "content": "import Vue from 'vue'\nimport Vuex from 'vuex'\nVue.use(Vuex)\n\nconst state = () => ({\n  currentServer: '',\n  currentLang: '',\n  showDefinition: false,\n})\n\nconst mutations = {\n  setServer(state, server) {\n    state.currentServer = server\n  },\n  setLang(state, lang) {\n    state.currentLang = lang\n  },\n  setShowDefinition(state, show) {\n    state.showDefinition = show\n  },\n}\n\nconst getters = {\n  currentServer:  state => state.currentServer,\n  currentLang:    state => state.currentLang,\n  showDefinition: state => state.showDefinition,\n}\n\nexport default new Vuex.Store({\n  state,\n  mutations,\n  getters,\n})\n"
  },
  {
    "path": "src/vue.config.js",
    "content": "module.exports = {\n  \"publicPath\": \"./\",\n  pages: {\n    index: {\n      entry: 'src/index.js',\n      template: 'src/index.html',\n      filename: 'index.html',\n      title: 'Loading Documentation...',\n    },\n  },\n}\n"
  },
  {
    "path": "src-engine/cli.js",
    "content": "#!/usr/bin/env node\n\nconst Core = require('./index.js')\nconst minimist = require(\"minimist\")\nconst colors = require(\"colors\")\nconst pkg = require('../package.json')\n\nconst argv = minimist(process.argv.slice(2))\n\nconst start = async () => {\n  const docgen = new Core(argv.schema, argv.output, argv.config)\n  try {\n    await docgen.prepare()\n    await docgen.generate()\n    await docgen.finish()\n  } catch(e) {\n    let message = e.message\n      .toString()\n      .replace(/Swagger/gi, \"OpenAPI\")\n      .split('\\n')[0]\n\n    docgen._displayBanner(\"Aborting due to error: \" + message, \"err\")\n  } finally {\n    await docgen.finalize()\n  }\n}\n\nconsole.log(`\n  _____             ____                            _\n |     |___ ___ ___|    \\\\ ___ ___ _ _ _____ ___ ___| |_ ___ ___\n |  |  | . | -_|   |  |  | . |  _| | |     | -_|   |  _| -_|  _|\n |_____|  _|___|_|_|____/|___|___|___|_|_|_|___|_|_|_| |___|_|\n       |_|                                             ${pkg.version}\n`.green)\n\nif(!argv.schema || !argv.output) {\n  console.log(`\n  OpenDocumenter is a automatic documentation generator for OpenAPI v3 schemas.\n  Simply provide your schema file in JSON or YAML, then sit back and enjoy the documentation.\n\n  Powered by nuxt.js and swagger-parser.\n\n  Usage:\n\n      opendocumenter --schema=<file> --output=<dir>\n\n  Arguments:\n\n      --schema=<file>    (required) The OpenAPI v3 format file to generate documentation from.\n      --output=<dir>     (required) The output destination directory.\n      --config=<file>    A configuration file to load advanced options from.`)\n} else {\n  start()\n}\n"
  },
  {
    "path": "src-engine/index.js",
    "content": "const SwaggerParser = require(\"@apidevtools/swagger-parser\")\nconst copy = require(\"recursive-copy\")\nconst path = require(\"path\")\nconst fs = require(\"fs\")\nconst uuid = require(\"uuid\")\nconst colors = require(\"colors\")\nconst execShPromise = require(\"exec-sh\").promise;\n\nmodule.exports = class Core {\n\n  constructor(schema, outputDir, configFile) {\n    this._schema = path.resolve(schema)\n    this._outputDir = path.resolve(outputDir)\n    this._configFile = configFile ? path.resolve(configFile) : undefined\n\n    let config = {}\n    if(this._configFile)\n      config = JSON.parse(fs.readFileSync(this._configFile))\n\n    this._config = {\n      \"mergeFromDirectory\": null,\n      \"disableGeneratedUsingFooter\": false,\n      \"abortOnInvalidSchema\": false,\n      \"vueModernMode\": true,\n      \"vueReport\": \"none\",\n      \"shields\": [],\n      \"i18n\": {},\n      ...config\n    }\n\n    this._config.i18n = {\n      \"API_SDK_DOCUMENTATION\": \"API and SDK Documentation\",\n      \"VERSION\": \"version\",\n      \"NO_INDEPTH_DOCS_AVAILABLE_ENDPOINT\": \"No in-depth API documentation is available for this endpoint.\",\n      \"NO_INDEPTH_DOCS_AVAILABLE_TAG\": \"No in-depth API documentation is available for this section.\",\n      \"CLICK_TO_COPY\": \"click to copy\",\n      \"COPIED\": \"copied\",\n      \"REQUEST_BODY\": \"Request Body\",\n      \"REQUEST_RESPONSES\": \"Request Responses\",\n      \"DEFINITION\": \"Definition\",\n      \"DEFINITIONS\": \"Definitions\",\n      \"SERVER\": \"Server\",\n      \"LANGUAGE\": \"Language\",\n      \"GENERATED_USING\": \"Generated using OpenDocumenter by $ourOpenCode\",\n      \"HAVE_ANY_QUESTIONS_CONTACT\": \"Have any questions? Please contact\",\n      \"US\": \"us\",\n      \"OR\": \"or\",\n      \"VIA_EMAIL\": \"via email\",\n      \"VIA_OUR_WEBSITE\": \"via our website\",\n      \"EXTERNAL_DOCUMENTATION\": \"External Documentation\",\n      \"DOCUMENTATION\": \"Documentation\",\n      ...config.i18n\n    }\n\n    if(this._config.mergeFromDirectory != null)\n      this._mrgPath = path.resolve(this._config.mergeFromDirectory)\n\n    this._srcPath = path.join(__dirname, '..', 'src')\n    this._tmpPath = path.join(__dirname, '..', 'tmp', uuid.v4(), 'src')\n    this._cwd = process.cwd()\n  }\n\n  async prepare() {\n    this._api = await this.loadAPI(this._schema)\n\n    this._displayInfo()\n\n    await copy(this._srcPath, this._tmpPath, { dot: true })\n\n    await copy(\n      path.join(this._srcPath, \"vue.config.js\"),\n      path.join(this._tmpPath, \"..\", \"vue.config.js\")\n    )\n\n    await copy(\n      \"package.json\",\n      path.join(this._tmpPath, \"..\", \"package.json\")\n    )\n\n    if(this._config.mergeFromDirectory != null)\n      await copy(this._mrgPath, this._tmpPath, { overwrite: true, dot: true })\n\n    fs.writeFileSync(path.join(this._tmpPath, \"environment.json\"), JSON.stringify({\n      ...this._config,\n      api: this._api,\n    }))\n  }\n\n  async finish() {\n    fs.rmdirSync(this._outputDir, { recursive: true });\n\n    const results = await copy(path.join(this._tmpPath, \"..\", \"dist\"), this._outputDir)\n\n    this._displayBanner(`OpenDocumenter finished! ${results.length} files created.`)\n  }\n\n  async finalize() {\n    process.chdir(this._cwd)\n    fs.rmdirSync(this._tmpPath, { recursive: true })\n  }\n\n  async generate(file) {\n    process.chdir(path.resolve(this._tmpPath, '..'))\n\n    let flags = []\n\n    if(this._config.vueModernMode == true)\n      flags.push(\"--modern\")\n\n    if(this._config.vueReport == \"html\" || this._config.vueReport == \"both\")\n      flags.push(\"--report\")\n\n    if(this._config.vueReport == \"json\" || this._config.vueReport == \"both\")\n      flags.push(\"--report-json\")\n\n    flags = flags.join(' ')\n\n    let flagStr = flags.length > 0 ? `with flags: ${flags}` : ''\n    this._displayBanner(`Starting build ${flagStr}`)\n    await execShPromise(`vue-cli-service build ${flags}`)\n  }\n\n  async loadAPI(file) {\n    let api = await SwaggerParser.parse(file)\n\n    try {\n      api = await SwaggerParser.validate(file)\n    } catch(e) {\n      if(e.name != \"SyntaxError\") throw e\n      this._displaySchemaSyntaxError(e.details)\n      if(this._config.abortOnInvalidSchema == true)\n        throw e\n    }\n\n    return api\n  }\n\n  async _displayBanner(text, type = \"default\") {\n    let prefix = \"---\";\n    let color = \"green\"\n\n    if(type == \"warn\" || type == \"warning\") {\n      prefix = \"???\"\n      color = \"yellow\"\n    }\n\n    if(type == \"err\" || type == \"error\") {\n      prefix = \"!!!\"\n      color = \"red\"\n    }\n\n    console.log()\n    console.log(` ${prefix} ${text}`.bold[color])\n    console.log()\n  }\n\n  async _displayInfo() {\n    this._displayBanner(\"API Details\")\n    console.log(`  Name:      ${this._api.info.title}`)\n    console.log(`  Version:   ${this._api.info.version}`)\n    console.log(`  Schema:    ${this._schema}`)\n    console.log(`  Output:    ${this._outputDir}`)\n    if(this._configFile)\n      console.log(`  Config:    ${this._configFile}`)\n  }\n\n  async _displaySchemaSyntaxError(details) {\n    this._displayBanner(\"OpenAPI schema validation failed\", \"warn\")\n    details.forEach((issue, idx) => {\n      console.log(\"    - #/\" + issue.path.join('/'))\n      console.log(\"      \" + issue.message)\n      if(idx != details.length - 1)\n        console.log()\n    })\n  }\n}\n"
  }
]